-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
azuredisk: bump version to 0.5.0 (#394)
* azuredisk: bump version to 0.5.0 * fix: remove double quotes * chore: use quay.io instead of azure registry * azure: add tolerations for the ds Co-authored-by: Sebastian Brandt <[email protected]>
- Loading branch information
1 parent
b2b4b1b
commit e20a044
Showing
5 changed files
with
121 additions
and
22 deletions.
There are no files selected for viewing
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 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 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 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 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 |
---|---|---|
@@ -1,15 +1,57 @@ | ||
image: | ||
repository: mcr.microsoft.com/k8s/csi/azuredisk-csi | ||
tag: v0.4.0 | ||
pullPolicy: Always | ||
azuredisk: | ||
repository: mcr.microsoft.com/k8s/csi/azuredisk-csi | ||
tag: v0.5.0 | ||
pullPolicy: Always | ||
csiProvisioner: | ||
repository: quay.io/k8scsi/csi-provisioner | ||
tag: v1.4.0 | ||
pullPolicy: Always | ||
csiAttacher: | ||
repository: quay.io/k8scsi/csi-attacher | ||
tag: v1.2.0 | ||
pullPolicy: Always | ||
clusterDriverRegistrar: | ||
repository: quay.io/k8scsi/csi-cluster-driver-registrar | ||
tag: v1.0.1 | ||
pullPolicy: Always | ||
csiSnapshotter: | ||
repository: quay.io/k8scsi/csi-snapshotter | ||
tag: v1.1.0 | ||
pullPolicy: Always | ||
csiResizer: | ||
repository: quay.io/k8scsi/csi-resizer | ||
tag: v0.3.0 | ||
pullPolicy: Always | ||
livenessProbe: | ||
repository: quay.io/k8scsi/livenessprobe | ||
tag: v1.1.0 | ||
pullPolicy: Always | ||
nodeDriverRegistrar: | ||
repository: quay.io/k8scsi/csi-node-driver-registrar | ||
tag: v1.1.0 | ||
pullPolicy: Always | ||
|
||
serviceAccount: | ||
create: true | ||
|
||
rbac: | ||
create: true | ||
|
||
controller: | ||
replicas: 3 | ||
|
||
# True if enable volume scheduling for dynamic volume provisioning | ||
enableVolumeScheduling: false | ||
|
||
cloudConfig: /etc/kubernetes/cloud-config/cloud.conf | ||
|
||
azuredisk: | ||
node: | ||
tolerations: | ||
- effect: NoSchedule | ||
operator: Exists | ||
- effect: NoExecute | ||
operator: Exists | ||
- key: CriticalAddonsOnly | ||
operator: Exists |