| commit | 0a997e26592ea05b60a97ea55fdf480c70333ca4 | [log] [tgz] |
|---|---|---|
| author | garciadeblas <gerardo.garciadeblas@telefonica.com> | Mon Apr 22 15:25:17 2024 +0200 |
| committer | garciadeblas <gerardo.garciadeblas@telefonica.com> | Mon Apr 22 15:26:53 2024 +0200 |
| tree | 272f3cf3005b6225dda2ae420e34333b14f5ed2a | |
| parent | a9e34f6c70518678923ff2db9712c5ec438d44c7 [diff] |
Fix namespace in manifests in OSM helm chart Change-Id: I2dac019347973be31f0dc2056ca5109c8e65bd5e Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
diff --git a/installers/helm/osm/templates/certauth_setup/lcm-client-certificate.yaml b/installers/helm/osm/templates/certauth_setup/lcm-client-certificate.yaml index 9a9646f..a16a805 100644 --- a/installers/helm/osm/templates/certauth_setup/lcm-client-certificate.yaml +++ b/installers/helm/osm/templates/certauth_setup/lcm-client-certificate.yaml
@@ -19,7 +19,7 @@ kind: Certificate metadata: name: lcm-client - namespace: osm + namespace: {{ .Release.Namespace }} spec: secretName: lcm-client-cert privateKey:
diff --git a/installers/helm/osm/templates/certauth_setup/osm-ca-certificate.yaml b/installers/helm/osm/templates/certauth_setup/osm-ca-certificate.yaml index 23765df..dc69564 100644 --- a/installers/helm/osm/templates/certauth_setup/osm-ca-certificate.yaml +++ b/installers/helm/osm/templates/certauth_setup/osm-ca-certificate.yaml
@@ -19,7 +19,7 @@ kind: Certificate metadata: name: osm-ca-certificate - namespace: osm + namespace: {{ .Release.Namespace }} spec: isCA: true commonName: osm
diff --git a/installers/helm/osm/templates/grafana/grafana-clusterrolebinding.yaml b/installers/helm/osm/templates/grafana/grafana-clusterrolebinding.yaml index a6c2f97..46669bf 100644 --- a/installers/helm/osm/templates/grafana/grafana-clusterrolebinding.yaml +++ b/installers/helm/osm/templates/grafana/grafana-clusterrolebinding.yaml
@@ -28,5 +28,5 @@ subjects: - kind: ServiceAccount name: grafana - namespace: osm + namespace: {{ .Release.Namespace }} {{- end -}} \ No newline at end of file