You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd.Flag("validating-webhook-configuration-name", "A name of a ValidatingWebhookConfiguration resource. Can be set with $VALIDATING_WEBHOOK_CONFIGURATION_NAME.").
cmd.Flag("validating-webhook-service-name", "A name of a service used in ValidatingWebhookConfiguration. Can be set with $VALIDATING_WEBHOOK_SERVICE_NAME.").
44
64
Envar("VALIDATING_WEBHOOK_SERVICE_NAME").
45
-
Default(ValidatingWebhookSettings.ServiceName).
46
-
StringVar(&ValidatingWebhookSettings.ServiceName)
65
+
Default(ValidatingServiceNameDefault).
66
+
StringVar(&ValidatingWebhookServiceName)
47
67
cmd.Flag("validating-webhook-server-cert", "A path to a server certificate for service used in ValidatingWebhookConfiguration. Can be set with $VALIDATING_WEBHOOK_SERVER_CERT.").
cmd.Flag("validating-webhook-server-key", "A path to a server private key for service used in ValidatingWebhookConfiguration. Can be set with $VALIDATING_WEBHOOK_SERVER_KEY.").
cmd.Flag("validating-webhook-ca", "A path to a ca certificate for ValidatingWebhookConfiguration. Can be set with $VALIDATING_WEBHOOK_CA.").
56
76
Envar("VALIDATING_WEBHOOK_CA").
57
-
Default(ValidatingWebhookSettings.CAPath).
58
-
StringVar(&ValidatingWebhookSettings.CAPath)
77
+
Default(ValidatingCAPathDefault).
78
+
StringVar(&ValidatingWebhookCA)
59
79
cmd.Flag("validating-webhook-client-ca", "A path to a server certificate for ValidatingWebhookConfiguration. Can be set with $VALIDATING_WEBHOOK_CLIENT_CA.").
cmd.Flag("conversion-webhook-service-name", "A name of a service for clientConfig in CRD. Can be set with $CONVERSION_WEBHOOK_SERVICE_NAME.").
83
103
Envar("CONVERSION_WEBHOOK_SERVICE_NAME").
84
-
Default(ConversionWebhookSettings.ServiceName).
85
-
StringVar(&ConversionWebhookSettings.ServiceName)
104
+
Default(ConversionServiceNameDefault).
105
+
StringVar(&ConversionWebhookServiceName)
86
106
cmd.Flag("conversion-webhook-server-cert", "A path to a server certificate for clientConfig in CRD. Can be set with $CONVERSION_WEBHOOK_SERVER_CERT.").
cmd.Flag("conversion-webhook-ca", "A path to a ca certificate for clientConfig in CRD. Can be set with $CONVERSION_WEBHOOK_CA.").
95
115
Envar("CONVERSION_WEBHOOK_CA").
96
-
Default(ConversionWebhookSettings.CAPath).
97
-
StringVar(&ConversionWebhookSettings.CAPath)
116
+
Default(ConversionCAPathDefault).
117
+
StringVar(&ConversionWebhookCA)
98
118
cmd.Flag("conversion-webhook-client-ca", "A path to a server certificate for CRD.spec.conversion.webhook. Can be set with $CONVERSION_WEBHOOK_CLIENT_CA.").
0 commit comments