Skip to content

Commit b1d3665

Browse files
authored
Merge pull request #89 from tobiaskohlbau/honorNamespaceRequests
fix: honor namespace requests for helm chart
2 parents 5966954 + b94a286 commit b1d3665

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

charts/syseleven-exporter-chart/templates/deployment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ apiVersion: apps/v1
22
kind: Deployment
33
metadata:
44
name: {{ include "syseleven-exporter.fullname" . }}
5+
namespace: {{ .Release.Namespace }}
56
labels:
67
{{- include "syseleven-exporter.labels" . | nindent 4 }}
78
spec:

charts/syseleven-exporter-chart/templates/secret.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ apiVersion: v1
88
kind: Secret
99
metadata:
1010
name: {{ template "syseleven-exporter.secret" . }}
11+
namespace: {{ .Release.Namespace }}
1112
labels:
1213
{{- include "syseleven-exporter.labels" . | nindent 4 }}
1314
type: Opaque

charts/syseleven-exporter-chart/templates/service.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ apiVersion: v1
22
kind: Service
33
metadata:
44
name: {{ include "syseleven-exporter.fullname" . }}
5+
namespace: {{ .Release.Namespace }}
56
labels:
67
{{- include "syseleven-exporter.labels" . | nindent 4 }}
78
{{- if .Values.service.labels }}

0 commit comments

Comments
 (0)