Skip to content

Commit 43a3301

Browse files
authored
Merge pull request #2804 from andyzhangx/cut-v1.29.12
doc: cut v1.29.12 release
2 parents 5a8d5b2 + ae7d0d5 commit 43a3301

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+4701
-72
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ REGISTRY_NAME ?= $(shell echo $(REGISTRY) | sed "s/.azurecr.io//g")
1919
IMAGE_NAME ?= azuredisk-csi
2020
ifneq ($(BUILD_V2), true)
2121
PLUGIN_NAME = azurediskplugin
22-
IMAGE_VERSION ?= v1.29.11
22+
IMAGE_VERSION ?= v1.29.12
2323
CHART_VERSION ?= latest
2424
else
2525
PLUGIN_NAME = azurediskpluginv2

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ V2: Preview
2323
|Driver Version |Image | supported k8s version |
2424
|----------------|-----------------------------------------------------------|-----------------------|
2525
|`master` branch |mcr.microsoft.com/k8s/csi/azuredisk-csi:latest | 1.21+ |
26-
|v1.29.11 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.11 | 1.21+ |
26+
|v1.29.12 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.12 | 1.21+ |
2727
|v1.28.3 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.28.3 | 1.21+ |
2828
|v1.27.1 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.27.1 | 1.21+ |
2929

charts/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ helm repo update azuredisk-csi-driver
7171
### install a specific version
7272

7373
```console
74-
helm install azuredisk-csi-driver azuredisk-csi-driver/azuredisk-csi-driver --namespace kube-system --version v1.29.11
74+
helm install azuredisk-csi-driver azuredisk-csi-driver/azuredisk-csi-driver --namespace kube-system --version v1.29.12
7575
```
7676

7777
### install on Azure Stack

charts/index.yaml

+69-60
Large diffs are not rendered by default.
-14.3 KB
Binary file not shown.
14.3 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v1
2-
appVersion: v1.29.11
2+
appVersion: v1.29.12
33
description: Azure disk Container Storage Interface (CSI) Storage Plugin
44
name: azuredisk-csi-driver
5-
version: v1.29.11
5+
version: v1.29.12

charts/latest/azuredisk-csi-driver/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ image:
22
baseRepo: mcr.microsoft.com
33
azuredisk:
44
repository: /oss/kubernetes-csi/azuredisk-csi
5-
tag: v1.29.11
5+
tag: v1.29.12
66
pullPolicy: IfNotPresent
77
csiProvisioner:
88
repository: /oss/kubernetes-csi/csi-provisioner
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
apiVersion: v1
2+
appVersion: v1.29.12
3+
description: Azure disk Container Storage Interface (CSI) Storage Plugin
4+
name: azuredisk-csi-driver
5+
version: v1.29.12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
The Azure Disk CSI Driver is getting deployed to your cluster.
2+
3+
To check Azure Disk CSI Driver pods status, please run:
4+
5+
kubectl --namespace={{ .Release.Namespace }} get pods --selector="release={{ .Release.Name }}" --watch
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{{/* vim: set filetype=mustache: */}}
2+
3+
{{/* Expand the name of the chart.*/}}
4+
{{- define "azuredisk.name" -}}
5+
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
6+
{{- end -}}
7+
8+
{{/* labels for helm resources */}}
9+
{{- define "azuredisk.labels" -}}
10+
labels:
11+
app.kubernetes.io/instance: "{{ .Release.Name }}"
12+
app.kubernetes.io/managed-by: "{{ .Release.Service }}"
13+
app.kubernetes.io/name: "{{ template "azuredisk.name" . }}"
14+
app.kubernetes.io/version: "{{ .Chart.AppVersion }}"
15+
helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}"
16+
{{- end -}}
17+
18+
{{/* pull secrets for containers */}}
19+
{{- define "azuredisk.pullSecrets" -}}
20+
{{- if .Values.imagePullSecrets }}
21+
imagePullSecrets:
22+
{{- range .Values.imagePullSecrets }}
23+
- name: {{ . }}
24+
{{- end }}
25+
{{- end }}
26+
{{- end -}}

charts/v1.29.12/azuredisk-csi-driver/templates/crd-csi-snapshot.yaml

+840
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)