From 94f1a8670a6ec0fda4dae0250d39ea176ab1c696 Mon Sep 17 00:00:00 2001 From: bravof Date: Mon, 6 Jul 2020 20:03:43 -0400 Subject: [PATCH] fix(snmp): using alpine instead of busybox to run command Signed-off-by: bravof --- .../eechart/charts/snmpexporter/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snmp_ee_vnf/helm-charts/eechart/charts/snmpexporter/templates/deployment.yaml b/snmp_ee_vnf/helm-charts/eechart/charts/snmpexporter/templates/deployment.yaml index e6d8c0d2..212da7db 100644 --- a/snmp_ee_vnf/helm-charts/eechart/charts/snmpexporter/templates/deployment.yaml +++ b/snmp_ee_vnf/helm-charts/eechart/charts/snmpexporter/templates/deployment.yaml @@ -16,8 +16,8 @@ spec: spec: initContainers: - name: cleanup - image: "alpine:latest" - command: ['sh', '-c', 'rm -f /etc/snmp_exporter/generator.yml'] + image: "ubuntu:18.04" + command: ['bash', '-c', 'rm -f /etc/snmp_exporter/generator.yml'] volumeMounts: - name: config-volume mountPath: /etc/snmp_exporter -- GitLab