-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1251 from nearora-msft/nearora-create-release-bits
[V2] chore: Create helm charts and release files for v2.0.0-beta.1 release
- Loading branch information
Showing
50 changed files
with
5,465 additions
and
36 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
Binary file not shown.
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,5 @@ | ||
apiVersion: v1 | ||
appVersion: v2.0.0-beta.1 | ||
description: Azure disk Container Storage Interface (CSI) Storage Plugin | ||
name: azuredisk-csi-driver | ||
version: v2.0.0-beta.1 |
81 changes: 81 additions & 0 deletions
81
charts/v2.0.0-beta.1/azuredisk-csi-driver/side-by-side-values.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,81 @@ | ||
serviceAccount: | ||
controller: csi-azuredisk2-controller-sa | ||
node: csi-azuredisk2-node-sa | ||
snapshotController: csi2-snapshot-controller-sa | ||
|
||
rbac: | ||
name: azuredisk2 | ||
|
||
controller: | ||
name: csi-azuredisk2-controller | ||
metrics: | ||
port: 29624 | ||
livenessProbe: | ||
healthPort: 29623 | ||
affinity: | ||
nodeAffinity: | ||
preferredDuringSchedulingIgnoredDuringExecution: | ||
- weight: 100 | ||
preference: | ||
matchExpressions: | ||
- key: kubernetes.azure.com/mode | ||
operator: In | ||
values: | ||
- system | ||
tolerations: | ||
- key: "node-role.kubernetes.io/master" | ||
operator: "Exists" | ||
effect: "NoSchedule" | ||
- key: "node-role.kubernetes.io/controlplane" | ||
operator: "Exists" | ||
effect: "NoSchedule" | ||
- key: "CriticalAddonsOnly" | ||
operator: "Exists" | ||
effect: "NoSchedule" | ||
|
||
schedulerExtender: | ||
affinity: | ||
nodeAffinity: | ||
preferredDuringSchedulingIgnoredDuringExecution: | ||
- weight: 100 | ||
preference: | ||
matchExpressions: | ||
- key: kubernetes.azure.com/mode | ||
operator: In | ||
values: | ||
- system | ||
tolerations: | ||
- key: "node-role.kubernetes.io/master" | ||
operator: "Exists" | ||
effect: "NoSchedule" | ||
- key: "node-role.kubernetes.io/controlplane" | ||
operator: "Exists" | ||
effect: "NoSchedule" | ||
- key: "CriticalAddonsOnly" | ||
operator: "Exists" | ||
effect: "NoSchedule" | ||
|
||
node: | ||
metrics: | ||
port: 29625 | ||
livenessProbe: | ||
healthPort: 29627 | ||
|
||
snapshot: | ||
enabled: true | ||
createCRDs: false | ||
name: csi-azuredisk2-snapshot-controller | ||
snapshotController: | ||
name: csi-azuredisk2-snapshot-controller | ||
|
||
driver: | ||
name: disk2.csi.azure.com | ||
|
||
linux: | ||
dsName: csi-azuredisk2-node | ||
|
||
windows: | ||
dsName: csi-azuredisk2-node-win | ||
|
||
storageClasses: | ||
enableZRS: true |
11 changes: 11 additions & 0 deletions
11
charts/v2.0.0-beta.1/azuredisk-csi-driver/templates/NOTES.txt
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,11 @@ | ||
Thank you for installing Azure Disk CSI Driver to your cluster. | ||
|
||
Your release is named {{ .Release.Name }}. | ||
|
||
To learn more about the release, try: | ||
|
||
helm status {{ .Release.Name }} --namespace={{ .Release.Namespace }} | ||
|
||
To check Azure Disk CSI Driver pods status, please run: | ||
|
||
kubectl --namespace={{ .Release.Namespace }} get pods --selector="app.kubernetes.io/instance={{ .Release.Name }}" --watch |
Oops, something went wrong.