mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-04 00:47:04 +02:00
feat(common): Release 3.2.0 (#318)
Signed-off-by: Gavin Mogan <git@gavinmogan.com> Co-authored-by: Gavin Mogan <git@gavinmogan.com> Co-authored-by: repo-duster[bot] <87358111+repo-duster[bot]@users.noreply.github.com>
This commit is contained in:
parent
6cbaa61a4f
commit
4a5f448abd
29 changed files with 248 additions and 53 deletions
|
@ -29,7 +29,11 @@ Returns the value for annotations
|
|||
{{- if hasKey $configmap "enabled" -}}
|
||||
{{- $configMapEnabled = $configmap.enabled -}}
|
||||
{{- end -}}
|
||||
{{- if $configMapEnabled -}}
|
||||
{{- $configMapIncludeInChecksum := true -}}
|
||||
{{- if hasKey $configmap "includeInChecksum" -}}
|
||||
{{- $configMapIncludeInChecksum = $configmap.includeInChecksum -}}
|
||||
{{- end -}}
|
||||
{{- if and $configMapEnabled $configMapIncludeInChecksum -}}
|
||||
{{- $_ := set $configMapsFound $name (toYaml $configmap.data | sha256sum) -}}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
|
@ -47,7 +51,11 @@ Returns the value for annotations
|
|||
{{- if hasKey $secret "enabled" -}}
|
||||
{{- $secretEnabled = $secret.enabled -}}
|
||||
{{- end -}}
|
||||
{{- if $secretEnabled -}}
|
||||
{{- $secretIncludeInChecksum := true -}}
|
||||
{{- if hasKey $secret "includeInChecksum" -}}
|
||||
{{- $secretIncludeInChecksum = $secret.includeInChecksum -}}
|
||||
{{- end -}}
|
||||
{{- if and $secretEnabled $secretIncludeInChecksum -}}
|
||||
{{- $_ := set $secretsFound $name (toYaml $secret.stringData | sha256sum) -}}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue