Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/manila-csi-plugin/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: v1.32.0
description: Manila CSI Chart for OpenStack
name: openstack-manila-csi
version: 2.33.0-alpha.1
version: 2.33.0-alpha.2
home: http://github.com/kubernetes/cloud-provider-openstack
icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png
maintainers:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ spec:
labels:
{{- include "openstack-manila-csi.controllerplugin.labels" . | nindent 8 }}
spec:
securityContext: {{ toYaml .Values.controllerplugin.podSecurityContext | nindent 8 }}
serviceAccountName: {{ include "openstack-manila-csi.serviceAccountName.controllerplugin" . }}
containers:
{{- range .Values.shareProtocols }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ spec:
labels:
{{- include "openstack-manila-csi.nodeplugin.labels" . | nindent 8 }}
spec:
securityContext: {{ toYaml .Values.nodeplugin.podSecurityContext | nindent 8 }}
serviceAccountName: {{ include "openstack-manila-csi.serviceAccountName.nodeplugin" . }}
hostNetwork: true
dnsPolicy: ClusterFirstWithHostNet
Expand Down
2 changes: 2 additions & 0 deletions charts/manila-csi-plugin/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ nodeplugin:
priorityClassName: ""
# Use fullnameOverride to fully override the name of this component
# fullnameOverride: some-other-name
podSecurityContext: {}

# StatefulSet deployment
controllerplugin:
Expand Down Expand Up @@ -119,6 +120,7 @@ controllerplugin:
# - "keystone.hostname.com"
# Use fullnameOverride to fully override the name of this component
# fullnameOverride: some-other-name
podSecurityContext: {}

# Log verbosity level.
# See https://github.com/kubernetes/community/blob/master/contributors/devel/sig-instrumentation/logging.md
Expand Down