We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c732df7 commit c7ab9d6Copy full SHA for c7ab9d6
2 files changed
akv2k8s/Chart.yaml
@@ -2,4 +2,4 @@
2
apiVersion: v1
3
name: akv2k8s
4
description: Azure Key Vault to Kubernetes
5
-version: 0.1.2
+version: 0.1.3
akv2k8s/templates/inject-secret.yaml
@@ -1,14 +1,15 @@
1
{{- if .Values.inject_secret -}}
-{{- range $secret := .Values.inject_secret.secret }}
+{{- $inject_secret := .Values.inject_secret }}
+{{- range $secret := $inject_secret.secret.object }}
---
apiVersion: spv.no/v2beta1
6
kind: AzureKeyVaultSecret
7
metadata:
8
name: {{ $secret }}
- namespace: {{ .Values.inject_secret.namespace }}
9
+ namespace: {{ $inject_secret.namespace }}
10
spec:
11
vault:
- name: {{ .Values.inject_secret.vault.name }}
12
+ name: {{ $inject_secret.vault.name }}
13
object:
14
15
type: secret
0 commit comments