Skip to content

Commit

Permalink
Chart: fix namespacing
Browse files Browse the repository at this point in the history
  • Loading branch information
bpineau committed Jul 6, 2019
1 parent 327d5c1 commit 654b8f4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions assets/helm-chart/katafygio/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ apiVersion: apps/v1beta2
kind: Deployment
metadata:
name: {{ template "katafygio.fullname" . }}
namespace: {{ .Release.Namespace }}
labels:
{{ include "katafygio.labels.standard" . | indent 4 }}
spec:
Expand Down
1 change: 1 addition & 0 deletions assets/helm-chart/katafygio/templates/pvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: {{ template "katafygio.fullname" . }}
namespace: {{ .Release.Namespace }}
labels:
{{ include "katafygio.labels.standard" . | indent 4 }}
spec:
Expand Down
1 change: 1 addition & 0 deletions assets/helm-chart/katafygio/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ kind: Secret
apiVersion: v1
metadata:
name: {{ template "katafygio.fullname" . }}
namespace: {{ .Release.Namespace }}
labels:
{{ include "katafygio.labels.standard" . | indent 4 }}
type: Opaque
Expand Down
1 change: 1 addition & 0 deletions assets/helm-chart/katafygio/templates/service-account.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ template "katafygio.serviceAccountName" . }}
namespace: {{ .Release.Namespace }}
labels:
{{ include "katafygio.labels.standard" . | indent 4 }}
{{- end }}

0 comments on commit 654b8f4

Please sign in to comment.