diff --git a/charts/polkabtc-vault/Chart.yaml b/charts/polkabtc-vault/Chart.yaml index 9b5358a..b87446f 100644 --- a/charts/polkabtc-vault/Chart.yaml +++ b/charts/polkabtc-vault/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.2 +version: 0.1.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/polkabtc-vault/templates/deployment.yaml b/charts/polkabtc-vault/templates/deployment.yaml index ef3d7de..bc27051 100644 --- a/charts/polkabtc-vault/templates/deployment.yaml +++ b/charts/polkabtc-vault/templates/deployment.yaml @@ -40,6 +40,15 @@ spec: {{- range .Values.extraArgs }} - {{ . }} {{- end }} + env: + - name: POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + {{- range .Values.env }} + - name: {{ .name }} + value: {{ .value }} + {{- end }} envFrom: - secretRef: name: {{ .Values.envSecretName }} diff --git a/charts/polkabtc-vault/values.yaml b/charts/polkabtc-vault/values.yaml index e9199fd..af700b3 100644 --- a/charts/polkabtc-vault/values.yaml +++ b/charts/polkabtc-vault/values.yaml @@ -17,6 +17,7 @@ envSecretName: "" keyfileSecretName: "" networkName: testnet extraArgs: [] +env: [] healthprobes: enabled: false