Skip to content

Commit

Permalink
doc: cut v1.28.11 release
Browse files Browse the repository at this point in the history
  • Loading branch information
andyzhangx committed Aug 28, 2024
1 parent 12d5e16 commit a049663
Show file tree
Hide file tree
Showing 42 changed files with 4,662 additions and 68 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ REGISTRY_NAME ?= $(shell echo $(REGISTRY) | sed "s/.azurecr.io//g")
IMAGE_NAME ?= azuredisk-csi
ifneq ($(BUILD_V2), true)
PLUGIN_NAME = azurediskplugin
IMAGE_VERSION ?= v1.28.10
IMAGE_VERSION ?= v1.28.11
CHART_VERSION ?= latest
else
PLUGIN_NAME = azurediskpluginv2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ V2: Preview
|Driver Version |Image | supported k8s version |
|----------------|-----------------------------------------------------------|-----------------------|
|`master` branch |mcr.microsoft.com/k8s/csi/azuredisk-csi:latest | 1.21+ |
|v1.28.10 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.28.10 | 1.21+ |
|v1.28.11 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.28.11 | 1.21+ |
|v1.27.1 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.27.1 | 1.21+ |
|v1.26.4 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.26.4 | 1.21+ |

Expand Down
2 changes: 1 addition & 1 deletion charts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ helm repo update azuredisk-csi-driver
### install a specific version

```console
helm install azuredisk-csi-driver azuredisk-csi-driver/azuredisk-csi-driver --namespace kube-system --version v1.28.10
helm install azuredisk-csi-driver azuredisk-csi-driver/azuredisk-csi-driver --namespace kube-system --version v1.28.11
```

### install on Azure Stack
Expand Down
121 changes: 65 additions & 56 deletions charts/index.yaml

Large diffs are not rendered by default.

Binary file removed charts/latest/azuredisk-csi-driver-v1.28.10.tgz
Binary file not shown.
Binary file added charts/latest/azuredisk-csi-driver-v1.28.11.tgz
Binary file not shown.
4 changes: 2 additions & 2 deletions charts/latest/azuredisk-csi-driver/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: v1.28.10
appVersion: v1.28.11
description: Azure disk Container Storage Interface (CSI) Storage Plugin
name: azuredisk-csi-driver
version: v1.28.10
version: v1.28.11
2 changes: 1 addition & 1 deletion charts/latest/azuredisk-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ image:
baseRepo: mcr.microsoft.com
azuredisk:
repository: /oss/kubernetes-csi/azuredisk-csi
tag: v1.28.10
tag: v1.28.11
pullPolicy: IfNotPresent
csiProvisioner:
repository: /oss/kubernetes-csi/csi-provisioner
Expand Down
Binary file added charts/v1.28.11/azuredisk-csi-driver-v1.28.11.tgz
Binary file not shown.
5 changes: 5 additions & 0 deletions charts/v1.28.11/azuredisk-csi-driver/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
apiVersion: v1
appVersion: v1.28.11
description: Azure disk Container Storage Interface (CSI) Storage Plugin
name: azuredisk-csi-driver
version: v1.28.11
5 changes: 5 additions & 0 deletions charts/v1.28.11/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
26 changes: 26 additions & 0 deletions charts/v1.28.11/azuredisk-csi-driver/templates/_helpers.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{{/* vim: set filetype=mustache: */}}

{{/* Expand the name of the chart.*/}}
{{- define "azuredisk.name" -}}
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
{{- end -}}

{{/* labels for helm resources */}}
{{- define "azuredisk.labels" -}}
labels:
app.kubernetes.io/instance: "{{ .Release.Name }}"
app.kubernetes.io/managed-by: "{{ .Release.Service }}"
app.kubernetes.io/name: "{{ template "azuredisk.name" . }}"
app.kubernetes.io/version: "{{ .Chart.AppVersion }}"
helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}"
{{- end -}}

{{/* pull secrets for containers */}}
{{- define "azuredisk.pullSecrets" -}}
{{- if .Values.imagePullSecrets }}
imagePullSecrets:
{{- range .Values.imagePullSecrets }}
- name: {{ . }}
{{- end }}
{{- end }}
{{- end -}}
840 changes: 840 additions & 0 deletions charts/v1.28.11/azuredisk-csi-driver/templates/crd-csi-snapshot.yaml

Large diffs are not rendered by default.

Loading

0 comments on commit a049663

Please sign in to comment.