We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25d6f09 commit 8d5c62dCopy full SHA for 8d5c62d
main.go
@@ -205,6 +205,12 @@ func InitFlags(fs *pflag.FlagSet) {
205
fs.StringVar(&webhookOpts.CertDir, "webhook-cert-dir", "/tmp/k8s-webhook-server/serving-certs/",
206
"Webhook cert dir, only used when webhook-port is specified.")
207
208
+ fs.StringVar(&webhookOpts.CertName, "webhook-cert-name", "tls.crt",
209
+ "Webhook cert name, only used when webhook-port is specified.")
210
+
211
+ fs.StringVar(&webhookOpts.KeyName, "webhook-key-name", "tls.key",
212
+ "Webhook key name, only used when webhook-port is specified.")
213
214
fs.StringVar(&managerOpts.HealthProbeBindAddress, "health-addr", ":9440",
215
"The address the health endpoint binds to.",
216
)
0 commit comments