Skip to content

Commit

Permalink
Remove external-dns --events flag
Browse files Browse the repository at this point in the history
The events flag causes the external-dns controller to ignore route
events for extended periods of time in some circumstances. For now,
removing the flag and replacing with the interval flag.
  • Loading branch information
csrwng committed May 26, 2023
1 parent 7aafe49 commit 7e4473e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/install/assets/hypershift_operator.go
Expand Up @@ -205,7 +205,7 @@ func (o ExternalDNSDeployment) Build() *appsv1.Deployment {
"--txt-suffix=-external-dns",
fmt.Sprintf("--txt-owner-id=%s", txtOwnerId),
fmt.Sprintf("--label-filter=%s!=%s", hyperv1.RouteVisibilityLabel, hyperv1.RouteVisibilityPrivate),
"--events",
"--interval=1m",
},
Ports: []corev1.ContainerPort{{Name: "metrics", ContainerPort: 7979}},
LivenessProbe: &corev1.Probe{
Expand Down

0 comments on commit 7e4473e

Please sign in to comment.