From 1ce6a1fb8978c91462a4ec4b1a903a6ca880e996 Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Thu, 9 Apr 2020 10:55:38 +0300 Subject: [PATCH] fix flag provided but not defined error again The same fix as previous: The `-v 1` arg is treated as single word thus klog throws "flag provided but not defined: -v 1" error. This time it's in the webhook kustomize base. --- .../base/intel-fpga-webhook-deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployments/fpga_admissionwebhook/base/intel-fpga-webhook-deployment.yaml b/deployments/fpga_admissionwebhook/base/intel-fpga-webhook-deployment.yaml index 7af52741..79357989 100644 --- a/deployments/fpga_admissionwebhook/base/intel-fpga-webhook-deployment.yaml +++ b/deployments/fpga_admissionwebhook/base/intel-fpga-webhook-deployment.yaml @@ -30,7 +30,7 @@ spec: - -tls-cert-file=/etc/webhook/certs/cert.pem - -tls-private-key-file=/etc/webhook/certs/key.pem - -mode=preprogrammed - - -v 1 + - -v=1 volumeMounts: - name: webhook-certs mountPath: /etc/webhook/certs