We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67cb71d commit 2de5613Copy full SHA for 2de5613
1 file changed
pkg/reconciler/svc_reconciler.go
@@ -115,7 +115,8 @@ func (r *ServiceReconciler) constructServiceApplyConfiguration(
115
serviceConfig := coreapplyv1.Service(svcName, rbg.Namespace).
116
WithSpec(
117
coreapplyv1.ServiceSpec().
118
- WithClusterIP("None").
+ WithType(corev1.ServiceTypeClusterIP).
119
+ WithClusterIP(corev1.ClusterIPNone).
120
WithSelector(selectMap).
121
WithPublishNotReadyAddresses(true),
122
).
0 commit comments