Skip to content

Commit eedeedc

Browse files
authored
fix: static-exporter was missing the volume mount (#1547)
1 parent 7ae8097 commit eedeedc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

static-exporter/main.libsonnet

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ local k = import 'ksonnet-util/kausal.libsonnet';
118118
local deployment = k.apps.v1.deployment,
119119
local volumeMount = k.core.v1.volumeMount,
120120
deployment:
121-
deployment.new(name, replicas=1, containers=[self.container]),
121+
deployment.new(name, replicas=1, containers=[self.container])
122+
+ k.util.configMapVolumeMount(self.configmap, '/data'),
122123
},
123124

124125

0 commit comments

Comments
 (0)