Skip to content

Commit

Permalink
doc: cut v0.9.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
andyzhangx committed Sep 13, 2020
1 parent 32ac586 commit 8e22159
Show file tree
Hide file tree
Showing 34 changed files with 2,922 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ This driver allows Kubernetes to use [Azure disk](https://azure.microsoft.com/en
|Driver Version |Image | 1.14+ |
|----------------|------------------------------------------------|-------|
|master branch |mcr.microsoft.com/k8s/csi/azuredisk-csi:latest | yes |
|v0.9.0 |mcr.microsoft.com/k8s/csi/azuredisk-csi:v0.9.0 | yes |
|v0.8.0 |mcr.microsoft.com/k8s/csi/azuredisk-csi:v0.8.0 | yes |
|v0.7.0 |mcr.microsoft.com/k8s/csi/azuredisk-csi:v0.7.0 | yes |
|v0.6.0 |mcr.microsoft.com/k8s/csi/azuredisk-csi:v0.6.0 | yes |

### Driver parameters
Please refer to [`disk.csi.azure.com` driver parameters](./docs/driver-parameters.md)
Expand Down
2 changes: 1 addition & 1 deletion charts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ $ helm search repo -l azuredisk-csi-driver/
### Install a specific version of Helm chart
Specify the version of the chart to be installed using the `--version` parameter.
```console
helm install azuredisk-csi-driver azuredisk-csi-driver/azuredisk-csi-driver --namespace kube-system --version v0.8.0
helm install azuredisk-csi-driver azuredisk-csi-driver/azuredisk-csi-driver --namespace kube-system --version v0.9.0
```

## Uninstall
Expand Down
17 changes: 13 additions & 4 deletions charts/index.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
apiVersion: v1
entries:
azuredisk-csi-driver:
- apiVersion: v1
appVersion: v0.9.0
created: "2020-09-13T07:59:53.399587034Z"
description: Azure disk Container Storage Interface (CSI) Storage Plugin
digest: a978f3e6ef5d678c3b6512bd8a63277cb4ce40d3f3e34b80370f0c37298824f2
name: azuredisk-csi-driver
urls:
- https://raw.githubusercontent.com/kubernetes-sigs/azuredisk-csi-driver/master/charts/v0.9.0/azuredisk-csi-driver-v0.9.0.tgz
version: v0.9.0
- apiVersion: v1
appVersion: v0.8.0
created: "2020-08-09T12:26:05.802994718Z"
created: "2020-09-13T07:59:53.398666626Z"
description: Azure disk Container Storage Interface (CSI) Storage Plugin
digest: 1762b832389b4f7a5eab9748127fa6dbb85131485d67bc3fe485bbe86c468128
name: azuredisk-csi-driver
Expand All @@ -12,7 +21,7 @@ entries:
version: v0.8.0
- apiVersion: v1
appVersion: v0.7.0
created: "2020-08-09T12:26:05.801868707Z"
created: "2020-09-13T07:59:53.397660816Z"
description: Azure disk Container Storage Interface (CSI) Storage Plugin
digest: 29e21f686814f46c1edaaaa95ce2d25579ff1aad270c58b774bdb5a89858b8bf
name: azuredisk-csi-driver
Expand All @@ -21,11 +30,11 @@ entries:
version: v0.7.0
- apiVersion: v1
appVersion: v0.6.0
created: "2020-08-09T12:26:05.800674195Z"
created: "2020-09-13T07:59:53.396661307Z"
description: Azure disk Container Storage Interface (CSI) Storage Plugin
digest: b11d8dfee371ca7c63a1448ba27c1fd1f032ea33575fefeeb16927fc95d1eeb7
name: azuredisk-csi-driver
urls:
- https://raw.githubusercontent.com/kubernetes-sigs/azuredisk-csi-driver/master/charts/v0.6.0/azuredisk-csi-driver-v0.6.0.tgz
version: v0.6.0
generated: "2020-08-09T12:26:05.799447083Z"
generated: "2020-09-13T07:59:53.392637069Z"
Binary file added charts/v0.9.0/azuredisk-csi-driver-v0.9.0.tgz
Binary file not shown.
5 changes: 5 additions & 0 deletions charts/v0.9.0/azuredisk-csi-driver/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
apiVersion: v1
appVersion: v0.9.0
description: Azure disk Container Storage Interface (CSI) Storage Plugin
name: azuredisk-csi-driver
version: v0.9.0
5 changes: 5 additions & 0 deletions charts/v0.9.0/azuredisk-csi-driver/templates/NOTES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
The Azure Disk CSI Driver is getting deployed to your cluster.

To check Azure Disk CSI Driver pods status, please run:

kubectl --namespace={{ .Release.Namespace }} get pods --selector="release={{ .Release.Name }}" --watch
21 changes: 21 additions & 0 deletions charts/v0.9.0/azuredisk-csi-driver/templates/_helpers.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{{/* vim: set filetype=mustache: */}}

{{/* labels for helm resources */}}
{{- define "azuredisk.labels" -}}
labels:
heritage: "{{ .Release.Service }}"
release: "{{ .Release.Name }}"
revision: "{{ .Release.Revision }}"
chart: "{{ .Chart.Name }}"
chartVersion: "{{ .Chart.Version }}"
{{- end -}}

{{/* pull secrets for containers */}}
{{- define "azuredisk.pullSecrets" -}}
{{- if .Values.imagePullSecrets }}
imagePullSecrets:
{{- range .Values.imagePullSecrets }}
- name: {{ . }}
{{- end }}
{{- end }}
{{- end -}}
Loading

0 comments on commit 8e22159

Please sign in to comment.