Skip to content

Commit

Permalink
Update internal/manager/config.go
Browse files Browse the repository at this point in the history
Co-authored-by: Travis Raines <[email protected]>
  • Loading branch information
mlavacca and rainest committed Aug 24, 2023
1 parent a38a4f1 commit 7839338
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions internal/manager/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,9 @@ func (c *Config) FlagSet() *pflag.FlagSet {
flagSet.Var(flags.NewValidatedValue(&c.PublishServiceUDP, namespacedNameFromFlagValue, nnTypeNameOverride), "publish-service-udp", `Service fronting UDP routing resources in `+
`"namespace/name" format. The controller will update UDP route status information with this Service's `+
`endpoints. If omitted, the same Service will be used for both TCP and UDP routes.`)
flagSet.Var(flags.NewValidatedValue(&c.PublishServiceTLS, namespacedNameFromFlagValue, nnTypeNameOverride), "publish-service-tls", `Service fronting TLS routing resources in `+
`"namespace/name" format. The controller will update TLS route status information with this Service's `+
`endpoints. If omitted, the same Service will be used for both HTTP and TLS routes.`)
flagSet.Var(flags.NewValidatedValue(&c.PublishServiceTLS, namespacedNameFromFlagValue, nnTypeNameOverride), "publish-service-tls", `Optional Service for TLS Gateway Listeners in `+
`"namespace/name" format. When omitted, TLS Listeners use the --publish-service Service.`+
`Only necessary if TLS and HTTPS Listeners share the same port.`)
flagSet.StringSliceVar(&c.PublishStatusAddressUDP, "publish-status-address-udp", []string{},
`User-provided address CSV, for use in lieu of "publish-service-udp" when that Service lacks useful address information.`)

Expand Down
2 changes: 1 addition & 1 deletion test/conformance/gateway_conformance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func TestGatewayConformance(t *testing.T) {
tlsService := &corev1.Service{
ObjectMeta: metav1.ObjectMeta{
Name: "ingress-controller-kong-tls-proxy-" + svcNameSuffix,
Namespace: "kong-system",
Namespace: "kong",
},
Spec: corev1.ServiceSpec{
Selector: map[string]string{
Expand Down

0 comments on commit 7839338

Please sign in to comment.