Skip to content

Commit

Permalink
Merge pull request #20 from foomo/fix-namespace-secret-data
Browse files Browse the repository at this point in the history
fix(namespace): secret data
  • Loading branch information
franklinkim authored Sep 23, 2024
2 parents e5c428e + 527ffd7 commit 96eb6c7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions charts/namespace/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ annotations:
- name: Chart Source
url: https://github.com/foomo/helm-charts
version: 0.1.0
appVersion: 0.1.0
version: 0.1.1
appVersion: 0.1.1
2 changes: 1 addition & 1 deletion charts/namespace/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# namespace

![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.0](https://img.shields.io/badge/AppVersion-0.1.0-informational?style=flat-square)
![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.1](https://img.shields.io/badge/AppVersion-0.1.1-informational?style=flat-square)

Common Namespace Resource Chart

Expand Down
2 changes: 1 addition & 1 deletion charts/namespace/templates/secret-opaque.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ metadata:
annotations: {{- toYaml . | nindent 4 }}
{{- end }}
namespace: {{ include "namespace.namespace" $ }}
data: {{- toYaml $value | nindent 2 }}
data: {{- toYaml $value.data | nindent 2 }}
---
{{- end }}
2 changes: 1 addition & 1 deletion charts/namespace/templates/secret-tls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ metadata:
annotations: {{- toYaml . | nindent 4 }}
{{- end }}
namespace: {{ include "namespace.namespace" $ }}
data: {{ toYaml $value.data | nindent 2 }}
data: {{- toYaml $value.data | nindent 2 }}
---
{{- end }}

0 comments on commit 96eb6c7

Please sign in to comment.