Skip to content

Commit c6f2467

Browse files
[manila-csi-plugin] helm: add release namespace in manila csi chart (#2889)
* helm: add release namespace in manila csi chart * bump chart version
1 parent 2b839f6 commit c6f2467

9 files changed

+9
-1
lines changed

charts/manila-csi-plugin/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
appVersion: v1.32.0
33
description: Manila CSI Chart for OpenStack
44
name: openstack-manila-csi
5-
version: 2.33.0-alpha.0
5+
version: 2.33.0-alpha.1
66
home: http://github.com/kubernetes/cloud-provider-openstack
77
icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png
88
maintainers:

charts/manila-csi-plugin/templates/controllerplugin-role.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ kind: Role
22
apiVersion: rbac.authorization.k8s.io/v1
33
metadata:
44
name: {{ include "openstack-manila-csi.controllerplugin.fullname" . }}
5+
namespace: {{ .Release.Namespace }}
56
labels:
67
{{- include "openstack-manila-csi.controllerplugin.labels" . | nindent 4 }}
78
rules:

charts/manila-csi-plugin/templates/controllerplugin-rolebinding.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ kind: RoleBinding
22
apiVersion: rbac.authorization.k8s.io/v1
33
metadata:
44
name: {{ include "openstack-manila-csi.controllerplugin.fullname" . }}
5+
namespace: {{ .Release.Namespace }}
56
labels:
67
{{- include "openstack-manila-csi.controllerplugin.labels" . | nindent 4 }}
78
subjects:

charts/manila-csi-plugin/templates/controllerplugin-service.yaml

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

charts/manila-csi-plugin/templates/controllerplugin-serviceaccount.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ apiVersion: v1
22
kind: ServiceAccount
33
metadata:
44
name: {{ include "openstack-manila-csi.serviceAccountName.controllerplugin" . }}
5+
namespace: {{ .Release.Namespace }}
56
labels:
67
{{- include "openstack-manila-csi.controllerplugin.labels" . | nindent 4 }}

charts/manila-csi-plugin/templates/controllerplugin-statefulset.yaml

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

charts/manila-csi-plugin/templates/nodeplugin-daemonset.yaml

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

charts/manila-csi-plugin/templates/nodeplugin-serviceaccount.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ apiVersion: v1
22
kind: ServiceAccount
33
metadata:
44
name: {{ include "openstack-manila-csi.serviceAccountName.nodeplugin" . }}
5+
namespace: {{ .Release.Namespace }}
56
labels:
67
{{- include "openstack-manila-csi.nodeplugin.labels" . | nindent 4 }}

charts/manila-csi-plugin/templates/runtimeconfig-cm.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ apiVersion: v1
33
kind: ConfigMap
44
metadata:
55
name: manila-csi-runtimeconf-cm
6+
namespace: {{ .Release.Namespace }}
67
data:
78
runtimeconfig.json: |-
89
{{ .Values.csimanila.runtimeConfig.jsonData | indent 4 }}

0 commit comments

Comments
 (0)