Skip to content

Commit

Permalink
Merge pull request #618 from kubernetes-sigs/disable-attacher
Browse files Browse the repository at this point in the history
feat: disable attacher by default
  • Loading branch information
andyzhangx committed Apr 16, 2021
2 parents 6c633b0 + f362593 commit 50ff8a4
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions charts/README.md
Expand Up @@ -63,6 +63,7 @@ The following table lists the configurable parameters of the latest Azure File C
| `controller.replicas` | the replicas of csi-azurefile-controller | 2 |
| `controller.metricsPort` | metrics port of csi-azurefile-controller |29614 |
| `controller.runOnMaster` | run controller on master node |`false` |
| `controller.attachRequired` | enable attach/detach (only valid for vhd disk feature) |`false` |
| `controller.logLevel` | controller driver log level |`5` |
| `node.metricsPort` | metrics port of csi-azurefile-node |29615 |
| `node.logLevel` | node driver log level |`5` |
Expand Down
Binary file modified charts/latest/azurefile-csi-driver-v1.2.0.tgz
Binary file not shown.
Expand Up @@ -4,5 +4,5 @@ kind: CSIDriver
metadata:
name: file.csi.azure.com
spec:
attachRequired: true
attachRequired: {{ .Values.controller.attachRequired }}
podInfoOnMount: true
1 change: 1 addition & 0 deletions charts/latest/azurefile-csi-driver/values.yaml
Expand Up @@ -34,6 +34,7 @@ controller:
replicas: 2
metricsPort: 29614
runOnMaster: false
attachRequired: false
logLevel: 5

node:
Expand Down
2 changes: 1 addition & 1 deletion deploy/csi-azurefile-driver.yaml
Expand Up @@ -4,5 +4,5 @@ kind: CSIDriver
metadata:
name: file.csi.azure.com
spec:
attachRequired: true
attachRequired: false
podInfoOnMount: true

0 comments on commit 50ff8a4

Please sign in to comment.