diff --git a/helm-values/Chart.yaml b/helm-values/Chart.yaml new file mode 100644 index 0000000..8822177 --- /dev/null +++ b/helm-values/Chart.yaml @@ -0,0 +1,3 @@ +apiVersion: v2 +name: helm-values +version: 1.0.0 diff --git a/helm-values/templates/config-map.yaml b/helm-values/templates/config-map.yaml new file mode 100644 index 0000000..cc26bc9 --- /dev/null +++ b/helm-values/templates/config-map.yaml @@ -0,0 +1,6 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: my-map +data: + foo: {{.Values.foo}} \ No newline at end of file diff --git a/helm-values/values.yaml b/helm-values/values.yaml new file mode 100644 index 0000000..7daacd5 --- /dev/null +++ b/helm-values/values.yaml @@ -0,0 +1 @@ +foo: bar \ No newline at end of file