Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
cloud-provider-openstack/manifests/cinder-csi-plugin/cinder-csi-nodeplugin.yaml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
118 lines (117 sloc)
3.65 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This YAML file contains driver-registrar & csi driver nodeplugin API objects, | |
# which are necessary to run csi nodeplugin for cinder. | |
kind: DaemonSet | |
apiVersion: apps/v1 | |
metadata: | |
name: csi-cinder-nodeplugin | |
namespace: kube-system | |
spec: | |
selector: | |
matchLabels: | |
app: csi-cinder-nodeplugin | |
template: | |
metadata: | |
labels: | |
app: csi-cinder-nodeplugin | |
spec: | |
tolerations: | |
- operator: Exists | |
serviceAccount: csi-cinder-node-sa | |
hostNetwork: true | |
containers: | |
- name: node-driver-registrar | |
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.6.3 | |
args: | |
- "--csi-address=$(ADDRESS)" | |
- "--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)" | |
env: | |
- name: ADDRESS | |
value: /csi/csi.sock | |
- name: DRIVER_REG_SOCK_PATH | |
value: /var/lib/kubelet/plugins/cinder.csi.openstack.org/csi.sock | |
- name: KUBE_NODE_NAME | |
valueFrom: | |
fieldRef: | |
fieldPath: spec.nodeName | |
imagePullPolicy: "IfNotPresent" | |
volumeMounts: | |
- name: socket-dir | |
mountPath: /csi | |
- name: registration-dir | |
mountPath: /registration | |
- name: liveness-probe | |
image: registry.k8s.io/sig-storage/livenessprobe:v2.9.0 | |
args: | |
- --csi-address=/csi/csi.sock | |
volumeMounts: | |
- name: socket-dir | |
mountPath: /csi | |
- name: cinder-csi-plugin | |
securityContext: | |
privileged: true | |
capabilities: | |
add: ["SYS_ADMIN"] | |
allowPrivilegeEscalation: true | |
image: registry.k8s.io/provider-os/cinder-csi-plugin:v1.27.1 | |
args: | |
- /bin/cinder-csi-plugin | |
- "--endpoint=$(CSI_ENDPOINT)" | |
- "--cloud-config=$(CLOUD_CONFIG)" | |
- "--v=1" | |
env: | |
- name: CSI_ENDPOINT | |
value: unix://csi/csi.sock | |
- name: CLOUD_CONFIG | |
value: /etc/config/cloud.conf | |
imagePullPolicy: "IfNotPresent" | |
ports: | |
- containerPort: 9808 | |
name: healthz | |
protocol: TCP | |
# The probe | |
livenessProbe: | |
failureThreshold: 5 | |
httpGet: | |
path: /healthz | |
port: healthz | |
initialDelaySeconds: 10 | |
timeoutSeconds: 3 | |
periodSeconds: 10 | |
volumeMounts: | |
- name: socket-dir | |
mountPath: /csi | |
- name: kubelet-dir | |
mountPath: /var/lib/kubelet | |
mountPropagation: "Bidirectional" | |
- name: pods-probe-dir | |
mountPath: /dev | |
mountPropagation: "HostToContainer" | |
- name: secret-cinderplugin | |
mountPath: /etc/config | |
readOnly: true | |
# - name: cacert | |
# mountPath: /etc/cacert | |
# readOnly: true | |
volumes: | |
- name: socket-dir | |
hostPath: | |
path: /var/lib/kubelet/plugins/cinder.csi.openstack.org | |
type: DirectoryOrCreate | |
- name: registration-dir | |
hostPath: | |
path: /var/lib/kubelet/plugins_registry/ | |
type: Directory | |
- name: kubelet-dir | |
hostPath: | |
path: /var/lib/kubelet | |
type: Directory | |
- name: pods-probe-dir | |
hostPath: | |
path: /dev | |
type: Directory | |
- name: secret-cinderplugin | |
secret: | |
secretName: cloud-config | |
# - name: cacert | |
# hostPath: | |
# path: /etc/cacert |