File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 2.6.1] - 2025-02-15
4+
5+ ### Fixed
6+
7+ - Namespace value is dynamically parsed from HelmRelease
8+
39## [ 2.6.0] - 2024-10-19
410
511### Changed
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 2.6.0
18+ version : 2.6.1
1919# This is the version number of the application being deployed. This version number should be
2020# incremented each time you make changes to the application. Versions are not expected to
2121# follow Semantic Versioning. They should reflect the version the application is using.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: apps/v1
22kind : Deployment
33metadata :
44 name : {{ .Release.Name }}
5- namespace : default
5+ namespace : {{ .Release.Namespace }}
66spec :
77 {{- if not .Values.autoscaling.enabled }}
88 replicas : {{ .Values.replicaCount }}
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ apiVersion: networking.k8s.io/v1
77kind : Ingress
88metadata :
99 name : {{ $ReleaseName }}
10- namespace : default
10+ namespace : {{ $.Release.Namespace }}
1111 {{- if $.Values.ingress.ssl }}
1212 annotations :
1313 kubernetes.io/ingress.class : traefik
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ apiVersion: v1
44kind : PersistentVolumeClaim
55metadata :
66 name : {{ .Release.Name }}-pvc
7- namespace : default
7+ namespace : {{ .Release.Namespace }}
88spec :
99 persistentVolumeReclaimPolicy : Recycle
1010 accessModes :
1414 requests :
1515 storage : {{ .Values.volumes.type.pvc.size }}
1616{{- end }}
17- {{- end }}
17+ {{- end }}
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ apiVersion: v1
66kind : Service
77metadata :
88 name : " {{ $.Release.Name }}-{{ .name }}"
9- namespace : default
9+ namespace : {{ $.Release.Namespace }}
1010spec :
1111 type : {{ .type }}
1212 {{- if .loadBalancerIP }}
2020 selector :
2121 app.kubernetes.io/app : {{ $.Release.Name }}
2222{{- end }}
23- {{- end }}
23+ {{- end }}
You can’t perform that action at this time.
0 commit comments