Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: cut v1.28.11 release #2481

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading