Unverified Commit 1e506ad2 authored by Cyrill Troxler's avatar Cyrill Troxler Committed by GitHub
Browse files

Merge pull request #45 from Boxjan/master

use csi-provisioner:v2.1.0, provider and attacher will only run in master node
parents c4ff4b9c ff26480a
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -50,8 +50,8 @@ spec:
  selector:
    app: csi-attacher-s3
  ports:
    - name: dummy
      port: 12345
    - name: csi-s3-dummy
      port: 65535
---
kind: StatefulSet
apiVersion: apps/v1
@@ -73,6 +73,9 @@ spec:
        app: csi-attacher-s3
    spec:
      serviceAccount: csi-attacher-sa
      tolerations:
      - key: node-role.kubernetes.io/master
        operator: "Exists"
      containers:
        - name: csi-attacher
          image: quay.io/k8scsi/csi-attacher:v2.2.0
+6 −5
Original line number Diff line number Diff line
@@ -49,8 +49,8 @@ spec:
  selector:
    app: csi-provisioner-s3
  ports:
    - name: dummy
      port: 12345
    - name: csi-s3-dummy
      port: 65535
---
kind: StatefulSet
apiVersion: apps/v1
@@ -72,11 +72,13 @@ spec:
        app: csi-provisioner-s3
    spec:
      serviceAccount: csi-provisioner-sa
      tolerations:
      - key: node-role.kubernetes.io/master
        operator: "Exists"
      containers:
        - name: csi-provisioner
          image: quay.io/k8scsi/csi-provisioner:v1.3.1
          image: quay.io/k8scsi/csi-provisioner:v2.1.0
          args:
            - "--provisioner=ch.ctrox.csi.s3-driver"
            - "--csi-address=$(ADDRESS)"
            - "--v=4"
          env:
@@ -88,7 +90,6 @@ spec:
              mountPath: /var/lib/kubelet/plugins/ch.ctrox.csi.s3-driver
        - name: csi-s3
          image: ctrox/csi-s3:dev
          imagePullPolicy: Never
          args:
            - "--endpoint=$(CSI_ENDPOINT)"
            - "--nodeid=$(NODE_ID)"