Skip to content

Commit

Permalink
doc: cut v1.30.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
andyzhangx committed Jul 15, 2024
1 parent d55e03f commit bba551a
Show file tree
Hide file tree
Showing 41 changed files with 4,718 additions and 67 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.30.1
IMAGE_VERSION ?= v1.30.2
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 @@ -24,7 +24,7 @@ V2: Preview
|Driver Version |Image | supported k8s version |
|----------------|-----------------------------------------------------------|-----------------------|
|`master` branch |mcr.microsoft.com/k8s/csi/azuredisk-csi:latest | 1.21+ |
|v1.30.1 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.30.1 | 1.21+ |
|v1.30.2 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.30.2 | 1.21+ |
|v1.29.2 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.2 | 1.21+ |
|v1.28.5 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.28.5 | 1.21+ |

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.30.1.tgz
Binary file not shown.
Binary file added charts/latest/azuredisk-csi-driver-v1.30.2.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.30.1
appVersion: v1.30.2
description: Azure disk Container Storage Interface (CSI) Storage Plugin
name: azuredisk-csi-driver
version: v1.30.1
version: v1.30.2
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.30.1
tag: v1.30.2
pullPolicy: IfNotPresent
csiProvisioner:
repository: /oss/kubernetes-csi/csi-provisioner
Expand Down
Binary file added charts/v1.30.2/azuredisk-csi-driver-v1.30.2.tgz
Binary file not shown.
5 changes: 5 additions & 0 deletions charts/v1.30.2/azuredisk-csi-driver/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
apiVersion: v1
appVersion: v1.30.2
description: Azure disk Container Storage Interface (CSI) Storage Plugin
name: azuredisk-csi-driver
version: v1.30.2
5 changes: 5 additions & 0 deletions charts/v1.30.2/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="app.kubernetes.io/name={{ .Release.Name }}" --watch
26 changes: 26 additions & 0 deletions charts/v1.30.2/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.30.2/azuredisk-csi-driver/templates/crd-csi-snapshot.yaml

Large diffs are not rendered by default.

Loading

0 comments on commit bba551a

Please sign in to comment.