-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use 2.0.1 yamls as the base for 2.0.2-rc yamls (#1318)
- Loading branch information
1 parent
090fc95
commit a4ee43c
Showing
6 changed files
with
637 additions
and
0 deletions.
There are no files selected for viewing
139 changes: 139 additions & 0 deletions
139
manifests/v2.0.2-rc.2/vsphere-67u3/deploy/vsphere-csi-controller-deployment.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
# Minimum Kubernetes version - 1.17 | ||
# For prior releases make sure to add required --feature-gates flags | ||
kind: Deployment | ||
apiVersion: apps/v1 | ||
metadata: | ||
name: vsphere-csi-controller | ||
namespace: kube-system | ||
spec: | ||
replicas: 1 | ||
strategy: | ||
type: RollingUpdate | ||
rollingUpdate: | ||
maxUnavailable: 1 | ||
maxSurge: 0 | ||
selector: | ||
matchLabels: | ||
app: vsphere-csi-controller | ||
template: | ||
metadata: | ||
labels: | ||
app: vsphere-csi-controller | ||
role: vsphere-csi | ||
spec: | ||
serviceAccountName: vsphere-csi-controller | ||
nodeSelector: | ||
node-role.kubernetes.io/master: "" | ||
tolerations: | ||
- operator: "Exists" | ||
effect: NoSchedule | ||
- operator: "Exists" | ||
effect: NoExecute | ||
dnsPolicy: "Default" | ||
containers: | ||
- name: csi-attacher | ||
image: quay.io/k8scsi/csi-attacher:v2.0.0 | ||
args: | ||
- "--v=4" | ||
- "--timeout=300s" | ||
- "--csi-address=$(ADDRESS)" | ||
- "--leader-election" | ||
env: | ||
- name: ADDRESS | ||
value: /csi/csi.sock | ||
volumeMounts: | ||
- mountPath: /csi | ||
name: socket-dir | ||
- name: vsphere-csi-controller | ||
image: gcr.io/cloud-provider-vsphere/csi/release/driver:v2.0.2-rc.2 | ||
lifecycle: | ||
preStop: | ||
exec: | ||
command: ["/bin/sh", "-c", "rm -rf /var/lib/csi/sockets/pluginproxy/csi.vsphere.vmware.com"] | ||
imagePullPolicy: "Always" | ||
env: | ||
- name: CSI_ENDPOINT | ||
value: unix:///var/lib/csi/sockets/pluginproxy/csi.sock | ||
- name: X_CSI_MODE | ||
value: "controller" | ||
- name: VSPHERE_CSI_CONFIG | ||
value: "/etc/cloud/csi-vsphere.conf" | ||
- name: LOGGER_LEVEL | ||
value: "PRODUCTION" # Options: DEVELOPMENT, PRODUCTION | ||
volumeMounts: | ||
- mountPath: /etc/cloud | ||
name: vsphere-config-volume | ||
readOnly: true | ||
- mountPath: /var/lib/csi/sockets/pluginproxy/ | ||
name: socket-dir | ||
ports: | ||
- name: healthz | ||
containerPort: 9808 | ||
protocol: TCP | ||
livenessProbe: | ||
httpGet: | ||
path: /healthz | ||
port: healthz | ||
initialDelaySeconds: 10 | ||
timeoutSeconds: 3 | ||
periodSeconds: 5 | ||
failureThreshold: 3 | ||
- name: liveness-probe | ||
image: quay.io/k8scsi/livenessprobe:v1.1.0 | ||
args: | ||
- "--csi-address=$(ADDRESS)" | ||
env: | ||
- name: ADDRESS | ||
value: /var/lib/csi/sockets/pluginproxy/csi.sock | ||
volumeMounts: | ||
- mountPath: /var/lib/csi/sockets/pluginproxy/ | ||
name: socket-dir | ||
- name: vsphere-syncer | ||
image: gcr.io/cloud-provider-vsphere/csi/release/syncer:v2.0.2-rc.2 | ||
args: | ||
- "--leader-election" | ||
imagePullPolicy: "Always" | ||
env: | ||
- name: FULL_SYNC_INTERVAL_MINUTES | ||
value: "30" | ||
- name: VSPHERE_CSI_CONFIG | ||
value: "/etc/cloud/csi-vsphere.conf" | ||
- name: LOGGER_LEVEL | ||
value: "PRODUCTION" # Options: DEVELOPMENT, PRODUCTION | ||
volumeMounts: | ||
- mountPath: /etc/cloud | ||
name: vsphere-config-volume | ||
readOnly: true | ||
- name: csi-provisioner | ||
image: quay.io/k8scsi/csi-provisioner:v2.0.0 | ||
args: | ||
- "--v=4" | ||
- "--timeout=300s" | ||
- "--csi-address=$(ADDRESS)" | ||
- "--leader-election" | ||
- "--default-fstype=ext4" | ||
# needed only for topology aware setup | ||
#- "--feature-gates=Topology=true" | ||
#- "--strict-topology" | ||
env: | ||
- name: ADDRESS | ||
value: /csi/csi.sock | ||
volumeMounts: | ||
- mountPath: /csi | ||
name: socket-dir | ||
volumes: | ||
- name: vsphere-config-volume | ||
secret: | ||
secretName: vsphere-config-secret | ||
- name: socket-dir | ||
hostPath: | ||
path: /var/lib/csi/sockets/pluginproxy/csi.vsphere.vmware.com | ||
type: DirectoryOrCreate | ||
--- | ||
apiVersion: storage.k8s.io/v1beta1 | ||
kind: CSIDriver | ||
metadata: | ||
name: csi.vsphere.vmware.com | ||
spec: | ||
attachRequired: true | ||
podInfoOnMount: false |
128 changes: 128 additions & 0 deletions
128
manifests/v2.0.2-rc.2/vsphere-67u3/deploy/vsphere-csi-node-ds.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
# Minimum Kubernetes version - 1.17 | ||
# For prior releases make sure to add required --feature-gates flags | ||
kind: DaemonSet | ||
apiVersion: apps/v1 | ||
metadata: | ||
name: vsphere-csi-node | ||
namespace: kube-system | ||
spec: | ||
selector: | ||
matchLabels: | ||
app: vsphere-csi-node | ||
updateStrategy: | ||
type: "RollingUpdate" | ||
template: | ||
metadata: | ||
labels: | ||
app: vsphere-csi-node | ||
role: vsphere-csi | ||
spec: | ||
hostNetwork: true | ||
dnsPolicy: "ClusterFirstWithHostNet" | ||
containers: | ||
- name: node-driver-registrar | ||
image: quay.io/k8scsi/csi-node-driver-registrar:v1.2.0 | ||
lifecycle: | ||
preStop: | ||
exec: | ||
command: ["/bin/sh", "-c", "rm -rf /registration/csi.vsphere.vmware.com-reg.sock /csi/csi.sock"] | ||
args: | ||
- "--v=5" | ||
- "--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/csi.vsphere.vmware.com/csi.sock | ||
securityContext: | ||
privileged: true | ||
volumeMounts: | ||
- name: plugin-dir | ||
mountPath: /csi | ||
- name: registration-dir | ||
mountPath: /registration | ||
- name: vsphere-csi-node | ||
image: gcr.io/cloud-provider-vsphere/csi/release/driver:v2.0.2-rc.2 | ||
imagePullPolicy: "Always" | ||
env: | ||
- name: NODE_NAME | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: spec.nodeName | ||
- name: CSI_ENDPOINT | ||
value: unix:///csi/csi.sock | ||
- name: X_CSI_MODE | ||
value: "node" | ||
- name: X_CSI_SPEC_REQ_VALIDATION | ||
value: "false" | ||
# needed only for topology aware setups | ||
#- name: VSPHERE_CSI_CONFIG | ||
# value: "/etc/cloud/csi-vsphere.conf" # here csi-vsphere.conf is the name of the file used for creating secret using "--from-file" flag | ||
- name: X_CSI_DEBUG | ||
value: "true" | ||
- name: LOGGER_LEVEL | ||
value: "PRODUCTION" # Options: DEVELOPMENT, PRODUCTION | ||
securityContext: | ||
privileged: true | ||
capabilities: | ||
add: ["SYS_ADMIN"] | ||
allowPrivilegeEscalation: true | ||
volumeMounts: | ||
# needed only for topology aware setups | ||
#- name: vsphere-config-volume | ||
# mountPath: /etc/cloud | ||
# readOnly: true | ||
- name: plugin-dir | ||
mountPath: /csi | ||
- name: pods-mount-dir | ||
mountPath: /var/lib/kubelet | ||
# needed so that any mounts setup inside this container are | ||
# propagated back to the host machine. | ||
mountPropagation: "Bidirectional" | ||
- name: device-dir | ||
mountPath: /dev | ||
ports: | ||
- name: healthz | ||
containerPort: 9808 | ||
protocol: TCP | ||
livenessProbe: | ||
httpGet: | ||
path: /healthz | ||
port: healthz | ||
initialDelaySeconds: 10 | ||
timeoutSeconds: 3 | ||
periodSeconds: 5 | ||
failureThreshold: 3 | ||
- name: liveness-probe | ||
image: quay.io/k8scsi/livenessprobe:v1.1.0 | ||
args: | ||
- --csi-address=/csi/csi.sock | ||
volumeMounts: | ||
- name: plugin-dir | ||
mountPath: /csi | ||
volumes: | ||
# needed only for topology aware setups | ||
#- name: vsphere-config-volume | ||
# secret: | ||
# secretName: vsphere-config-secret | ||
- name: registration-dir | ||
hostPath: | ||
path: /var/lib/kubelet/plugins_registry | ||
type: Directory | ||
- name: plugin-dir | ||
hostPath: | ||
path: /var/lib/kubelet/plugins/csi.vsphere.vmware.com/ | ||
type: DirectoryOrCreate | ||
- name: pods-mount-dir | ||
hostPath: | ||
path: /var/lib/kubelet | ||
type: Directory | ||
- name: device-dir | ||
hostPath: | ||
path: /dev | ||
tolerations: | ||
- effect: NoExecute | ||
operator: Exists | ||
- effect: NoSchedule | ||
operator: Exists |
42 changes: 42 additions & 0 deletions
42
manifests/v2.0.2-rc.2/vsphere-67u3/rbac/vsphere-csi-controller-rbac.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
kind: ServiceAccount | ||
apiVersion: v1 | ||
metadata: | ||
name: vsphere-csi-controller | ||
namespace: kube-system | ||
--- | ||
kind: ClusterRole | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
metadata: | ||
name: vsphere-csi-controller-role | ||
rules: | ||
- apiGroups: [""] | ||
resources: ["nodes", "persistentvolumeclaims", "pods"] | ||
verbs: ["get", "list", "watch"] | ||
- apiGroups: [""] | ||
resources: ["persistentvolumes"] | ||
verbs: ["get", "list", "watch", "create", "update", "delete", "patch"] | ||
- apiGroups: [""] | ||
resources: ["events"] | ||
verbs: ["get", "list", "watch", "create", "update", "patch"] | ||
- apiGroups: ["coordination.k8s.io"] | ||
resources: ["leases"] | ||
verbs: ["get", "watch", "list", "delete", "update", "create"] | ||
- apiGroups: ["storage.k8s.io"] | ||
resources: ["storageclasses", "csinodes"] | ||
verbs: ["get", "list", "watch"] | ||
- apiGroups: ["storage.k8s.io"] | ||
resources: ["volumeattachments"] | ||
verbs: ["get", "list", "watch", "update", "patch"] | ||
--- | ||
kind: ClusterRoleBinding | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
metadata: | ||
name: vsphere-csi-controller-binding | ||
subjects: | ||
- kind: ServiceAccount | ||
name: vsphere-csi-controller | ||
namespace: kube-system | ||
roleRef: | ||
kind: ClusterRole | ||
name: vsphere-csi-controller-role | ||
apiGroup: rbac.authorization.k8s.io |
Oops, something went wrong.