From 0261f9c22421b254b788f039dbeb5b4b987f79f5 Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Thu, 10 Oct 2024 02:58:27 +0000 Subject: [PATCH] doc: cut v1.29.10 release --- Makefile | 2 +- README.md | 2 +- charts/README.md | 2 +- charts/index.yaml | 125 +-- .../latest/azuredisk-csi-driver-v1.29.10.tgz | Bin 0 -> 14707 bytes .../latest/azuredisk-csi-driver-v1.29.9.tgz | Bin 14705 -> 0 bytes charts/latest/azuredisk-csi-driver/Chart.yaml | 4 +- .../latest/azuredisk-csi-driver/values.yaml | 2 +- .../azuredisk-csi-driver-v1.29.10.tgz | Bin 0 -> 14707 bytes .../v1.29.10/azuredisk-csi-driver/Chart.yaml | 5 + .../azuredisk-csi-driver/templates/NOTES.txt | 5 + .../templates/_helpers.tpl | 26 + .../templates/crd-csi-snapshot.yaml | 840 ++++++++++++++++++ .../templates/csi-azuredisk-controller.yaml | 328 +++++++ .../templates/csi-azuredisk-driver.yaml | 13 + ...si-azuredisk-node-windows-hostprocess.yaml | 174 ++++ .../templates/csi-azuredisk-node-windows.yaml | 258 ++++++ .../templates/csi-azuredisk-node.yaml | 280 ++++++ .../templates/csi-snapshot-controller.yaml | 98 ++ .../rbac-csi-azuredisk-controller.yaml | 199 +++++ .../templates/rbac-csi-azuredisk-node.yaml | 28 + .../rbac-csi-snapshot-controller.yaml | 72 ++ ...rviceaccount-csi-azuredisk-controller.yaml | 16 + .../serviceaccount-csi-azuredisk-node.yaml | 16 + ...erviceaccount-csi-snapshot-controller.yaml | 7 + .../v1.29.10/azuredisk-csi-driver/values.yaml | 291 ++++++ deploy/csi-azuredisk-controller.yaml | 2 +- ...si-azuredisk-node-windows-hostprocess.yaml | 4 +- deploy/csi-azuredisk-node-windows.yaml | 2 +- deploy/csi-azuredisk-node.yaml | 2 +- deploy/v1.29.10/crd-csi-snapshot.yaml | 838 +++++++++++++++++ deploy/v1.29.10/csi-azuredisk-controller.yaml | 216 +++++ deploy/v1.29.10/csi-azuredisk-driver.yaml | 12 + ...si-azuredisk-node-windows-hostprocess.yaml | 120 +++ .../v1.29.10/csi-azuredisk-node-windows.yaml | 206 +++++ deploy/v1.29.10/csi-azuredisk-node.yaml | 186 ++++ deploy/v1.29.10/csi-snapshot-controller.yaml | 62 ++ .../rbac-csi-azuredisk-controller.yaml | 196 ++++ deploy/v1.29.10/rbac-csi-azuredisk-node.yaml | 33 + .../rbac-csi-snapshot-controller.yaml | 78 ++ docs/install-azuredisk-csi-driver.md | 2 +- docs/install-csi-driver-v1.29.10.md | 48 + 42 files changed, 4730 insertions(+), 70 deletions(-) create mode 100644 charts/latest/azuredisk-csi-driver-v1.29.10.tgz delete mode 100644 charts/latest/azuredisk-csi-driver-v1.29.9.tgz create mode 100644 charts/v1.29.10/azuredisk-csi-driver-v1.29.10.tgz create mode 100644 charts/v1.29.10/azuredisk-csi-driver/Chart.yaml create mode 100644 charts/v1.29.10/azuredisk-csi-driver/templates/NOTES.txt create mode 100644 charts/v1.29.10/azuredisk-csi-driver/templates/_helpers.tpl create mode 100644 charts/v1.29.10/azuredisk-csi-driver/templates/crd-csi-snapshot.yaml create mode 100644 charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-controller.yaml create mode 100644 charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-driver.yaml create mode 100644 charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-node-windows-hostprocess.yaml create mode 100644 charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-node-windows.yaml create mode 100644 charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-node.yaml create mode 100644 charts/v1.29.10/azuredisk-csi-driver/templates/csi-snapshot-controller.yaml create mode 100644 charts/v1.29.10/azuredisk-csi-driver/templates/rbac-csi-azuredisk-controller.yaml create mode 100644 charts/v1.29.10/azuredisk-csi-driver/templates/rbac-csi-azuredisk-node.yaml create mode 100644 charts/v1.29.10/azuredisk-csi-driver/templates/rbac-csi-snapshot-controller.yaml create mode 100644 charts/v1.29.10/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-controller.yaml create mode 100644 charts/v1.29.10/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-node.yaml create mode 100644 charts/v1.29.10/azuredisk-csi-driver/templates/serviceaccount-csi-snapshot-controller.yaml create mode 100644 charts/v1.29.10/azuredisk-csi-driver/values.yaml create mode 100644 deploy/v1.29.10/crd-csi-snapshot.yaml create mode 100644 deploy/v1.29.10/csi-azuredisk-controller.yaml create mode 100644 deploy/v1.29.10/csi-azuredisk-driver.yaml create mode 100644 deploy/v1.29.10/csi-azuredisk-node-windows-hostprocess.yaml create mode 100644 deploy/v1.29.10/csi-azuredisk-node-windows.yaml create mode 100644 deploy/v1.29.10/csi-azuredisk-node.yaml create mode 100644 deploy/v1.29.10/csi-snapshot-controller.yaml create mode 100644 deploy/v1.29.10/rbac-csi-azuredisk-controller.yaml create mode 100644 deploy/v1.29.10/rbac-csi-azuredisk-node.yaml create mode 100644 deploy/v1.29.10/rbac-csi-snapshot-controller.yaml create mode 100644 docs/install-csi-driver-v1.29.10.md diff --git a/Makefile b/Makefile index 6f6f4a7efa..f4dbd6e3b0 100644 --- a/Makefile +++ b/Makefile @@ -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.29.9 +IMAGE_VERSION ?= v1.29.10 CHART_VERSION ?= latest else PLUGIN_NAME = azurediskpluginv2 diff --git a/README.md b/README.md index c47e455966..283397fa45 100644 --- a/README.md +++ b/README.md @@ -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.29.9 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.9 | 1.21+ | +|v1.29.10 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.10 | 1.21+ | |v1.28.3 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.28.3 | 1.21+ | |v1.27.1 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.27.1 | 1.21+ | diff --git a/charts/README.md b/charts/README.md index bd5067b94f..6cd4b851e1 100644 --- a/charts/README.md +++ b/charts/README.md @@ -71,7 +71,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.29.9 +helm install azuredisk-csi-driver azuredisk-csi-driver/azuredisk-csi-driver --namespace kube-system --version v1.29.10 ``` ### install on Azure Stack diff --git a/charts/index.yaml b/charts/index.yaml index c965569ad9..8d5bce4079 100644 --- a/charts/index.yaml +++ b/charts/index.yaml @@ -3,7 +3,7 @@ entries: azuredisk-csi-driver: - apiVersion: v1 appVersion: latest-v2 - created: "2024-08-28T11:46:08.622478391Z" + created: "2024-10-10T02:58:06.377657284Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: b261d370dfb8bde4d15d6285d57c87369d9c66d12b92c8c6ad2b85495365759a name: azuredisk-csi-driver @@ -12,7 +12,7 @@ entries: version: v2.0.0-beta.7 - apiVersion: v1 appVersion: v2.0.0-beta.6 - created: "2024-08-28T11:46:08.680779381Z" + created: "2024-10-10T02:58:06.55345106Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 0e7280d2bcd752668c4439078ffdfc4567ac97af97d8baa07c322b99c34fb741 name: azuredisk-csi-driver @@ -21,7 +21,7 @@ entries: version: v2.0.0-beta.6 - apiVersion: v1 appVersion: v2.0.0-beta.5 - created: "2024-08-28T11:46:08.679166221Z" + created: "2024-10-10T02:58:06.545013008Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 10189dd78863d24c9572c468e0d81b8781f83625118e6b205ee65e157aab0602 name: azuredisk-csi-driver @@ -30,7 +30,7 @@ entries: version: v2.0.0-beta.5 - apiVersion: v1 appVersion: v2.0.0-beta.4 - created: "2024-08-28T11:46:08.677758906Z" + created: "2024-10-10T02:58:06.542526965Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: b38901738bb600ff55cc91e1efb45c84a3a601bb815908a348df793960cd7122 name: azuredisk-csi-driver @@ -39,7 +39,7 @@ entries: version: v2.0.0-beta.4 - apiVersion: v1 appVersion: v2.0.0-beta.3 - created: "2024-08-28T11:46:08.675230692Z" + created: "2024-10-10T02:58:06.538317228Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: ddfe774c7b2326ff61c71a7e6fbfe687e97f06b6a8cc5e87c0b50ac0f320c7fe name: azuredisk-csi-driver @@ -48,7 +48,7 @@ entries: version: v2.0.0-beta.3 - apiVersion: v1 appVersion: v2.0.0-beta.2 - created: "2024-08-28T11:46:08.673985362Z" + created: "2024-10-10T02:58:06.53189538Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 7c1b8159465e7642b7460ec8e4e2a2965be11e8abb8310d86d9487676adb6adc name: azuredisk-csi-driver @@ -57,7 +57,7 @@ entries: version: v2.0.0-beta.2 - apiVersion: v1 appVersion: v2.0.0-beta.1 - created: "2024-08-28T11:46:08.672709935Z" + created: "2024-10-10T02:58:06.529639457Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: f327e1205e7197cf87693012848e2fd76a213c7852ac57a50753ba9e41207612 name: azuredisk-csi-driver @@ -66,7 +66,7 @@ entries: version: v2.0.0-beta.1 - apiVersion: v1 appVersion: v2.0.0-alpha.1 - created: "2024-08-28T11:46:08.671451409Z" + created: "2024-10-10T02:58:06.527379985Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: a00216ca8bdd4550f01071c0a57e7cf49f20b4915164ec6c785d2b5e51893870 name: azuredisk-csi-driver @@ -74,17 +74,26 @@ entries: - https://raw.githubusercontent.com/kubernetes-sigs/azuredisk-csi-driver/master/charts/v2.0.0-alpha.1/azuredisk-csi-driver-v2.0.0-alpha.1.tgz version: v2.0.0-alpha.1 - apiVersion: v1 - appVersion: v1.29.9 - created: "2024-08-28T11:46:08.620721358Z" + appVersion: v1.29.10 + created: "2024-10-10T02:58:06.465976979Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin - digest: 4b6391cf57132ad89e17c4de79eeb6f01cce6bb82ec7e9cb774d0f306c03ec87 + digest: c5d3327d567a355eabbd47f91c64b590b45ec08d44e51f62ea9d9660f5136840 name: azuredisk-csi-driver urls: - - https://raw.githubusercontent.com/kubernetes-sigs/azuredisk-csi-driver/master/charts/latest/azuredisk-csi-driver-v1.29.9.tgz - version: v1.29.9 + - https://raw.githubusercontent.com/kubernetes-sigs/azuredisk-csi-driver/master/charts/v1.29.10/azuredisk-csi-driver-v1.29.10.tgz + version: v1.29.10 + - apiVersion: v1 + appVersion: v1.29.10 + created: "2024-10-10T02:58:06.375799346Z" + description: Azure disk Container Storage Interface (CSI) Storage Plugin + digest: c5d3327d567a355eabbd47f91c64b590b45ec08d44e51f62ea9d9660f5136840 + name: azuredisk-csi-driver + urls: + - https://raw.githubusercontent.com/kubernetes-sigs/azuredisk-csi-driver/master/charts/latest/azuredisk-csi-driver-v1.29.10.tgz + version: v1.29.10 - apiVersion: v1 appVersion: v1.29.9 - created: "2024-08-28T11:46:08.662488326Z" + created: "2024-10-10T02:58:06.507492402Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 4b6391cf57132ad89e17c4de79eeb6f01cce6bb82ec7e9cb774d0f306c03ec87 name: azuredisk-csi-driver @@ -93,25 +102,25 @@ entries: version: v1.29.9 - apiVersion: v1 appVersion: v1.29.8 - created: "2024-08-28T11:46:08.661306726Z" + created: "2024-10-10T02:58:06.502133241Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin - digest: 70aa00ebe8b4a97dd398f77c7fcf6218f1bb46213a082e919653386d510922ef + digest: 7b3723cced64c404b6b8e59e1925a7461f6bb7b72b60228955f7b7d8c9fb30b0 name: azuredisk-csi-driver urls: - https://raw.githubusercontent.com/kubernetes-sigs/azuredisk-csi-driver/master/charts/v1.29.8/azuredisk-csi-driver-v1.29.8.tgz version: v1.29.8 - apiVersion: v1 appVersion: v1.29.7 - created: "2024-08-28T11:46:08.66008414Z" + created: "2024-10-10T02:58:06.498828571Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin - digest: 58cde3e2cc3fccb3f97f670aff13c3a120342c1f883956f0d54a6f608e0fd552 + digest: 5383e99ce4432a94813bd10a666a4077fed2a1cf7296b8368b06f43d04ad48b0 name: azuredisk-csi-driver urls: - https://raw.githubusercontent.com/kubernetes-sigs/azuredisk-csi-driver/master/charts/v1.29.7/azuredisk-csi-driver-v1.29.7.tgz version: v1.29.7 - apiVersion: v1 appVersion: v1.29.6 - created: "2024-08-28T11:46:08.658076991Z" + created: "2024-10-10T02:58:06.484102302Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 8239ffab0ddded0eb3a9548e28892da4859c4ece2bba6c61e0715a1e7ea673de name: azuredisk-csi-driver @@ -120,7 +129,7 @@ entries: version: v1.29.6 - apiVersion: v1 appVersion: v1.29.5 - created: "2024-08-28T11:46:08.656899896Z" + created: "2024-10-10T02:58:06.481869589Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 640f8c318382aa2dba4f5c8b74835b1ded300fa70cafff2a81842005a4be35ed name: azuredisk-csi-driver @@ -129,7 +138,7 @@ entries: version: v1.29.5 - apiVersion: v1 appVersion: v1.29.4 - created: "2024-08-28T11:46:08.655732128Z" + created: "2024-10-10T02:58:06.479659234Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 1fc678fdf19ae778e44f9620e51a29cea3598ec348d701635bf9bae9b56efff2 name: azuredisk-csi-driver @@ -138,7 +147,7 @@ entries: version: v1.29.4 - apiVersion: v1 appVersion: v1.29.3 - created: "2024-08-28T11:46:08.654559555Z" + created: "2024-10-10T02:58:06.477361743Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 45004e7908ac76e1fdc1350fd6ade99cb9776e888a30d67ac1ab900399ada43b name: azuredisk-csi-driver @@ -147,7 +156,7 @@ entries: version: v1.29.3 - apiVersion: v1 appVersion: v1.29.2 - created: "2024-08-28T11:46:08.653368604Z" + created: "2024-10-10T02:58:06.475134919Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: ae0c15b875bb0bd2a4c1135437f0abfee6bf3591abcc502604317b3fe46015ff name: azuredisk-csi-driver @@ -156,7 +165,7 @@ entries: version: v1.29.2 - apiVersion: v1 appVersion: v1.29.1 - created: "2024-08-28T11:46:08.650855686Z" + created: "2024-10-10T02:58:06.459062932Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 32be7b7b34d7f8a51d5d730ada9fd3dc632c5e8096ba0628f93ca269346f780e name: azuredisk-csi-driver @@ -165,7 +174,7 @@ entries: version: v1.29.1 - apiVersion: v1 appVersion: v1.29.0 - created: "2024-08-28T11:46:08.649689212Z" + created: "2024-10-10T02:58:06.446495507Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 611857811af7ac3304f7cae847be4f35bad6735482700d5b2c970dfbb53f9a3b name: azuredisk-csi-driver @@ -174,7 +183,7 @@ entries: version: v1.29.0 - apiVersion: v1 appVersion: v1.28.3 - created: "2024-08-28T11:46:08.648517956Z" + created: "2024-10-10T02:58:06.444339685Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 12fe80d19091cc4bc0025585da35d12bcab9cbc2f3e4cfd90eb4368e6967931a name: azuredisk-csi-driver @@ -183,7 +192,7 @@ entries: version: v1.28.3 - apiVersion: v1 appVersion: v1.28.2 - created: "2024-08-28T11:46:08.647401704Z" + created: "2024-10-10T02:58:06.44234233Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 044dc6ffb662914020a3a835f994455a3301a4b2b665c9d4b9496b422a93c8b1 name: azuredisk-csi-driver @@ -192,7 +201,7 @@ entries: version: v1.28.2 - apiVersion: v1 appVersion: v1.27.1 - created: "2024-08-28T11:46:08.645944475Z" + created: "2024-10-10T02:58:06.440288063Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 805d2f7437e7442739c18791e3eaf839d75bc9f3c1a10710e6cc6cb7ee06cbc4 name: azuredisk-csi-driver @@ -201,7 +210,7 @@ entries: version: v1.27.1 - apiVersion: v1 appVersion: v1.26.6 - created: "2024-08-28T11:46:08.64434332Z" + created: "2024-10-10T02:58:06.438135573Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 277051eba7872783d34d9b8ba7bd606f3161afe571523eaabfa8b400491010c9 name: azuredisk-csi-driver @@ -210,7 +219,7 @@ entries: version: v1.26.6 - apiVersion: v1 appVersion: v1.25.0 - created: "2024-08-28T11:46:08.643350538Z" + created: "2024-10-10T02:58:06.423441019Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: cc1a78eb68d741382945252fdc86dc38fc903bcc7448eef5753a1e663e4e6e3c name: azuredisk-csi-driver @@ -219,7 +228,7 @@ entries: version: v1.25.0 - apiVersion: v1 appVersion: v1.24.0 - created: "2024-08-28T11:46:08.642324664Z" + created: "2024-10-10T02:58:06.421718926Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 8f4a2048cd3d8ef128e533c43c5b68464989e28949658010599d466b2ccb1b58 name: azuredisk-csi-driver @@ -228,7 +237,7 @@ entries: version: v1.24.0 - apiVersion: v1 appVersion: v1.23.0 - created: "2024-08-28T11:46:08.641298231Z" + created: "2024-10-10T02:58:06.420058403Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 4347271a297c6c95e10c4a880a08453c22839c95ad7db232d2d8fc38e926b385 name: azuredisk-csi-driver @@ -237,7 +246,7 @@ entries: version: v1.23.0 - apiVersion: v1 appVersion: v1.22.0 - created: "2024-08-28T11:46:08.640128249Z" + created: "2024-10-10T02:58:06.418419191Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: fc7adc9ddb406356bee117d3ba5c360408b4ee9a7decc30d34fe310d0cdd6aef name: azuredisk-csi-driver @@ -246,7 +255,7 @@ entries: version: v1.22.0 - apiVersion: v1 appVersion: v1.21.0 - created: "2024-08-28T11:46:08.63832244Z" + created: "2024-10-10T02:58:06.416797302Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 50a5c0860aa631c7e83affbaeac1a84c43c96b19175e1dd1c21cba472564798d name: azuredisk-csi-driver @@ -255,7 +264,7 @@ entries: version: v1.21.0 - apiVersion: v1 appVersion: v1.20.0 - created: "2024-08-28T11:46:08.637353367Z" + created: "2024-10-10T02:58:06.414937461Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 9f2a936be5efc45002c12d5bbbd8cb453e51a0c1668f6ceae51df656ac190c95 name: azuredisk-csi-driver @@ -264,7 +273,7 @@ entries: version: v1.20.0 - apiVersion: v1 appVersion: v1.19.0 - created: "2024-08-28T11:46:08.635837964Z" + created: "2024-10-10T02:58:06.407732555Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 6c044a33b4adf598b9810e8839f04a16b1214470eceeb61bbe48076552955296 name: azuredisk-csi-driver @@ -273,7 +282,7 @@ entries: version: v1.19.0 - apiVersion: v1 appVersion: v1.18.0 - created: "2024-08-28T11:46:08.634854912Z" + created: "2024-10-10T02:58:06.405969288Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 79474616c7373ed65bbf75050748fda16ae2f6b290d240813006abd74e733628 name: azuredisk-csi-driver @@ -282,7 +291,7 @@ entries: version: v1.18.0 - apiVersion: v1 appVersion: v1.17.0 - created: "2024-08-28T11:46:08.633822215Z" + created: "2024-10-10T02:58:06.404111564Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: dcaad8438f57941c19f2269d9d4510591529f4de00353d12506fd277dc06378e name: azuredisk-csi-driver @@ -291,7 +300,7 @@ entries: version: v1.17.0 - apiVersion: v1 appVersion: v1.16.0 - created: "2024-08-28T11:46:08.631961443Z" + created: "2024-10-10T02:58:06.402329053Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 95108dce3a4da8aad2729ff8bc1587906b917925e6fe2e5935b5d25805080fb4 name: azuredisk-csi-driver @@ -300,7 +309,7 @@ entries: version: v1.16.0 - apiVersion: v1 appVersion: v1.15.0 - created: "2024-08-28T11:46:08.630991022Z" + created: "2024-10-10T02:58:06.400580528Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 3da85b9206af81dc4217a3304bf14839158112300de7dbb95841e30daaf5e4e5 name: azuredisk-csi-driver @@ -309,7 +318,7 @@ entries: version: v1.15.0 - apiVersion: v1 appVersion: v1.14.0 - created: "2024-08-28T11:46:08.630021879Z" + created: "2024-10-10T02:58:06.398804622Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 89e87dead7767f8abd56096e436956b23a666802040f7aad91d5b6c36af8b098 name: azuredisk-csi-driver @@ -318,7 +327,7 @@ entries: version: v1.14.0 - apiVersion: v1 appVersion: v1.13.0 - created: "2024-08-28T11:46:08.628999635Z" + created: "2024-10-10T02:58:06.393848346Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: c109533218e0625e9ca33c2db5e73c4b550b88943f7950b33e02a344a8ff9f8c name: azuredisk-csi-driver @@ -327,7 +336,7 @@ entries: version: v1.13.0 - apiVersion: v1 appVersion: v1.12.0 - created: "2024-08-28T11:46:08.62806904Z" + created: "2024-10-10T02:58:06.391153893Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: e41f089e5216fc9263039310990d1e41bcb468a85879289af1834dea0c457aaa name: azuredisk-csi-driver @@ -336,7 +345,7 @@ entries: version: v1.12.0 - apiVersion: v1 appVersion: v1.11.0 - created: "2024-08-28T11:46:08.627108726Z" + created: "2024-10-10T02:58:06.383971153Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: f35447c256488b1942342e9fcf8b6bed5f47b4ae5fb0fdae037110c5926803fe name: azuredisk-csi-driver @@ -345,7 +354,7 @@ entries: version: v1.11.0 - apiVersion: v1 appVersion: v1.10.0 - created: "2024-08-28T11:46:08.625079664Z" + created: "2024-10-10T02:58:06.381787758Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 12bd0e1f20a2e2adcb04b6954423438d9ece7a2ad0fb4b4fe2969844d14cfb86 name: azuredisk-csi-driver @@ -354,7 +363,7 @@ entries: version: v1.10.0 - apiVersion: v1 appVersion: v1.9.0 - created: "2024-08-28T11:46:08.669486992Z" + created: "2024-10-10T02:58:06.525399998Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: d917427661ca4ec13add77efcfe31d2c7c989e20b1427dd566a05ad1bdd98fa9 name: azuredisk-csi-driver @@ -363,7 +372,7 @@ entries: version: v1.9.0 - apiVersion: v1 appVersion: v1.8.0 - created: "2024-08-28T11:46:08.668478264Z" + created: "2024-10-10T02:58:06.520172571Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: a37491e845671e81b9567f2d1a746dbf4f182fde0c8f9e689dfa632c5651c6c9 name: azuredisk-csi-driver @@ -372,7 +381,7 @@ entries: version: v1.8.0 - apiVersion: v1 appVersion: v1.7.0 - created: "2024-08-28T11:46:08.667658779Z" + created: "2024-10-10T02:58:06.51818492Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 4df7a10466206c60deab00efbca57f67f042afd1ecd5daca738df28526f3ffcc name: azuredisk-csi-driver @@ -381,7 +390,7 @@ entries: version: v1.7.0 - apiVersion: v1 appVersion: v1.6.0 - created: "2024-08-28T11:46:08.666938876Z" + created: "2024-10-10T02:58:06.516422026Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: b1a4c384fdfdb6577dd6dfd3709fb746b5c79247846e5c582b93c3a1187f6d88 name: azuredisk-csi-driver @@ -390,7 +399,7 @@ entries: version: v1.6.0 - apiVersion: v1 appVersion: v1.5.1 - created: "2024-08-28T11:46:08.666169992Z" + created: "2024-10-10T02:58:06.515082499Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: efb42e1d56cc5596eb4e695b658c2748bc05cc6c47862e3f20ea6b5b199d01d6 name: azuredisk-csi-driver @@ -399,7 +408,7 @@ entries: version: v1.5.1 - apiVersion: v1 appVersion: v1.5.0 - created: "2024-08-28T11:46:08.66443275Z" + created: "2024-10-10T02:58:06.513774323Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: c8490efde8d4a43bd25f5c619887498dfb4b41edf3929ac8dbf0a9d3f691e6ae name: azuredisk-csi-driver @@ -408,7 +417,7 @@ entries: version: v1.5.0 - apiVersion: v1 appVersion: v1.4.0 - created: "2024-08-28T11:46:08.663708503Z" + created: "2024-10-10T02:58:06.512418391Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 55e5e17aac7c144b21a198867654ef70ad272987b0bb165782905adf91ca3c03 name: azuredisk-csi-driver @@ -417,7 +426,7 @@ entries: version: v1.4.0 - apiVersion: v1 appVersion: v1.3.0 - created: "2024-08-28T11:46:08.663060134Z" + created: "2024-10-10T02:58:06.508499111Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 2665483e922a577feb8539ca7f774bc70c945ce490294fd3378f098c2d244dde name: azuredisk-csi-driver @@ -426,7 +435,7 @@ entries: version: v1.3.0 - apiVersion: v1 appVersion: v1.2.0 - created: "2024-08-28T11:46:08.636348711Z" + created: "2024-10-10T02:58:06.408640571Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 2bbfe2f9d080f1b3ff10590c7168d05ce026c5a73332b4d48014610a52337808 name: azuredisk-csi-driver @@ -435,7 +444,7 @@ entries: version: v1.2.0 - apiVersion: v1 appVersion: v1.1.1 - created: "2024-08-28T11:46:08.624064161Z" + created: "2024-10-10T02:58:06.379950793Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: dd7066be8f499f6c1a396ab27c0013c09f5a8d8319cc04fbdd480d31107bb851 name: azuredisk-csi-driver @@ -444,7 +453,7 @@ entries: version: v1.1.1 - apiVersion: v1 appVersion: v1.1.0 - created: "2024-08-28T11:46:08.623526557Z" + created: "2024-10-10T02:58:06.378926681Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 3d2a5189416dd6a43bd3e2097bbe23a8db347b6e1a36c6a43fd59cc9c9633ff3 name: azuredisk-csi-driver @@ -453,11 +462,11 @@ entries: version: v1.1.0 - apiVersion: v1 appVersion: v1.0.0 - created: "2024-08-28T11:46:08.622994692Z" + created: "2024-10-10T02:58:06.378222431Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: d179bc6f338518859b6efdc3b3bed8d06513313e8047563eb4b654b2d417c81e name: azuredisk-csi-driver urls: - https://raw.githubusercontent.com/kubernetes-sigs/azuredisk-csi-driver/master/charts/v1.0.0/azuredisk-csi-driver-v1.0.0.tgz version: v1.0.0 -generated: "2024-08-28T11:46:08.619322323Z" +generated: "2024-10-10T02:58:06.373446076Z" diff --git a/charts/latest/azuredisk-csi-driver-v1.29.10.tgz b/charts/latest/azuredisk-csi-driver-v1.29.10.tgz new file mode 100644 index 0000000000000000000000000000000000000000..bc344cd8350c7256ef3f3492dc041e4cb9533792 GIT binary patch literal 14707 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 Bz@`8I literal 0 HcmV?d00001 diff --git a/charts/latest/azuredisk-csi-driver-v1.29.9.tgz b/charts/latest/azuredisk-csi-driver-v1.29.9.tgz deleted file mode 100644 index 528886595d114b862af2fc131851b2f1f806e736..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14705 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 diff --git a/charts/latest/azuredisk-csi-driver/Chart.yaml b/charts/latest/azuredisk-csi-driver/Chart.yaml index f4bd2d677e..135174627f 100644 --- a/charts/latest/azuredisk-csi-driver/Chart.yaml +++ b/charts/latest/azuredisk-csi-driver/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v1 -appVersion: v1.29.9 +appVersion: v1.29.10 description: Azure disk Container Storage Interface (CSI) Storage Plugin name: azuredisk-csi-driver -version: v1.29.9 +version: v1.29.10 diff --git a/charts/latest/azuredisk-csi-driver/values.yaml b/charts/latest/azuredisk-csi-driver/values.yaml index c9710af7f3..de8b2fe0cb 100644 --- a/charts/latest/azuredisk-csi-driver/values.yaml +++ b/charts/latest/azuredisk-csi-driver/values.yaml @@ -2,7 +2,7 @@ image: baseRepo: mcr.microsoft.com azuredisk: repository: /oss/kubernetes-csi/azuredisk-csi - tag: v1.29.9 + tag: v1.29.10 pullPolicy: IfNotPresent csiProvisioner: repository: /oss/kubernetes-csi/csi-provisioner diff --git a/charts/v1.29.10/azuredisk-csi-driver-v1.29.10.tgz b/charts/v1.29.10/azuredisk-csi-driver-v1.29.10.tgz new file mode 100644 index 0000000000000000000000000000000000000000..bc344cd8350c7256ef3f3492dc041e4cb9533792 GIT binary patch literal 14707 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 Bz@`8I literal 0 HcmV?d00001 diff --git a/charts/v1.29.10/azuredisk-csi-driver/Chart.yaml b/charts/v1.29.10/azuredisk-csi-driver/Chart.yaml new file mode 100644 index 0000000000..135174627f --- /dev/null +++ b/charts/v1.29.10/azuredisk-csi-driver/Chart.yaml @@ -0,0 +1,5 @@ +apiVersion: v1 +appVersion: v1.29.10 +description: Azure disk Container Storage Interface (CSI) Storage Plugin +name: azuredisk-csi-driver +version: v1.29.10 diff --git a/charts/v1.29.10/azuredisk-csi-driver/templates/NOTES.txt b/charts/v1.29.10/azuredisk-csi-driver/templates/NOTES.txt new file mode 100644 index 0000000000..6a9695dad2 --- /dev/null +++ b/charts/v1.29.10/azuredisk-csi-driver/templates/NOTES.txt @@ -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 diff --git a/charts/v1.29.10/azuredisk-csi-driver/templates/_helpers.tpl b/charts/v1.29.10/azuredisk-csi-driver/templates/_helpers.tpl new file mode 100644 index 0000000000..51fcc8a092 --- /dev/null +++ b/charts/v1.29.10/azuredisk-csi-driver/templates/_helpers.tpl @@ -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 -}} \ No newline at end of file diff --git a/charts/v1.29.10/azuredisk-csi-driver/templates/crd-csi-snapshot.yaml b/charts/v1.29.10/azuredisk-csi-driver/templates/crd-csi-snapshot.yaml new file mode 100644 index 0000000000..76df8af7e9 --- /dev/null +++ b/charts/v1.29.10/azuredisk-csi-driver/templates/crd-csi-snapshot.yaml @@ -0,0 +1,840 @@ +{{- if .Values.snapshot.enabled -}} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.8.0 + api-approved.kubernetes.io: "https://github.com/kubernetes-csi/external-snapshotter/pull/665" + creationTimestamp: null + name: volumesnapshots.snapshot.storage.k8s.io +spec: + group: snapshot.storage.k8s.io + names: + kind: VolumeSnapshot + listKind: VolumeSnapshotList + plural: volumesnapshots + shortNames: + - vs + singular: volumesnapshot + scope: Namespaced + versions: + - additionalPrinterColumns: + - description: Indicates if the snapshot is ready to be used to restore a volume. + jsonPath: .status.readyToUse + name: ReadyToUse + type: boolean + - description: If a new snapshot needs to be created, this contains the name of + the source PVC from which this snapshot was (or will be) created. + jsonPath: .spec.source.persistentVolumeClaimName + name: SourcePVC + type: string + - description: If a snapshot already exists, this contains the name of the existing + VolumeSnapshotContent object representing the existing snapshot. + jsonPath: .spec.source.volumeSnapshotContentName + name: SourceSnapshotContent + type: string + - description: Represents the minimum size of volume required to rehydrate from + this snapshot. + jsonPath: .status.restoreSize + name: RestoreSize + type: string + - description: The name of the VolumeSnapshotClass requested by the VolumeSnapshot. + jsonPath: .spec.volumeSnapshotClassName + name: SnapshotClass + type: string + - description: Name of the VolumeSnapshotContent object to which the VolumeSnapshot + object intends to bind to. Please note that verification of binding actually + requires checking both VolumeSnapshot and VolumeSnapshotContent to ensure + both are pointing at each other. Binding MUST be verified prior to usage of + this object. + jsonPath: .status.boundVolumeSnapshotContentName + name: SnapshotContent + type: string + - description: Timestamp when the point-in-time snapshot was taken by the underlying + storage system. + jsonPath: .status.creationTime + name: CreationTime + type: date + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: VolumeSnapshot is a user's request for either creating a point-in-time + snapshot of a persistent volume, or binding to a pre-existing snapshot. + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the latest + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the client + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + spec: + description: 'spec defines the desired characteristics of a snapshot requested + by a user. More info: https://kubernetes.io/docs/concepts/storage/volume-snapshots#volumesnapshots + Required.' + properties: + source: + description: source specifies where a snapshot will be created from. + This field is immutable after creation. Required. + properties: + persistentVolumeClaimName: + description: persistentVolumeClaimName specifies the name of the + PersistentVolumeClaim object representing the volume from which + a snapshot should be created. This PVC is assumed to be in the + same namespace as the VolumeSnapshot object. This field should + be set if the snapshot does not exists, and needs to be created. + This field is immutable. + type: string + volumeSnapshotContentName: + description: volumeSnapshotContentName specifies the name of a + pre-existing VolumeSnapshotContent object representing an existing + volume snapshot. This field should be set if the snapshot already + exists and only needs a representation in Kubernetes. This field + is immutable. + type: string + type: object + oneOf: + - required: ["persistentVolumeClaimName"] + - required: ["volumeSnapshotContentName"] + volumeSnapshotClassName: + description: 'VolumeSnapshotClassName is the name of the VolumeSnapshotClass + requested by the VolumeSnapshot. VolumeSnapshotClassName may be + left nil to indicate that the default SnapshotClass should be used. + A given cluster may have multiple default Volume SnapshotClasses: + one default per CSI Driver. If a VolumeSnapshot does not specify + a SnapshotClass, VolumeSnapshotSource will be checked to figure + out what the associated CSI Driver is, and the default VolumeSnapshotClass + associated with that CSI Driver will be used. If more than one VolumeSnapshotClass + exist for a given CSI Driver and more than one have been marked + as default, CreateSnapshot will fail and generate an event. Empty + string is not allowed for this field.' + type: string + required: + - source + type: object + status: + description: status represents the current information of a snapshot. + Consumers must verify binding between VolumeSnapshot and VolumeSnapshotContent + objects is successful (by validating that both VolumeSnapshot and VolumeSnapshotContent + point at each other) before using this object. + properties: + boundVolumeSnapshotContentName: + description: 'boundVolumeSnapshotContentName is the name of the VolumeSnapshotContent + object to which this VolumeSnapshot object intends to bind to. If + not specified, it indicates that the VolumeSnapshot object has not + been successfully bound to a VolumeSnapshotContent object yet. NOTE: + To avoid possible security issues, consumers must verify binding + between VolumeSnapshot and VolumeSnapshotContent objects is successful + (by validating that both VolumeSnapshot and VolumeSnapshotContent + point at each other) before using this object.' + type: string + creationTime: + description: creationTime is the timestamp when the point-in-time + snapshot is taken by the underlying storage system. In dynamic snapshot + creation case, this field will be filled in by the snapshot controller + with the "creation_time" value returned from CSI "CreateSnapshot" + gRPC call. For a pre-existing snapshot, this field will be filled + with the "creation_time" value returned from the CSI "ListSnapshots" + gRPC call if the driver supports it. If not specified, it may indicate + that the creation time of the snapshot is unknown. + format: date-time + type: string + error: + description: error is the last observed error during snapshot creation, + if any. This field could be helpful to upper level controllers(i.e., + application controller) to decide whether they should continue on + waiting for the snapshot to be created based on the type of error + reported. The snapshot controller will keep retrying when an error + occurs during the snapshot creation. Upon success, this error field + will be cleared. + properties: + message: + description: 'message is a string detailing the encountered error + during snapshot creation if specified. NOTE: message may be + logged, and it should not contain sensitive information.' + type: string + time: + description: time is the timestamp when the error was encountered. + format: date-time + type: string + type: object + readyToUse: + description: readyToUse indicates if the snapshot is ready to be used + to restore a volume. In dynamic snapshot creation case, this field + will be filled in by the snapshot controller with the "ready_to_use" + value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing + snapshot, this field will be filled with the "ready_to_use" value + returned from the CSI "ListSnapshots" gRPC call if the driver supports + it, otherwise, this field will be set to "True". If not specified, + it means the readiness of a snapshot is unknown. + type: boolean + restoreSize: + type: string + description: restoreSize represents the minimum size of volume required + to create a volume from this snapshot. In dynamic snapshot creation + case, this field will be filled in by the snapshot controller with + the "size_bytes" value returned from CSI "CreateSnapshot" gRPC call. + For a pre-existing snapshot, this field will be filled with the + "size_bytes" value returned from the CSI "ListSnapshots" gRPC call + if the driver supports it. When restoring a volume from this snapshot, + the size of the volume MUST NOT be smaller than the restoreSize + if it is specified, otherwise the restoration will fail. If not + specified, it indicates that the size is unknown. + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + required: + - spec + type: object + served: true + storage: true + subresources: + status: {} + - additionalPrinterColumns: + - description: Indicates if the snapshot is ready to be used to restore a volume. + jsonPath: .status.readyToUse + name: ReadyToUse + type: boolean + - description: If a new snapshot needs to be created, this contains the name of the source PVC from which this snapshot was (or will be) created. + jsonPath: .spec.source.persistentVolumeClaimName + name: SourcePVC + type: string + - description: If a snapshot already exists, this contains the name of the existing VolumeSnapshotContent object representing the existing snapshot. + jsonPath: .spec.source.volumeSnapshotContentName + name: SourceSnapshotContent + type: string + - description: Represents the minimum size of volume required to rehydrate from this snapshot. + jsonPath: .status.restoreSize + name: RestoreSize + type: string + - description: The name of the VolumeSnapshotClass requested by the VolumeSnapshot. + jsonPath: .spec.volumeSnapshotClassName + name: SnapshotClass + type: string + - description: Name of the VolumeSnapshotContent object to which the VolumeSnapshot object intends to bind to. Please note that verification of binding actually requires checking both VolumeSnapshot and VolumeSnapshotContent to ensure both are pointing at each other. Binding MUST be verified prior to usage of this object. + jsonPath: .status.boundVolumeSnapshotContentName + name: SnapshotContent + type: string + - description: Timestamp when the point-in-time snapshot was taken by the underlying storage system. + jsonPath: .status.creationTime + name: CreationTime + type: date + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1beta1 + # This indicates the v1beta1 version of the custom resource is deprecated. + # API requests to this version receive a warning in the server response. + deprecated: true + # This overrides the default warning returned to clients making v1beta1 API requests. + deprecationWarning: "snapshot.storage.k8s.io/v1beta1 VolumeSnapshot is deprecated; use snapshot.storage.k8s.io/v1 VolumeSnapshot" + schema: + openAPIV3Schema: + description: VolumeSnapshot is a user's request for either creating a point-in-time snapshot of a persistent volume, or binding to a pre-existing snapshot. + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + spec: + description: 'spec defines the desired characteristics of a snapshot requested by a user. More info: https://kubernetes.io/docs/concepts/storage/volume-snapshots#volumesnapshots Required.' + properties: + source: + description: source specifies where a snapshot will be created from. This field is immutable after creation. Required. + properties: + persistentVolumeClaimName: + description: persistentVolumeClaimName specifies the name of the PersistentVolumeClaim object representing the volume from which a snapshot should be created. This PVC is assumed to be in the same namespace as the VolumeSnapshot object. This field should be set if the snapshot does not exists, and needs to be created. This field is immutable. + type: string + volumeSnapshotContentName: + description: volumeSnapshotContentName specifies the name of a pre-existing VolumeSnapshotContent object representing an existing volume snapshot. This field should be set if the snapshot already exists and only needs a representation in Kubernetes. This field is immutable. + type: string + type: object + volumeSnapshotClassName: + description: 'VolumeSnapshotClassName is the name of the VolumeSnapshotClass requested by the VolumeSnapshot. VolumeSnapshotClassName may be left nil to indicate that the default SnapshotClass should be used. A given cluster may have multiple default Volume SnapshotClasses: one default per CSI Driver. If a VolumeSnapshot does not specify a SnapshotClass, VolumeSnapshotSource will be checked to figure out what the associated CSI Driver is, and the default VolumeSnapshotClass associated with that CSI Driver will be used. If more than one VolumeSnapshotClass exist for a given CSI Driver and more than one have been marked as default, CreateSnapshot will fail and generate an event. Empty string is not allowed for this field.' + type: string + required: + - source + type: object + status: + description: status represents the current information of a snapshot. Consumers must verify binding between VolumeSnapshot and VolumeSnapshotContent objects is successful (by validating that both VolumeSnapshot and VolumeSnapshotContent point at each other) before using this object. + properties: + boundVolumeSnapshotContentName: + description: 'boundVolumeSnapshotContentName is the name of the VolumeSnapshotContent object to which this VolumeSnapshot object intends to bind to. If not specified, it indicates that the VolumeSnapshot object has not been successfully bound to a VolumeSnapshotContent object yet. NOTE: To avoid possible security issues, consumers must verify binding between VolumeSnapshot and VolumeSnapshotContent objects is successful (by validating that both VolumeSnapshot and VolumeSnapshotContent point at each other) before using this object.' + type: string + creationTime: + description: creationTime is the timestamp when the point-in-time snapshot is taken by the underlying storage system. In dynamic snapshot creation case, this field will be filled in by the snapshot controller with the "creation_time" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "creation_time" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it. If not specified, it may indicate that the creation time of the snapshot is unknown. + format: date-time + type: string + error: + description: error is the last observed error during snapshot creation, if any. This field could be helpful to upper level controllers(i.e., application controller) to decide whether they should continue on waiting for the snapshot to be created based on the type of error reported. The snapshot controller will keep retrying when an error occurs during the snapshot creation. Upon success, this error field will be cleared. + properties: + message: + description: 'message is a string detailing the encountered error during snapshot creation if specified. NOTE: message may be logged, and it should not contain sensitive information.' + type: string + time: + description: time is the timestamp when the error was encountered. + format: date-time + type: string + type: object + readyToUse: + description: readyToUse indicates if the snapshot is ready to be used to restore a volume. In dynamic snapshot creation case, this field will be filled in by the snapshot controller with the "ready_to_use" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "ready_to_use" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it, otherwise, this field will be set to "True". If not specified, it means the readiness of a snapshot is unknown. + type: boolean + restoreSize: + type: string + description: restoreSize represents the minimum size of volume required to create a volume from this snapshot. In dynamic snapshot creation case, this field will be filled in by the snapshot controller with the "size_bytes" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "size_bytes" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it. When restoring a volume from this snapshot, the size of the volume MUST NOT be smaller than the restoreSize if it is specified, otherwise the restoration will fail. If not specified, it indicates that the size is unknown. + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + required: + - spec + type: object + served: false + storage: false + subresources: + status: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.8.0 + api-approved.kubernetes.io: "https://github.com/kubernetes-csi/external-snapshotter/pull/665" + creationTimestamp: null + name: volumesnapshotclasses.snapshot.storage.k8s.io +spec: + group: snapshot.storage.k8s.io + names: + kind: VolumeSnapshotClass + listKind: VolumeSnapshotClassList + plural: volumesnapshotclasses + shortNames: + - vsclass + - vsclasses + singular: volumesnapshotclass + scope: Cluster + versions: + - additionalPrinterColumns: + - jsonPath: .driver + name: Driver + type: string + - description: Determines whether a VolumeSnapshotContent created through the + VolumeSnapshotClass should be deleted when its bound VolumeSnapshot is deleted. + jsonPath: .deletionPolicy + name: DeletionPolicy + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: VolumeSnapshotClass specifies parameters that a underlying storage + system uses when creating a volume snapshot. A specific VolumeSnapshotClass + is used by specifying its name in a VolumeSnapshot object. VolumeSnapshotClasses + are non-namespaced + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the latest + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + deletionPolicy: + description: deletionPolicy determines whether a VolumeSnapshotContent + created through the VolumeSnapshotClass should be deleted when its bound + VolumeSnapshot is deleted. Supported values are "Retain" and "Delete". + "Retain" means that the VolumeSnapshotContent and its physical snapshot + on underlying storage system are kept. "Delete" means that the VolumeSnapshotContent + and its physical snapshot on underlying storage system are deleted. + Required. + enum: + - Delete + - Retain + type: string + driver: + description: driver is the name of the storage driver that handles this + VolumeSnapshotClass. Required. + type: string + kind: + description: 'Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the client + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + parameters: + additionalProperties: + type: string + description: parameters is a key-value map with storage driver specific + parameters for creating snapshots. These values are opaque to Kubernetes. + type: object + required: + - deletionPolicy + - driver + type: object + served: true + storage: true + subresources: {} + - additionalPrinterColumns: + - jsonPath: .driver + name: Driver + type: string + - description: Determines whether a VolumeSnapshotContent created through the VolumeSnapshotClass should be deleted when its bound VolumeSnapshot is deleted. + jsonPath: .deletionPolicy + name: DeletionPolicy + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1beta1 + # This indicates the v1beta1 version of the custom resource is deprecated. + # API requests to this version receive a warning in the server response. + deprecated: true + # This overrides the default warning returned to clients making v1beta1 API requests. + deprecationWarning: "snapshot.storage.k8s.io/v1beta1 VolumeSnapshotClass is deprecated; use snapshot.storage.k8s.io/v1 VolumeSnapshotClass" + schema: + openAPIV3Schema: + description: VolumeSnapshotClass specifies parameters that a underlying storage system uses when creating a volume snapshot. A specific VolumeSnapshotClass is used by specifying its name in a VolumeSnapshot object. VolumeSnapshotClasses are non-namespaced + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + deletionPolicy: + description: deletionPolicy determines whether a VolumeSnapshotContent created through the VolumeSnapshotClass should be deleted when its bound VolumeSnapshot is deleted. Supported values are "Retain" and "Delete". "Retain" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are kept. "Delete" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are deleted. Required. + enum: + - Delete + - Retain + type: string + driver: + description: driver is the name of the storage driver that handles this VolumeSnapshotClass. Required. + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + parameters: + additionalProperties: + type: string + description: parameters is a key-value map with storage driver specific parameters for creating snapshots. These values are opaque to Kubernetes. + type: object + required: + - deletionPolicy + - driver + type: object + served: false + storage: false + subresources: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.8.0 + api-approved.kubernetes.io: "https://github.com/kubernetes-csi/external-snapshotter/pull/665" + creationTimestamp: null + name: volumesnapshotcontents.snapshot.storage.k8s.io +spec: + group: snapshot.storage.k8s.io + names: + kind: VolumeSnapshotContent + listKind: VolumeSnapshotContentList + plural: volumesnapshotcontents + shortNames: + - vsc + - vscs + singular: volumesnapshotcontent + scope: Cluster + versions: + - additionalPrinterColumns: + - description: Indicates if the snapshot is ready to be used to restore a volume. + jsonPath: .status.readyToUse + name: ReadyToUse + type: boolean + - description: Represents the complete size of the snapshot in bytes + jsonPath: .status.restoreSize + name: RestoreSize + type: integer + - description: Determines whether this VolumeSnapshotContent and its physical + snapshot on the underlying storage system should be deleted when its bound + VolumeSnapshot is deleted. + jsonPath: .spec.deletionPolicy + name: DeletionPolicy + type: string + - description: Name of the CSI driver used to create the physical snapshot on + the underlying storage system. + jsonPath: .spec.driver + name: Driver + type: string + - description: Name of the VolumeSnapshotClass to which this snapshot belongs. + jsonPath: .spec.volumeSnapshotClassName + name: VolumeSnapshotClass + type: string + - description: Name of the VolumeSnapshot object to which this VolumeSnapshotContent + object is bound. + jsonPath: .spec.volumeSnapshotRef.name + name: VolumeSnapshot + type: string + - description: Namespace of the VolumeSnapshot object to which this VolumeSnapshotContent object is bound. + jsonPath: .spec.volumeSnapshotRef.namespace + name: VolumeSnapshotNamespace + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: VolumeSnapshotContent represents the actual "on-disk" snapshot + object in the underlying storage system + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the latest + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the client + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + spec: + description: spec defines properties of a VolumeSnapshotContent created + by the underlying storage system. Required. + properties: + deletionPolicy: + description: deletionPolicy determines whether this VolumeSnapshotContent + and its physical snapshot on the underlying storage system should + be deleted when its bound VolumeSnapshot is deleted. Supported values + are "Retain" and "Delete". "Retain" means that the VolumeSnapshotContent + and its physical snapshot on underlying storage system are kept. + "Delete" means that the VolumeSnapshotContent and its physical snapshot + on underlying storage system are deleted. For dynamically provisioned + snapshots, this field will automatically be filled in by the CSI + snapshotter sidecar with the "DeletionPolicy" field defined in the + corresponding VolumeSnapshotClass. For pre-existing snapshots, users + MUST specify this field when creating the VolumeSnapshotContent + object. Required. + enum: + - Delete + - Retain + type: string + driver: + description: driver is the name of the CSI driver used to create the + physical snapshot on the underlying storage system. This MUST be + the same as the name returned by the CSI GetPluginName() call for + that driver. Required. + type: string + source: + description: source specifies whether the snapshot is (or should be) + dynamically provisioned or already exists, and just requires a Kubernetes + object representation. This field is immutable after creation. Required. + properties: + snapshotHandle: + description: snapshotHandle specifies the CSI "snapshot_id" of + a pre-existing snapshot on the underlying storage system for + which a Kubernetes object representation was (or should be) + created. This field is immutable. + type: string + volumeHandle: + description: volumeHandle specifies the CSI "volume_id" of the + volume from which a snapshot should be dynamically taken from. + This field is immutable. + type: string + type: object + oneOf: + - required: ["snapshotHandle"] + - required: ["volumeHandle"] + sourceVolumeMode: + description: SourceVolumeMode is the mode of the volume whose snapshot + is taken. Can be either “Filesystem” or “Block”. If not specified, + it indicates the source volume's mode is unknown. This field is + immutable. This field is an alpha field. + type: string + volumeSnapshotClassName: + description: name of the VolumeSnapshotClass from which this snapshot + was (or will be) created. Note that after provisioning, the VolumeSnapshotClass + may be deleted or recreated with different set of values, and as + such, should not be referenced post-snapshot creation. + type: string + volumeSnapshotRef: + description: volumeSnapshotRef specifies the VolumeSnapshot object + to which this VolumeSnapshotContent object is bound. VolumeSnapshot.Spec.VolumeSnapshotContentName + field must reference to this VolumeSnapshotContent's name for the + bidirectional binding to be valid. For a pre-existing VolumeSnapshotContent + object, name and namespace of the VolumeSnapshot object MUST be + provided for binding to happen. This field is immutable after creation. + Required. + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: 'If referring to a piece of an object instead of + an entire object, this string should contain a valid JSON/Go + field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container within + a pod, this would take on a value like: "spec.containers{name}" + (where "name" refers to the name of the container that triggered + the event) or if no container name is specified "spec.containers[2]" + (container with index 2 in this pod). This syntax is chosen + only to have some well-defined way of referencing a part of + an object. TODO: this design is not final and this field is + subject to change in the future.' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + type: string + resourceVersion: + description: 'Specific resourceVersion to which this reference + is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + type: string + uid: + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + type: string + type: object + required: + - deletionPolicy + - driver + - source + - volumeSnapshotRef + type: object + status: + description: status represents the current information of a snapshot. + properties: + creationTime: + description: creationTime is the timestamp when the point-in-time + snapshot is taken by the underlying storage system. In dynamic snapshot + creation case, this field will be filled in by the CSI snapshotter + sidecar with the "creation_time" value returned from CSI "CreateSnapshot" + gRPC call. For a pre-existing snapshot, this field will be filled + with the "creation_time" value returned from the CSI "ListSnapshots" + gRPC call if the driver supports it. If not specified, it indicates + the creation time is unknown. The format of this field is a Unix + nanoseconds time encoded as an int64. On Unix, the command `date + +%s%N` returns the current time in nanoseconds since 1970-01-01 + 00:00:00 UTC. + format: int64 + type: integer + error: + description: error is the last observed error during snapshot creation, + if any. Upon success after retry, this error field will be cleared. + properties: + message: + description: 'message is a string detailing the encountered error + during snapshot creation if specified. NOTE: message may be + logged, and it should not contain sensitive information.' + type: string + time: + description: time is the timestamp when the error was encountered. + format: date-time + type: string + type: object + readyToUse: + description: readyToUse indicates if a snapshot is ready to be used + to restore a volume. In dynamic snapshot creation case, this field + will be filled in by the CSI snapshotter sidecar with the "ready_to_use" + value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing + snapshot, this field will be filled with the "ready_to_use" value + returned from the CSI "ListSnapshots" gRPC call if the driver supports + it, otherwise, this field will be set to "True". If not specified, + it means the readiness of a snapshot is unknown. + type: boolean + restoreSize: + description: restoreSize represents the complete size of the snapshot + in bytes. In dynamic snapshot creation case, this field will be + filled in by the CSI snapshotter sidecar with the "size_bytes" value + returned from CSI "CreateSnapshot" gRPC call. For a pre-existing + snapshot, this field will be filled with the "size_bytes" value + returned from the CSI "ListSnapshots" gRPC call if the driver supports + it. When restoring a volume from this snapshot, the size of the + volume MUST NOT be smaller than the restoreSize if it is specified, + otherwise the restoration will fail. If not specified, it indicates + that the size is unknown. + format: int64 + minimum: 0 + type: integer + snapshotHandle: + description: snapshotHandle is the CSI "snapshot_id" of a snapshot + on the underlying storage system. If not specified, it indicates + that dynamic snapshot creation has either failed or it is still + in progress. + type: string + type: object + required: + - spec + type: object + served: true + storage: true + subresources: + status: {} + - additionalPrinterColumns: + - description: Indicates if the snapshot is ready to be used to restore a volume. + jsonPath: .status.readyToUse + name: ReadyToUse + type: boolean + - description: Represents the complete size of the snapshot in bytes + jsonPath: .status.restoreSize + name: RestoreSize + type: integer + - description: Determines whether this VolumeSnapshotContent and its physical snapshot on the underlying storage system should be deleted when its bound VolumeSnapshot is deleted. + jsonPath: .spec.deletionPolicy + name: DeletionPolicy + type: string + - description: Name of the CSI driver used to create the physical snapshot on the underlying storage system. + jsonPath: .spec.driver + name: Driver + type: string + - description: Name of the VolumeSnapshotClass to which this snapshot belongs. + jsonPath: .spec.volumeSnapshotClassName + name: VolumeSnapshotClass + type: string + - description: Name of the VolumeSnapshot object to which this VolumeSnapshotContent object is bound. + jsonPath: .spec.volumeSnapshotRef.name + name: VolumeSnapshot + type: string + - description: Namespace of the VolumeSnapshot object to which this VolumeSnapshotContent object is bound. + jsonPath: .spec.volumeSnapshotRef.namespace + name: VolumeSnapshotNamespace + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1beta1 + # This indicates the v1beta1 version of the custom resource is deprecated. + # API requests to this version receive a warning in the server response. + deprecated: true + # This overrides the default warning returned to clients making v1beta1 API requests. + deprecationWarning: "snapshot.storage.k8s.io/v1beta1 VolumeSnapshotContent is deprecated; use snapshot.storage.k8s.io/v1 VolumeSnapshotContent" + schema: + openAPIV3Schema: + description: VolumeSnapshotContent represents the actual "on-disk" snapshot object in the underlying storage system + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + spec: + description: spec defines properties of a VolumeSnapshotContent created by the underlying storage system. Required. + properties: + deletionPolicy: + description: deletionPolicy determines whether this VolumeSnapshotContent and its physical snapshot on the underlying storage system should be deleted when its bound VolumeSnapshot is deleted. Supported values are "Retain" and "Delete". "Retain" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are kept. "Delete" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are deleted. For dynamically provisioned snapshots, this field will automatically be filled in by the CSI snapshotter sidecar with the "DeletionPolicy" field defined in the corresponding VolumeSnapshotClass. For pre-existing snapshots, users MUST specify this field when creating the VolumeSnapshotContent object. Required. + enum: + - Delete + - Retain + type: string + driver: + description: driver is the name of the CSI driver used to create the physical snapshot on the underlying storage system. This MUST be the same as the name returned by the CSI GetPluginName() call for that driver. Required. + type: string + source: + description: source specifies whether the snapshot is (or should be) dynamically provisioned or already exists, and just requires a Kubernetes object representation. This field is immutable after creation. Required. + properties: + snapshotHandle: + description: snapshotHandle specifies the CSI "snapshot_id" of a pre-existing snapshot on the underlying storage system for which a Kubernetes object representation was (or should be) created. This field is immutable. + type: string + volumeHandle: + description: volumeHandle specifies the CSI "volume_id" of the volume from which a snapshot should be dynamically taken from. This field is immutable. + type: string + type: object + volumeSnapshotClassName: + description: name of the VolumeSnapshotClass from which this snapshot was (or will be) created. Note that after provisioning, the VolumeSnapshotClass may be deleted or recreated with different set of values, and as such, should not be referenced post-snapshot creation. + type: string + volumeSnapshotRef: + description: volumeSnapshotRef specifies the VolumeSnapshot object to which this VolumeSnapshotContent object is bound. VolumeSnapshot.Spec.VolumeSnapshotContentName field must reference to this VolumeSnapshotContent's name for the bidirectional binding to be valid. For a pre-existing VolumeSnapshotContent object, name and namespace of the VolumeSnapshot object MUST be provided for binding to happen. This field is immutable after creation. Required. + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. TODO: this design is not final and this field is subject to change in the future.' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + type: string + resourceVersion: + description: 'Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + type: string + uid: + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + type: string + type: object + required: + - deletionPolicy + - driver + - source + - volumeSnapshotRef + type: object + status: + description: status represents the current information of a snapshot. + properties: + creationTime: + description: creationTime is the timestamp when the point-in-time snapshot is taken by the underlying storage system. In dynamic snapshot creation case, this field will be filled in by the CSI snapshotter sidecar with the "creation_time" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "creation_time" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it. If not specified, it indicates the creation time is unknown. The format of this field is a Unix nanoseconds time encoded as an int64. On Unix, the command `date +%s%N` returns the current time in nanoseconds since 1970-01-01 00:00:00 UTC. + format: int64 + type: integer + error: + description: error is the last observed error during snapshot creation, if any. Upon success after retry, this error field will be cleared. + properties: + message: + description: 'message is a string detailing the encountered error during snapshot creation if specified. NOTE: message may be logged, and it should not contain sensitive information.' + type: string + time: + description: time is the timestamp when the error was encountered. + format: date-time + type: string + type: object + readyToUse: + description: readyToUse indicates if a snapshot is ready to be used to restore a volume. In dynamic snapshot creation case, this field will be filled in by the CSI snapshotter sidecar with the "ready_to_use" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "ready_to_use" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it, otherwise, this field will be set to "True". If not specified, it means the readiness of a snapshot is unknown. + type: boolean + restoreSize: + description: restoreSize represents the complete size of the snapshot in bytes. In dynamic snapshot creation case, this field will be filled in by the CSI snapshotter sidecar with the "size_bytes" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "size_bytes" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it. When restoring a volume from this snapshot, the size of the volume MUST NOT be smaller than the restoreSize if it is specified, otherwise the restoration will fail. If not specified, it indicates that the size is unknown. + format: int64 + minimum: 0 + type: integer + snapshotHandle: + description: snapshotHandle is the CSI "snapshot_id" of a snapshot on the underlying storage system. If not specified, it indicates that dynamic snapshot creation has either failed or it is still in progress. + type: string + type: object + required: + - spec + type: object + served: false + storage: false + subresources: + status: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] +{{- end -}} diff --git a/charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-controller.yaml b/charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-controller.yaml new file mode 100644 index 0000000000..3d5aaaca83 --- /dev/null +++ b/charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-controller.yaml @@ -0,0 +1,328 @@ +kind: Deployment +apiVersion: apps/v1 +metadata: + name: {{ .Values.controller.name }} + namespace: {{ .Release.Namespace }} +{{ include "azuredisk.labels" . | indent 2 }} +{{- with .Values.controller.labels }} +{{ . | toYaml | indent 4 }} +{{- end }} +{{- with .Values.controller.annotations }} + annotations: +{{ . | toYaml | indent 4 }} +{{- end }} +spec: + replicas: {{ .Values.controller.replicas }} + selector: + matchLabels: + app: {{ .Values.controller.name }} + template: + metadata: +{{ include "azuredisk.labels" . | indent 6 }} + app: {{ .Values.controller.name }} + {{- if .Values.workloadIdentity.clientID }} + azure.workload.identity/use: "true" + {{- end }} +{{- with .Values.controller.podLabels }} +{{ toYaml . | indent 8 }} +{{- end }} +{{- with .Values.controller.podAnnotations }} + annotations: +{{ toYaml . | indent 8 }} +{{- end }} + spec: + {{- if .Values.imagePullSecrets }} + imagePullSecrets: +{{ toYaml .Values.imagePullSecrets | indent 8 }} + {{- end }} + hostNetwork: {{ .Values.controller.hostNetwork }} + serviceAccountName: {{ .Values.serviceAccount.controller }} + nodeSelector: + kubernetes.io/os: linux +{{- with .Values.controller.nodeSelector }} +{{ toYaml . | indent 8 }} +{{- end }} + {{- if .Values.controller.runOnMaster}} + node-role.kubernetes.io/master: "" + {{- end}} + {{- if .Values.controller.runOnControlPlane}} + node-role.kubernetes.io/control-plane: "" + {{- end}} + priorityClassName: system-cluster-critical + securityContext: + seccompProfile: + type: RuntimeDefault +{{- with .Values.controller.tolerations }} + tolerations: +{{ toYaml . | indent 8 }} +{{- end }} +{{- with .Values.controller.affinity }} + affinity: +{{ toYaml . | indent 8 }} +{{- end }} + {{- include "azuredisk.pullSecrets" . | indent 6 }} + containers: + - name: csi-provisioner +{{- if hasPrefix "/" .Values.image.csiProvisioner.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.csiProvisioner.repository }}:{{ .Values.image.csiProvisioner.tag }}" +{{- else }} + image: "{{ .Values.image.csiProvisioner.repository }}:{{ .Values.image.csiProvisioner.tag }}" +{{- end }} + args: + - "--feature-gates=Topology=true,HonorPVReclaimPolicy=true" + - "--csi-address=$(ADDRESS)" + - "--v=2" + - "--timeout=30s" + - "--leader-election" + - "--leader-election-namespace={{ .Release.Namespace }}" + - "--worker-threads={{ .Values.controller.provisionerWorkerThreads }}" + - "--extra-create-metadata=true" + - "--strict-topology=true" + - "--kube-api-qps=50" + - "--kube-api-burst=100" + env: + - name: ADDRESS + value: /csi/csi.sock + volumeMounts: + - mountPath: /csi + name: socket-dir + resources: {{- toYaml .Values.controller.resources.csiProvisioner | nindent 12 }} + securityContext: + capabilities: + drop: + - ALL + - name: csi-attacher +{{- if hasPrefix "/" .Values.image.csiAttacher.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.csiAttacher.repository }}:{{ .Values.image.csiAttacher.tag }}" +{{- else }} + image: "{{ .Values.image.csiAttacher.repository }}:{{ .Values.image.csiAttacher.tag }}" +{{- end }} + args: + - "-v=2" + - "-csi-address=$(ADDRESS)" + - "-timeout=1200s" + - "-leader-election" + - "--leader-election-namespace={{ .Release.Namespace }}" + - "-worker-threads={{ .Values.controller.attacherWorkerThreads }}" + - "-kube-api-qps=200" + - "-kube-api-burst=400" + env: + - name: ADDRESS + value: /csi/csi.sock + volumeMounts: + - mountPath: /csi + name: socket-dir + resources: {{- toYaml .Values.controller.resources.csiAttacher | nindent 12 }} + securityContext: + capabilities: + drop: + - ALL + - name: csi-snapshotter +{{- if hasPrefix "/" .Values.snapshot.image.csiSnapshotter.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.snapshot.image.csiSnapshotter.repository }}:{{ .Values.snapshot.image.csiSnapshotter.tag }}" +{{- else }} + image: "{{ .Values.snapshot.image.csiSnapshotter.repository }}:{{ .Values.snapshot.image.csiSnapshotter.tag }}" +{{- end }} + args: + - "-csi-address=$(ADDRESS)" + - "-leader-election" + - "--leader-election-namespace={{ .Release.Namespace }}" + - "-v=2" + - "--timeout=1200s" + env: + - name: ADDRESS + value: /csi/csi.sock + volumeMounts: + - name: socket-dir + mountPath: /csi + resources: {{- toYaml .Values.controller.resources.csiSnapshotter | nindent 12 }} + securityContext: + capabilities: + drop: + - ALL + - name: csi-resizer +{{- if hasPrefix "/" .Values.image.csiResizer.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.csiResizer.repository }}:{{ .Values.image.csiResizer.tag }}" +{{- else }} + image: "{{ .Values.image.csiResizer.repository }}:{{ .Values.image.csiResizer.tag }}" +{{- end }} + args: + - "-csi-address=$(ADDRESS)" + - "-v=2" + - "-leader-election" + - "--leader-election-namespace={{ .Release.Namespace }}" + - '-handle-volume-inuse-error=false' + - '-feature-gates=RecoverVolumeExpansionFailure=true' + - "-timeout=240s" + env: + - name: ADDRESS + value: /csi/csi.sock + volumeMounts: + - name: socket-dir + mountPath: /csi + resources: {{- toYaml .Values.controller.resources.csiResizer | nindent 12 }} + securityContext: + capabilities: + drop: + - ALL + - name: liveness-probe +{{- if hasPrefix "/" .Values.image.livenessProbe.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.livenessProbe.repository }}:{{ .Values.image.livenessProbe.tag }}" +{{- else }} + image: "{{ .Values.image.livenessProbe.repository }}:{{ .Values.image.livenessProbe.tag }}" +{{- end }} + args: + - --csi-address=/csi/csi.sock + - --probe-timeout=3s +{{- if eq .Values.controller.hostNetwork true }} + - --http-endpoint=localhost:{{ .Values.controller.livenessProbe.healthPort }} +{{- else }} + - --health-port={{ .Values.controller.livenessProbe.healthPort }} +{{- end }} + - --v=2 + volumeMounts: + - name: socket-dir + mountPath: /csi + resources: {{- toYaml .Values.controller.resources.livenessProbe | nindent 12 }} + securityContext: + capabilities: + drop: + - ALL +{{- if eq .Values.controller.enableTrafficManager true }} + - image: mcr.microsoft.com/aks/ccp/ccp-auto-thrust:master.221118.2 + imagePullPolicy: IfNotPresent + name: proxy + command: + - /ccp-auto-thrust + args: + - "--port={{ .Values.controller.trafficManagerPort }}" + ports: + - containerPort: {{ .Values.controller.trafficManagerPort }} + protocol: TCP + securityContext: + capabilities: + drop: + - ALL +{{- end }} + - name: azuredisk +{{- if hasPrefix "/" .Values.image.azuredisk.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.azuredisk.repository }}:{{ .Values.image.azuredisk.tag }}" +{{- else }} + image: "{{ .Values.image.azuredisk.repository }}:{{ .Values.image.azuredisk.tag }}" +{{- end }} + args: + - "--v={{ .Values.controller.logLevel }}" + - "--endpoint=$(CSI_ENDPOINT)" + - "--metrics-address=0.0.0.0:{{ .Values.controller.metricsPort }}" + - "--disable-avset-nodes={{ .Values.controller.disableAvailabilitySetNodes }}" + - "--vm-type={{ .Values.controller.vmType }}" + - "--drivername={{ .Values.driver.name }}" + - "--cloud-config-secret-name={{ .Values.controller.cloudConfigSecretName }}" + - "--cloud-config-secret-namespace={{ .Values.controller.cloudConfigSecretNamespace }}" + - "--custom-user-agent={{ .Values.driver.customUserAgent }}" + - "--user-agent-suffix={{ .Values.driver.userAgentSuffix }}" + - "--allow-empty-cloud-config={{ .Values.controller.allowEmptyCloudConfig }}" + - "--vmss-cache-ttl-seconds={{ .Values.controller.vmssCacheTTLInSeconds }}" + - "--enable-traffic-manager={{ .Values.controller.enableTrafficManager }}" + - "--traffic-manager-port={{ .Values.controller.trafficManagerPort }}" + - "--enable-otel-tracing={{ .Values.controller.otelTracing.enabled }}" + - "--check-disk-lun-collision=true" + ports: + - containerPort: {{ .Values.controller.metricsPort }} + name: metrics + protocol: TCP +{{- if ne .Values.controller.hostNetwork true }} + - containerPort: {{ .Values.controller.livenessProbe.healthPort }} + name: healthz + protocol: TCP +{{- end }} + livenessProbe: + failureThreshold: 5 + httpGet: + path: /healthz +{{- if eq .Values.controller.hostNetwork true }} + host: localhost + port: {{ .Values.controller.livenessProbe.healthPort }} +{{- else }} + port: healthz +{{- end }} + initialDelaySeconds: 30 + timeoutSeconds: 10 + periodSeconds: 30 + env: + - name: AZURE_CREDENTIAL_FILE + valueFrom: + configMapKeyRef: + name: {{ .Values.azureCredentialFileConfigMap }} + key: path + optional: true + - name: CSI_ENDPOINT + value: unix:///csi/csi.sock + {{- if ne .Values.driver.httpsProxy "" }} + - name: HTTPS_PROXY + value: {{ .Values.driver.httpsProxy }} + {{- end }} + {{- if ne .Values.driver.httpProxy "" }} + - name: HTTP_PROXY + value: {{ .Values.driver.httpProxy }} + {{- end }} + {{- if ne .Values.driver.noProxy "" }} + - name: NO_PROXY + value: {{ .Values.driver.noProxy }} + {{- end }} + - name: AZURE_GO_SDK_LOG_LEVEL + value: {{ .Values.driver.azureGoSDKLogLevel }} + {{- if eq .Values.cloud "AzureStackCloud" }} + - name: AZURE_ENVIRONMENT_FILEPATH + value: /etc/kubernetes/azurestackcloud.json + {{- end }} + {{- if .Values.controller.otelTracing.enabled }} + - name: OTEL_SERVICE_NAME + value: {{ .Values.controller.otelTracing.otelServiceName }} + - name: OTEL_EXPORTER_OTLP_ENDPOINT + value: {{ .Values.controller.otelTracing.otelExporterEndpoint }} + {{- end }} + imagePullPolicy: {{ .Values.image.azuredisk.pullPolicy }} + volumeMounts: + - mountPath: /csi + name: socket-dir + - mountPath: /etc/kubernetes/ + name: azure-cred + {{- if eq .Values.cloud "AzureStackCloud" }} + - name: ssl + mountPath: /etc/ssl/certs + readOnly: true + {{- end }} + {{- if eq .Values.linux.distro "fedora" }} + - name: ssl + mountPath: /etc/ssl/certs + readOnly: true + - name: ssl-pki + mountPath: /etc/pki/ca-trust/extracted + readOnly: true + {{- end }} + resources: {{- toYaml .Values.controller.resources.azuredisk | nindent 12 }} + securityContext: + capabilities: + drop: + - ALL + volumes: + - name: socket-dir + emptyDir: {} + - name: azure-cred + hostPath: + path: /etc/kubernetes/ + type: DirectoryOrCreate + {{- if eq .Values.cloud "AzureStackCloud" }} + - name: ssl + hostPath: + path: /etc/ssl/certs + {{- end }} + {{- if eq .Values.linux.distro "fedora" }} + - name: ssl + hostPath: + path: /etc/ssl/certs + - name: ssl-pki + hostPath: + path: /etc/pki/ca-trust/extracted + {{- end }} diff --git a/charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-driver.yaml b/charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-driver.yaml new file mode 100644 index 0000000000..21f941748e --- /dev/null +++ b/charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-driver.yaml @@ -0,0 +1,13 @@ +apiVersion: storage.k8s.io/v1 +kind: CSIDriver +metadata: + name: {{ .Values.driver.name }} + annotations: + csiDriver: "{{ .Values.image.azuredisk.tag }}" + snapshot: "{{ .Values.snapshot.image.csiSnapshotter.tag }}" +spec: + attachRequired: true + podInfoOnMount: false + {{- if .Values.feature.enableFSGroupPolicy}} + fsGroupPolicy: File + {{- end}} diff --git a/charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-node-windows-hostprocess.yaml b/charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-node-windows-hostprocess.yaml new file mode 100644 index 0000000000..fe7be5ba4c --- /dev/null +++ b/charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-node-windows-hostprocess.yaml @@ -0,0 +1,174 @@ +{{- if and (.Values.windows.enabled) (eq .Values.windows.useHostProcessContainers true) }} +kind: DaemonSet +apiVersion: apps/v1 +metadata: + name: {{ .Values.windows.dsName }} + namespace: {{ .Release.Namespace }} +{{ include "azuredisk.labels" . | indent 2 }} +{{- with .Values.windows.labels }} +{{ . | toYaml | indent 4 }} +{{- end }} +{{- with .Values.windows.annotations }} + annotations: +{{ . | toYaml | indent 4 }} +{{- end }} +spec: + updateStrategy: + rollingUpdate: + maxUnavailable: {{ .Values.node.maxUnavailable }} + type: RollingUpdate + selector: + matchLabels: + app: {{ .Values.windows.dsName }} + template: + metadata: +{{ include "azuredisk.labels" . | indent 6 }} + app: {{ .Values.windows.dsName }} +{{- with .Values.windows.podLabels }} +{{ toYaml . | indent 8 }} +{{- end }} +{{- with .Values.windows.podAnnotations }} + annotations: +{{ toYaml . | indent 8 }} +{{- end }} + spec: + serviceAccountName: {{ .Values.serviceAccount.node }} +{{- with .Values.windows.tolerations }} + tolerations: +{{ toYaml . | indent 8 }} +{{- end }} + nodeSelector: + kubernetes.io/os: windows +{{- with .Values.windows.nodeSelector }} +{{ toYaml . | indent 8 }} +{{- end }} + affinity: +{{- with .Values.windows.affinity }} +{{ toYaml . | indent 8 }} +{{- end }} + nodeAffinity: +{{ toYaml .Values.windows.nodeAffinity | indent 10 }} + priorityClassName: system-node-critical + {{- include "azuredisk.pullSecrets" . | indent 6 }} + securityContext: + seccompProfile: + type: RuntimeDefault + windowsOptions: + hostProcess: true + runAsUserName: "NT AUTHORITY\\SYSTEM" + hostNetwork: true + initContainers: + - name: init +{{- if hasPrefix "/" .Values.image.azuredisk.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.azuredisk.repository }}:{{ .Values.image.azuredisk.tag }}-windows-hp" +{{- else }} + image: "{{ .Values.image.azuredisk.repository }}:{{ .Values.image.azuredisk.tag }}-windows-hp" +{{- end }} + imagePullPolicy: {{ .Values.image.azuredisk.pullPolicy }} + command: + - "powershell.exe" + - "-c" + - "New-Item -ItemType Directory -Path C:\\var\\lib\\kubelet\\plugins\\{{ .Values.driver.name }}\\ -Force" + securityContext: + capabilities: + drop: + - ALL + containers: + - name: node-driver-registrar +{{- if hasPrefix "/" .Values.image.nodeDriverRegistrar.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.nodeDriverRegistrar.repository }}:{{ .Values.image.nodeDriverRegistrar.tag }}" +{{- else }} + image: "{{ .Values.image.nodeDriverRegistrar.repository }}:{{ .Values.image.nodeDriverRegistrar.tag }}" +{{- end }} + command: + - "csi-node-driver-registrar.exe" + args: + - "--csi-address=$(CSI_ENDPOINT)" + - "--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)" + - "--plugin-registration-path=$(PLUGIN_REG_DIR)" + - "--v=2" + env: + - name: CSI_ENDPOINT + value: unix://{{ .Values.windows.kubelet }}\plugins\{{ .Values.driver.name }}\csi.sock + - name: DRIVER_REG_SOCK_PATH + value: C:\\var\\lib\\kubelet\\plugins\\{{ .Values.driver.name }}\\csi.sock + - name: PLUGIN_REG_DIR + value: C:\\var\\lib\\kubelet\\plugins_registry\\ + - name: KUBE_NODE_NAME + valueFrom: + fieldRef: + fieldPath: spec.nodeName + imagePullPolicy: {{ .Values.image.nodeDriverRegistrar.pullPolicy }} + resources: {{- toYaml .Values.windows.resources.nodeDriverRegistrar | nindent 12 }} + securityContext: + capabilities: + drop: + - ALL + - name: azuredisk +{{- if hasPrefix "/" .Values.image.azuredisk.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.azuredisk.repository }}:{{ .Values.image.azuredisk.tag }}-windows-hp" +{{- else }} + image: "{{ .Values.image.azuredisk.repository }}:{{ .Values.image.azuredisk.tag }}-windows-hp" +{{- end }} + command: + - "azurediskplugin.exe" + args: + - "--v={{ .Values.node.logLevel }}" + - "--endpoint=$(CSI_ENDPOINT)" + - "--nodeid=$(KUBE_NODE_NAME)" + - "--drivername={{ .Values.driver.name }}" + - "--volume-attach-limit={{ .Values.driver.volumeAttachLimit }}" + - "--reserved-data-disk-slot-num={{ .Values.node.reservedDataDiskSlotNum }}" + - "--cloud-config-secret-name={{ .Values.node.cloudConfigSecretName }}" + - "--cloud-config-secret-namespace={{ .Values.node.cloudConfigSecretNamespace }}" + - "--custom-user-agent={{ .Values.driver.customUserAgent }}" + - "--user-agent-suffix={{ .Values.driver.userAgentSuffix }}" + - "--allow-empty-cloud-config={{ .Values.node.allowEmptyCloudConfig }}" + - "--support-zone={{ .Values.node.supportZone }}" + - "--enable-windows-host-process=true" + - "--get-nodeid-from-imds={{ .Values.node.getNodeIDFromIMDS }}" + - "--enable-otel-tracing={{ .Values.windows.otelTracing.enabled }}" + env: + - name: AZURE_CREDENTIAL_FILE + valueFrom: + configMapKeyRef: + name: {{ .Values.azureCredentialFileConfigMap }} + key: path-windows + optional: true + - name: CSI_ENDPOINT + value: unix://C:\\var\\lib\\kubelet\\plugins\\{{ .Values.driver.name }}\\csi.sock + {{- if ne .Values.driver.httpsProxy "" }} + - name: HTTPS_PROXY + value: {{ .Values.driver.httpsProxy }} + {{- end }} + {{- if ne .Values.driver.httpProxy "" }} + - name: HTTP_PROXY + value: {{ .Values.driver.httpProxy }} + {{- end }} + {{- if ne .Values.driver.noProxy "" }} + - name: NO_PROXY + value: {{ .Values.driver.noProxy }} + {{- end }} + - name: KUBE_NODE_NAME + valueFrom: + fieldRef: + apiVersion: v1 + fieldPath: spec.nodeName + - name: AZURE_GO_SDK_LOG_LEVEL + value: {{ .Values.driver.azureGoSDKLogLevel }} + {{- if eq .Values.cloud "AzureStackCloud" }} + - name: AZURE_ENVIRONMENT_FILEPATH + value: C:\k\azurestackcloud.json + {{- end }} + {{- if .Values.windows.otelTracing.enabled }} + - name: OTEL_SERVICE_NAME + value: {{ .Values.windows.otelTracing.otelServiceName }} + - name: OTEL_EXPORTER_OTLP_ENDPOINT + value: {{ .Values.windows.otelTracing.otelExporterEndpoint }} + {{- end }} + imagePullPolicy: {{ .Values.image.azuredisk.pullPolicy }} + securityContext: + capabilities: + drop: + - ALL +{{- end -}} diff --git a/charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-node-windows.yaml b/charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-node-windows.yaml new file mode 100644 index 0000000000..15b15fad7c --- /dev/null +++ b/charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-node-windows.yaml @@ -0,0 +1,258 @@ +{{- if and (.Values.windows.enabled) (ne .Values.windows.useHostProcessContainers true) }} +kind: DaemonSet +apiVersion: apps/v1 +metadata: + name: {{ .Values.windows.dsName }} + namespace: {{ .Release.Namespace }} +{{ include "azuredisk.labels" . | indent 2 }} +{{- with .Values.windows.labels }} +{{ . | toYaml | indent 4 }} +{{- end }} +{{- with .Values.windows.annotations }} + annotations: +{{ . | toYaml | indent 4 }} +{{- end }} +spec: + updateStrategy: + rollingUpdate: + maxUnavailable: {{ .Values.node.maxUnavailable }} + type: RollingUpdate + selector: + matchLabels: + app: {{ .Values.windows.dsName }} + template: + metadata: +{{ include "azuredisk.labels" . | indent 6 }} + app: {{ .Values.windows.dsName }} +{{- with .Values.windows.podLabels }} +{{ toYaml . | indent 8 }} +{{- end }} +{{- with .Values.windows.podAnnotations }} + annotations: +{{ toYaml . | indent 8 }} +{{- end }} + spec: + serviceAccountName: {{ .Values.serviceAccount.node }} +{{- with .Values.windows.tolerations }} + tolerations: +{{ toYaml . | indent 8 }} +{{- end }} + nodeSelector: + kubernetes.io/os: windows +{{- with .Values.windows.nodeSelector }} +{{ toYaml . | indent 8 }} +{{- end }} + affinity: +{{- with .Values.windows.affinity }} +{{ toYaml . | indent 8 }} +{{- end }} + nodeAffinity: +{{ toYaml .Values.windows.nodeAffinity | indent 10 }} + priorityClassName: system-node-critical + securityContext: + seccompProfile: + type: RuntimeDefault + {{- include "azuredisk.pullSecrets" . | indent 6 }} + containers: + - name: liveness-probe + volumeMounts: + - mountPath: C:\csi + name: plugin-dir +{{- if hasPrefix "/" .Values.image.livenessProbe.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.livenessProbe.repository }}:{{ .Values.image.livenessProbe.tag }}" +{{- else }} + image: "{{ .Values.image.livenessProbe.repository }}:{{ .Values.image.livenessProbe.tag }}" +{{- end }} + args: + - "--csi-address=$(CSI_ENDPOINT)" + - "--probe-timeout=30s" + - "--health-port={{ .Values.node.livenessProbe.healthPort }}" + - "--v=2" + env: + - name: CSI_ENDPOINT + value: unix://C:\\csi\\csi.sock + imagePullPolicy: {{ .Values.image.livenessProbe.pullPolicy }} + resources: {{- toYaml .Values.windows.resources.livenessProbe | nindent 12 }} + securityContext: + capabilities: + drop: + - ALL + - name: node-driver-registrar +{{- if hasPrefix "/" .Values.image.nodeDriverRegistrar.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.nodeDriverRegistrar.repository }}:{{ .Values.image.nodeDriverRegistrar.tag }}" +{{- else }} + image: "{{ .Values.image.nodeDriverRegistrar.repository }}:{{ .Values.image.nodeDriverRegistrar.tag }}" +{{- end }} + args: + - "--v=2" + - "--csi-address=$(CSI_ENDPOINT)" + - "--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)" +{{- if .Values.windows.enableRegistrationProbe }} + livenessProbe: + exec: + command: + - /csi-node-driver-registrar.exe + - --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH) + - --mode=kubelet-registration-probe + initialDelaySeconds: 60 + timeoutSeconds: 30 +{{- end }} + env: + - name: CSI_ENDPOINT + value: unix://C:\\csi\\csi.sock + - name: DRIVER_REG_SOCK_PATH + value: C:\\var\\lib\\kubelet\\plugins\\{{ .Values.driver.name }}\\csi.sock + - name: KUBE_NODE_NAME + valueFrom: + fieldRef: + fieldPath: spec.nodeName + imagePullPolicy: {{ .Values.image.nodeDriverRegistrar.pullPolicy }} + volumeMounts: + - name: kubelet-dir + mountPath: "C:\\var\\lib\\kubelet" + - name: plugin-dir + mountPath: C:\csi + - name: registration-dir + mountPath: C:\registration + resources: {{- toYaml .Values.windows.resources.nodeDriverRegistrar | nindent 12 }} + securityContext: + capabilities: + drop: + - ALL + - name: azuredisk +{{- if hasPrefix "/" .Values.image.azuredisk.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.azuredisk.repository }}:{{ .Values.image.azuredisk.tag }}" +{{- else }} + image: "{{ .Values.image.azuredisk.repository }}:{{ .Values.image.azuredisk.tag }}" +{{- end }} + args: + - "--v={{ .Values.node.logLevel }}" + - "--endpoint=$(CSI_ENDPOINT)" + - "--nodeid=$(KUBE_NODE_NAME)" + - "--drivername={{ .Values.driver.name }}" + - "--volume-attach-limit={{ .Values.driver.volumeAttachLimit }}" + - "--reserved-data-disk-slot-num={{ .Values.node.reservedDataDiskSlotNum }}" + - "--cloud-config-secret-name={{ .Values.node.cloudConfigSecretName }}" + - "--cloud-config-secret-namespace={{ .Values.node.cloudConfigSecretNamespace }}" + - "--custom-user-agent={{ .Values.driver.customUserAgent }}" + - "--user-agent-suffix={{ .Values.driver.userAgentSuffix }}" + - "--allow-empty-cloud-config={{ .Values.node.allowEmptyCloudConfig }}" + - "--support-zone={{ .Values.node.supportZone }}" + - "--get-node-info-from-labels={{ .Values.windows.getNodeInfoFromLabels }}" + - "--get-nodeid-from-imds={{ .Values.node.getNodeIDFromIMDS }}" + - "--enable-otel-tracing={{ .Values.windows.otelTracing.enabled }}" + ports: + - containerPort: {{ .Values.node.livenessProbe.healthPort }} + name: healthz + protocol: TCP + livenessProbe: + failureThreshold: 5 + httpGet: + path: /healthz + port: healthz + initialDelaySeconds: 60 + timeoutSeconds: 30 + periodSeconds: 30 + env: + - name: AZURE_CREDENTIAL_FILE + valueFrom: + configMapKeyRef: + name: {{ .Values.azureCredentialFileConfigMap }} + key: path-windows + optional: true + - name: CSI_ENDPOINT + value: unix://C:\\csi\\csi.sock + {{- if ne .Values.driver.httpsProxy "" }} + - name: HTTPS_PROXY + value: {{ .Values.driver.httpsProxy }} + {{- end }} + {{- if ne .Values.driver.httpProxy "" }} + - name: HTTP_PROXY + value: {{ .Values.driver.httpProxy }} + {{- end }} + {{- if ne .Values.driver.noProxy "" }} + - name: NO_PROXY + value: {{ .Values.driver.noProxy }} + {{- end }} + - name: KUBE_NODE_NAME + valueFrom: + fieldRef: + apiVersion: v1 + fieldPath: spec.nodeName + - name: AZURE_GO_SDK_LOG_LEVEL + value: {{ .Values.driver.azureGoSDKLogLevel }} + {{- if eq .Values.cloud "AzureStackCloud" }} + - name: AZURE_ENVIRONMENT_FILEPATH + value: C:\k\azurestackcloud.json + {{- end }} + {{- if .Values.windows.otelTracing.enabled }} + - name: OTEL_SERVICE_NAME + value: {{ .Values.windows.otelTracing.otelServiceName }} + - name: OTEL_EXPORTER_OTLP_ENDPOINT + value: {{ .Values.windows.otelTracing.otelExporterEndpoint }} + {{- end }} + imagePullPolicy: {{ .Values.image.azuredisk.pullPolicy }} + volumeMounts: + - name: kubelet-dir + mountPath: "C:\\var\\lib\\kubelet" + - name: plugin-dir + mountPath: C:\csi + - name: azure-config + mountPath: C:\k + - name: csi-proxy-fs-pipe-v1 + mountPath: \\.\pipe\csi-proxy-filesystem-v1 + - name: csi-proxy-disk-pipe-v1 + mountPath: \\.\pipe\csi-proxy-disk-v1 + - name: csi-proxy-volume-pipe-v1 + mountPath: \\.\pipe\csi-proxy-volume-v1 + # these paths are still included for compatibility, they're used + # only if the node has still the beta version of the CSI proxy + - name: csi-proxy-fs-pipe-v1beta1 + mountPath: \\.\pipe\csi-proxy-filesystem-v1beta1 + - name: csi-proxy-disk-pipe-v1beta2 + mountPath: \\.\pipe\csi-proxy-disk-v1beta2 + - name: csi-proxy-volume-pipe-v1beta2 + mountPath: \\.\pipe\csi-proxy-volume-v1beta2 + resources: {{- toYaml .Values.windows.resources.azuredisk | nindent 12 }} + securityContext: + capabilities: + drop: + - ALL + volumes: + - name: csi-proxy-fs-pipe-v1 + hostPath: + path: \\.\pipe\csi-proxy-filesystem-v1 + - name: csi-proxy-disk-pipe-v1 + hostPath: + path: \\.\pipe\csi-proxy-disk-v1 + - name: csi-proxy-volume-pipe-v1 + hostPath: + path: \\.\pipe\csi-proxy-volume-v1 + # these paths are still included for compatibility, they're used + # only if the node has still the beta version of the CSI proxy + - name: csi-proxy-fs-pipe-v1beta1 + hostPath: + path: \\.\pipe\csi-proxy-filesystem-v1beta1 + - name: csi-proxy-disk-pipe-v1beta2 + hostPath: + path: \\.\pipe\csi-proxy-disk-v1beta2 + - name: csi-proxy-volume-pipe-v1beta2 + hostPath: + path: \\.\pipe\csi-proxy-volume-v1beta2 + - name: registration-dir + hostPath: + path: {{ .Values.windows.kubelet }}\plugins_registry\ + type: Directory + - name: kubelet-dir + hostPath: + path: {{ .Values.windows.kubelet }}\ + type: Directory + - name: plugin-dir + hostPath: + path: {{ .Values.windows.kubelet }}\plugins\{{ .Values.driver.name }}\ + type: DirectoryOrCreate + - name: azure-config + hostPath: + path: C:\k + type: DirectoryOrCreate +{{- end -}} diff --git a/charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-node.yaml b/charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-node.yaml new file mode 100644 index 0000000000..8420fcd30b --- /dev/null +++ b/charts/v1.29.10/azuredisk-csi-driver/templates/csi-azuredisk-node.yaml @@ -0,0 +1,280 @@ +{{- if .Values.linux.enabled}} +kind: DaemonSet +apiVersion: apps/v1 +metadata: + name: {{ .Values.linux.dsName }} + namespace: {{ .Release.Namespace }} +{{ include "azuredisk.labels" . | indent 2 }} +{{- with .Values.linux.labels }} +{{ . | toYaml | indent 4 }} +{{- end }} +{{- with .Values.linux.annotations }} + annotations: +{{ . | toYaml | indent 4 }} +{{- end }} +spec: + updateStrategy: + rollingUpdate: + maxUnavailable: {{ .Values.node.maxUnavailable }} + type: RollingUpdate + selector: + matchLabels: + app: {{ .Values.linux.dsName }} + template: + metadata: +{{ include "azuredisk.labels" . | indent 6 }} + app: {{ .Values.linux.dsName }} + {{- if .Values.workloadIdentity.clientID }} + azure.workload.identity/use: "true" + {{- end }} +{{- with .Values.linux.podLabels }} +{{ toYaml . | indent 8 }} +{{- end }} +{{- with .Values.linux.podAnnotations }} + annotations: +{{ toYaml . | indent 8 }} +{{- end }} + spec: + {{- if .Values.imagePullSecrets }} + imagePullSecrets: +{{ toYaml .Values.imagePullSecrets | indent 8 }} + {{- end }} + hostNetwork: {{ .Values.linux.hostNetwork }} + dnsPolicy: Default + serviceAccountName: {{ .Values.serviceAccount.node }} + nodeSelector: + kubernetes.io/os: linux +{{- with .Values.linux.nodeSelector }} +{{ toYaml . | indent 8 }} +{{- end }} + affinity: +{{- with .Values.linux.affinity }} +{{ toYaml . | indent 8 }} +{{- end }} + nodeAffinity: +{{ toYaml .Values.linux.nodeAffinity | indent 10 }} + priorityClassName: system-node-critical + securityContext: + seccompProfile: + type: RuntimeDefault +{{- with .Values.linux.tolerations }} + tolerations: +{{ toYaml . | indent 8 }} +{{- end }} + {{- include "azuredisk.pullSecrets" . | indent 6 }} + containers: + - name: liveness-probe + volumeMounts: + - mountPath: /csi + name: socket-dir +{{- if hasPrefix "/" .Values.image.livenessProbe.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.livenessProbe.repository }}:{{ .Values.image.livenessProbe.tag }}" +{{- else }} + image: "{{ .Values.image.livenessProbe.repository }}:{{ .Values.image.livenessProbe.tag }}" +{{- end }} + args: + - --csi-address=/csi/csi.sock + - --probe-timeout=3s +{{- if eq .Values.node.hostNetwork true }} + - --http-endpoint=localhost:{{ .Values.node.livenessProbe.healthPort }} +{{- else }} + - --health-port={{ .Values.node.livenessProbe.healthPort }} +{{- end }} + - --v=2 + resources: {{- toYaml .Values.linux.resources.livenessProbe | nindent 12 }} + securityContext: + capabilities: + drop: + - ALL + - name: node-driver-registrar +{{- if hasPrefix "/" .Values.image.nodeDriverRegistrar.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.nodeDriverRegistrar.repository }}:{{ .Values.image.nodeDriverRegistrar.tag }}" +{{- else }} + image: "{{ .Values.image.nodeDriverRegistrar.repository }}:{{ .Values.image.nodeDriverRegistrar.tag }}" +{{- end }} + args: + - --csi-address=$(ADDRESS) + - --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH) + - --v=2 +{{- if .Values.linux.enableRegistrationProbe }} + livenessProbe: + exec: + command: + - /csi-node-driver-registrar + - --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH) + - --mode=kubelet-registration-probe + initialDelaySeconds: 30 + timeoutSeconds: 15 +{{- end }} + env: + - name: ADDRESS + value: /csi/csi.sock + - name: DRIVER_REG_SOCK_PATH + value: {{ .Values.linux.kubelet }}/plugins/{{ .Values.driver.name }}/csi.sock + volumeMounts: + - name: socket-dir + mountPath: /csi + - name: registration-dir + mountPath: /registration + resources: {{- toYaml .Values.linux.resources.nodeDriverRegistrar | nindent 12 }} + securityContext: + capabilities: + drop: + - ALL + - name: azuredisk +{{- if hasPrefix "/" .Values.image.azuredisk.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.azuredisk.repository }}:{{ .Values.image.azuredisk.tag }}" +{{- else }} + image: "{{ .Values.image.azuredisk.repository }}:{{ .Values.image.azuredisk.tag }}" +{{- end }} + args: + - "--v={{ .Values.node.logLevel }}" + - "--endpoint=$(CSI_ENDPOINT)" + - "--nodeid=$(KUBE_NODE_NAME)" + - "--enable-perf-optimization={{ .Values.linux.enablePerfOptimization }}" + - "--drivername={{ .Values.driver.name }}" + - "--volume-attach-limit={{ .Values.driver.volumeAttachLimit }}" + - "--reserved-data-disk-slot-num={{ .Values.node.reservedDataDiskSlotNum }}" + - "--cloud-config-secret-name={{ .Values.node.cloudConfigSecretName }}" + - "--cloud-config-secret-namespace={{ .Values.node.cloudConfigSecretNamespace }}" + - "--custom-user-agent={{ .Values.driver.customUserAgent }}" + - "--user-agent-suffix={{ .Values.driver.userAgentSuffix }}" + - "--allow-empty-cloud-config={{ .Values.node.allowEmptyCloudConfig }}" + - "--support-zone={{ .Values.node.supportZone }}" + - "--get-node-info-from-labels={{ .Values.linux.getNodeInfoFromLabels }}" + - "--get-nodeid-from-imds={{ .Values.node.getNodeIDFromIMDS }}" + - "--enable-otel-tracing={{ .Values.linux.otelTracing.enabled }}" +{{- if ne .Values.node.hostNetwork true }} + ports: + - containerPort: {{ .Values.node.livenessProbe.healthPort }} + name: healthz + protocol: TCP +{{- end }} + livenessProbe: + failureThreshold: 5 + httpGet: + path: /healthz +{{- if eq .Values.node.hostNetwork true }} + host: localhost + port: {{ .Values.node.livenessProbe.healthPort }} +{{- else }} + port: healthz +{{- end }} + initialDelaySeconds: 30 + timeoutSeconds: 10 + periodSeconds: 30 + env: + - name: AZURE_CREDENTIAL_FILE + valueFrom: + configMapKeyRef: + name: {{ .Values.azureCredentialFileConfigMap }} + key: path + optional: true + - name: CSI_ENDPOINT + value: unix:///csi/csi.sock + {{- if ne .Values.driver.httpsProxy "" }} + - name: HTTPS_PROXY + value: {{ .Values.driver.httpsProxy }} + {{- end }} + {{- if ne .Values.driver.httpProxy "" }} + - name: HTTP_PROXY + value: {{ .Values.driver.httpProxy }} + {{- end }} + {{- if ne .Values.driver.noProxy "" }} + - name: NO_PROXY + value: {{ .Values.driver.noProxy }} + {{- end }} + - name: KUBE_NODE_NAME + valueFrom: + fieldRef: + apiVersion: v1 + fieldPath: spec.nodeName + - name: AZURE_GO_SDK_LOG_LEVEL + value: {{ .Values.driver.azureGoSDKLogLevel }} + {{- if eq .Values.cloud "AzureStackCloud" }} + - name: AZURE_ENVIRONMENT_FILEPATH + value: /etc/kubernetes/azurestackcloud.json + {{- end }} + {{- if .Values.linux.otelTracing.enabled }} + - name: OTEL_SERVICE_NAME + value: {{ .Values.linux.otelTracing.otelServiceName }} + - name: OTEL_EXPORTER_OTLP_ENDPOINT + value: {{ .Values.linux.otelTracing.otelExporterEndpoint }} + {{- end }} + imagePullPolicy: {{ .Values.image.azuredisk.pullPolicy }} + securityContext: + privileged: true + capabilities: + drop: + - ALL + volumeMounts: + - mountPath: /csi + name: socket-dir + - mountPath: {{ .Values.linux.kubelet }}/ + mountPropagation: Bidirectional + name: mountpoint-dir + - mountPath: /etc/kubernetes/ + name: azure-cred + - mountPath: /dev + name: device-dir + - mountPath: /sys/bus/scsi/devices + name: sys-devices-dir + - mountPath: /sys/class/ + name: sys-class + {{- if eq .Values.cloud "AzureStackCloud" }} + - name: ssl + mountPath: /etc/ssl/certs + readOnly: true + {{- end }} + {{- if eq .Values.linux.distro "fedora" }} + - name: ssl + mountPath: /etc/ssl/certs + readOnly: true + - name: ssl-pki + mountPath: /etc/pki/ca-trust/extracted + readOnly: true + {{- end }} + resources: {{- toYaml .Values.linux.resources.azuredisk | nindent 12 }} + volumes: + - hostPath: + path: {{ .Values.linux.kubelet }}/plugins/{{ .Values.driver.name }} + type: DirectoryOrCreate + name: socket-dir + - hostPath: + path: {{ .Values.linux.kubelet }}/ + type: DirectoryOrCreate + name: mountpoint-dir + - hostPath: + path: {{ .Values.linux.kubelet }}/plugins_registry/ + type: DirectoryOrCreate + name: registration-dir + - hostPath: + path: /etc/kubernetes/ + type: DirectoryOrCreate + name: azure-cred + - hostPath: + path: /dev + type: Directory + name: device-dir + - hostPath: + path: /sys/bus/scsi/devices + type: Directory + name: sys-devices-dir + - hostPath: + path: /sys/class/ + type: Directory + name: sys-class + {{- if eq .Values.cloud "AzureStackCloud" }} + - name: ssl + hostPath: + path: /etc/ssl/certs + {{- end }} + {{- if eq .Values.linux.distro "fedora" }} + - name: ssl + hostPath: + path: /etc/ssl/certs + - name: ssl-pki + hostPath: + path: /etc/pki/ca-trust/extracted + {{- end }} +{{- end -}} diff --git a/charts/v1.29.10/azuredisk-csi-driver/templates/csi-snapshot-controller.yaml b/charts/v1.29.10/azuredisk-csi-driver/templates/csi-snapshot-controller.yaml new file mode 100644 index 0000000000..7ea860c7a2 --- /dev/null +++ b/charts/v1.29.10/azuredisk-csi-driver/templates/csi-snapshot-controller.yaml @@ -0,0 +1,98 @@ +{{- if .Values.snapshot.enabled -}} +kind: Deployment +apiVersion: apps/v1 +metadata: + name: {{ .Values.snapshot.snapshotController.name }} + namespace: {{ .Release.Namespace }} +{{ include "azuredisk.labels" . | indent 2 }} +{{- with .Values.snapshot.snapshotController.labels }} +{{ . | toYaml | indent 4 }} +{{- end }} +{{- with .Values.snapshot.snapshotController.annotations }} + annotations: +{{ . | toYaml | indent 4 }} +{{- end }} +spec: + replicas: {{ .Values.snapshot.snapshotController.replicas }} + selector: + matchLabels: + app: {{ .Values.snapshot.snapshotController.name }} + # the snapshot controller won't be marked as ready if the v1 CRDs are unavailable + # in #504 the snapshot-controller will exit after around 7.5 seconds if it + # can't find the v1 CRDs so this value should be greater than that + minReadySeconds: 15 + strategy: + rollingUpdate: + maxSurge: 0 + maxUnavailable: 1 + type: RollingUpdate + template: + metadata: +{{ include "azuredisk.labels" . | indent 6 }} + app: {{ .Values.snapshot.snapshotController.name }} +{{- with .Values.snapshot.snapshotController.podLabels }} +{{ toYaml . | indent 8 }} +{{- end }} +{{- with .Values.snapshot.snapshotController.podAnnotations }} + annotations: +{{ toYaml . | indent 8 }} +{{- end }} + spec: + serviceAccountName: {{ .Values.serviceAccount.snapshotController }} + nodeSelector: + kubernetes.io/os: linux + priorityClassName: system-cluster-critical + securityContext: + seccompProfile: + type: RuntimeDefault +{{- with .Values.controller.tolerations }} + tolerations: +{{ toYaml . | indent 8 }} +{{- end }} +{{- with .Values.controller.affinity }} + affinity: +{{ toYaml . | indent 8 }} +{{- end }} + {{- include "azuredisk.pullSecrets" . | indent 6 }} + containers: + - name: {{ .Values.snapshot.snapshotController.name }} +{{- if hasPrefix "/" .Values.snapshot.image.csiSnapshotController.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.snapshot.image.csiSnapshotController.repository }}:{{ .Values.snapshot.image.csiSnapshotController.tag }}" +{{- else }} + image: "{{ .Values.snapshot.image.csiSnapshotController.repository }}:{{ .Values.snapshot.image.csiSnapshotController.tag }}" +{{- end }} + args: + - "--v=2" + - "--leader-election=true" + - "--leader-election-namespace={{ .Release.Namespace }}" + resources: {{- toYaml .Values.snapshot.snapshotController.resources | nindent 12 }} + imagePullPolicy: {{ .Values.snapshot.image.csiSnapshotController.pullPolicy }} + securityContext: + capabilities: + drop: + - ALL + +--- +{{- if .Values.snapshot.VolumeSnapshotClass.enabled -}} +kind: VolumeSnapshotClass +apiVersion: snapshot.storage.k8s.io/v1 +metadata: + name: {{ .Values.snapshot.VolumeSnapshotClass.name }} + annotations: + # This is what defines this resource as a hook. Without this line, the + # job is considered part of the release. + "helm.sh/hook": post-install +driver: {{ .Values.driver.name }} +deletionPolicy: {{ .Values.snapshot.VolumeSnapshotClass.deletionPolicy }} +parameters: + incremental: {{ .Values.snapshot.VolumeSnapshotClass.parameters.incremental }} + {{- if ne .Values.snapshot.VolumeSnapshotClass.parameters.resourceGroup "" }} + resourceGroup: {{ .Values.snapshot.VolumeSnapshotClass.parameters.resourceGroup }} + {{- end }} + tags: {{ .Values.snapshot.VolumeSnapshotClass.parameters.tags }} +{{- with .Values.snapshot.VolumeSnapshotClass.additionalLabels }} +additionalLabels: +{{ toYaml . | indent 2 }} +{{- end }} +{{- end -}} +{{- end -}} diff --git a/charts/v1.29.10/azuredisk-csi-driver/templates/rbac-csi-azuredisk-controller.yaml b/charts/v1.29.10/azuredisk-csi-driver/templates/rbac-csi-azuredisk-controller.yaml new file mode 100644 index 0000000000..84cccdf733 --- /dev/null +++ b/charts/v1.29.10/azuredisk-csi-driver/templates/rbac-csi-azuredisk-controller.yaml @@ -0,0 +1,199 @@ +{{- if .Values.rbac.create -}} +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: {{ .Values.rbac.name }}-external-provisioner-role +{{ include "azuredisk.labels" . | indent 2 }} +rules: + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch", "create", "patch", "delete"] + - apiGroups: [""] + resources: ["persistentvolumeclaims"] + verbs: ["get", "list", "watch", "update"] + - apiGroups: ["storage.k8s.io"] + resources: ["storageclasses"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["events"] + verbs: ["get", "list", "watch", "create", "update", "patch"] + - apiGroups: ["storage.k8s.io"] + resources: ["csinodes"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["nodes"] + verbs: ["get", "list", "watch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshots"] + verbs: ["get", "list"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents"] + verbs: ["get", "list"] + - apiGroups: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "watch", "list", "delete", "update", "create", "patch"] + +--- + +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: {{ .Values.rbac.name }}-csi-provisioner-binding +{{ include "azuredisk.labels" . | indent 2 }} +subjects: + - kind: ServiceAccount + name: {{ .Values.serviceAccount.controller }} + namespace: {{ .Release.Namespace }} +roleRef: + kind: ClusterRole + name: {{ .Values.rbac.name }}-external-provisioner-role + apiGroup: rbac.authorization.k8s.io + +--- + +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: {{ .Values.rbac.name }}-external-attacher-role +{{ include "azuredisk.labels" . | indent 2 }} +rules: + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch", "update"] + - apiGroups: [""] + resources: ["nodes"] + verbs: ["get", "list", "watch"] + - apiGroups: ["csi.storage.k8s.io"] + resources: ["csinodeinfos"] + verbs: ["get", "list", "watch"] + - apiGroups: ["storage.k8s.io"] + resources: ["volumeattachments"] + verbs: ["get", "list", "watch", "update", "patch"] + - apiGroups: ["storage.k8s.io"] + resources: ["volumeattachments/status"] + verbs: ["get", "list", "watch", "update", "patch"] + - apiGroups: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "watch", "list", "delete", "update", "create", "patch"] +--- + +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: {{ .Values.rbac.name }}-csi-attacher-binding +{{ include "azuredisk.labels" . | indent 2 }} +subjects: + - kind: ServiceAccount + name: {{ .Values.serviceAccount.controller }} + namespace: {{ .Release.Namespace }} +roleRef: + kind: ClusterRole + name: {{ .Values.rbac.name }}-external-attacher-role + apiGroup: rbac.authorization.k8s.io + +--- + +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: {{ .Values.rbac.name }}-external-snapshotter-role +{{ include "azuredisk.labels" . | indent 2 }} +rules: + - apiGroups: [""] + resources: ["events"] + verbs: ["list", "watch", "create", "update", "patch"] + - apiGroups: [""] + resources: ["secrets"] + verbs: ["get", "list"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotclasses"] + verbs: ["get", "list", "watch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents"] + verbs: ["create", "get", "list", "watch", "update", "delete", "patch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents/status"] + verbs: ["update", "patch"] + - apiGroups: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "watch", "list", "delete", "update", "create", "patch"] +--- + +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: {{ .Values.rbac.name }}-csi-snapshotter-binding +{{ include "azuredisk.labels" . | indent 2 }} +subjects: + - kind: ServiceAccount + name: {{ .Values.serviceAccount.controller }} + namespace: {{ .Release.Namespace }} +roleRef: + kind: ClusterRole + name: {{ .Values.rbac.name }}-external-snapshotter-role + apiGroup: rbac.authorization.k8s.io + +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: {{ .Values.rbac.name }}-external-resizer-role +{{ include "azuredisk.labels" . | indent 2 }} +rules: + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch", "update", "patch"] + - apiGroups: [""] + resources: ["persistentvolumeclaims"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["persistentvolumeclaims/status"] + verbs: ["update", "patch"] + - apiGroups: [""] + resources: ["events"] + verbs: ["list", "watch", "create", "update", "patch"] + - apiGroups: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "watch", "list", "delete", "update", "create", "patch"] + - apiGroups: [""] + resources: ["pods"] + verbs: ["get", "list", "watch"] +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: {{ .Values.rbac.name }}-csi-resizer-role +{{ include "azuredisk.labels" . | indent 2 }} +subjects: + - kind: ServiceAccount + name: {{ .Values.serviceAccount.controller }} + namespace: {{ .Release.Namespace }} +roleRef: + kind: ClusterRole + name: {{ .Values.rbac.name }}-external-resizer-role + apiGroup: rbac.authorization.k8s.io + +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-{{ .Values.rbac.name }}-controller-secret-role +rules: + - apiGroups: [""] + resources: ["secrets"] + verbs: ["get"] + +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-{{ .Values.rbac.name }}-controller-secret-binding +subjects: + - kind: ServiceAccount + name: {{ .Values.serviceAccount.controller }} + namespace: {{ .Release.Namespace }} +roleRef: + kind: ClusterRole + name: csi-{{ .Values.rbac.name }}-controller-secret-role + apiGroup: rbac.authorization.k8s.io +{{ end }} diff --git a/charts/v1.29.10/azuredisk-csi-driver/templates/rbac-csi-azuredisk-node.yaml b/charts/v1.29.10/azuredisk-csi-driver/templates/rbac-csi-azuredisk-node.yaml new file mode 100644 index 0000000000..ae7e080af9 --- /dev/null +++ b/charts/v1.29.10/azuredisk-csi-driver/templates/rbac-csi-azuredisk-node.yaml @@ -0,0 +1,28 @@ +{{- if .Values.rbac.create -}} +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-{{ .Values.rbac.name }}-node-role +rules: + - apiGroups: [""] + resources: ["secrets"] + verbs: ["get"] + - apiGroups: [""] + resources: ["nodes"] + verbs: ["get"] + +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-{{ .Values.rbac.name }}-node-secret-binding +subjects: + - kind: ServiceAccount + name: {{ .Values.serviceAccount.node }} + namespace: {{ .Release.Namespace }} +roleRef: + kind: ClusterRole + name: csi-{{ .Values.rbac.name }}-node-role + apiGroup: rbac.authorization.k8s.io +{{ end }} diff --git a/charts/v1.29.10/azuredisk-csi-driver/templates/rbac-csi-snapshot-controller.yaml b/charts/v1.29.10/azuredisk-csi-driver/templates/rbac-csi-snapshot-controller.yaml new file mode 100644 index 0000000000..8e4278b6f5 --- /dev/null +++ b/charts/v1.29.10/azuredisk-csi-driver/templates/rbac-csi-snapshot-controller.yaml @@ -0,0 +1,72 @@ +{{- if and .Values.snapshot.enabled .Values.rbac.create -}} +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-snapshot-controller-role +rules: + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["persistentvolumeclaims"] + verbs: ["get", "list", "watch", "update"] + - apiGroups: ["storage.k8s.io"] + resources: ["storageclasses"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["events"] + verbs: ["list", "watch", "create", "update", "patch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotclasses"] + verbs: ["get", "list", "watch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents"] + verbs: ["create", "get", "list", "watch", "update", "delete", "patch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents/status"] + verbs: ["patch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshots"] + verbs: ["get", "list", "watch", "update", "patch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshots/status"] + verbs: ["update", "patch"] + +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-snapshot-controller-binding +subjects: + - kind: ServiceAccount + name: {{ .Values.serviceAccount.snapshotController }} + namespace: {{ .Release.Namespace }} +roleRef: + kind: ClusterRole + name: csi-snapshot-controller-role + apiGroup: rbac.authorization.k8s.io + +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-snapshot-controller-leaderelection-role +rules: + - apiGroups: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "watch", "list", "delete", "update", "create", "patch"] + +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-snapshot-controller-leaderelection-binding +subjects: + - kind: ServiceAccount + name: {{ .Values.serviceAccount.snapshotController }} + namespace: {{ .Release.Namespace }} +roleRef: + kind: ClusterRole + name: csi-snapshot-controller-leaderelection-role + apiGroup: rbac.authorization.k8s.io +{{ end }} diff --git a/charts/v1.29.10/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-controller.yaml b/charts/v1.29.10/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-controller.yaml new file mode 100644 index 0000000000..1806e9c586 --- /dev/null +++ b/charts/v1.29.10/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-controller.yaml @@ -0,0 +1,16 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ .Values.serviceAccount.controller }} + namespace: {{ .Release.Namespace }} +{{ include "azuredisk.labels" . | indent 2 }} +{{- if .Values.workloadIdentity.clientID }} + azure.workload.identity/use: "true" + annotations: + azure.workload.identity/client-id: {{ .Values.workloadIdentity.clientID }} +{{- if .Values.workloadIdentity.tenantID }} + azure.workload.identity/tenant-id: {{ .Values.workloadIdentity.tenantID }} +{{- end }} +{{- end }} +{{- end -}} diff --git a/charts/v1.29.10/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-node.yaml b/charts/v1.29.10/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-node.yaml new file mode 100644 index 0000000000..dcc2ff60b3 --- /dev/null +++ b/charts/v1.29.10/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-node.yaml @@ -0,0 +1,16 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ .Values.serviceAccount.node }} + namespace: {{ .Release.Namespace }} +{{ include "azuredisk.labels" . | indent 2 }} +{{- if .Values.workloadIdentity.clientID }} + azure.workload.identity/use: "true" + annotations: + azure.workload.identity/client-id: {{ .Values.workloadIdentity.clientID }} +{{- if .Values.workloadIdentity.tenantID }} + azure.workload.identity/tenant-id: {{ .Values.workloadIdentity.tenantID }} +{{- end }} +{{- end }} +{{- end -}} diff --git a/charts/v1.29.10/azuredisk-csi-driver/templates/serviceaccount-csi-snapshot-controller.yaml b/charts/v1.29.10/azuredisk-csi-driver/templates/serviceaccount-csi-snapshot-controller.yaml new file mode 100644 index 0000000000..7cdaad0b4f --- /dev/null +++ b/charts/v1.29.10/azuredisk-csi-driver/templates/serviceaccount-csi-snapshot-controller.yaml @@ -0,0 +1,7 @@ +{{- if and .Values.snapshot.enabled .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ .Values.serviceAccount.snapshotController }} + namespace: {{ .Release.Namespace }} +{{- end -}} diff --git a/charts/v1.29.10/azuredisk-csi-driver/values.yaml b/charts/v1.29.10/azuredisk-csi-driver/values.yaml new file mode 100644 index 0000000000..de8b2fe0cb --- /dev/null +++ b/charts/v1.29.10/azuredisk-csi-driver/values.yaml @@ -0,0 +1,291 @@ +image: + baseRepo: mcr.microsoft.com + azuredisk: + repository: /oss/kubernetes-csi/azuredisk-csi + tag: v1.29.10 + pullPolicy: IfNotPresent + csiProvisioner: + repository: /oss/kubernetes-csi/csi-provisioner + tag: v5.1.0 + pullPolicy: IfNotPresent + csiAttacher: + repository: /oss/kubernetes-csi/csi-attacher + tag: v4.7.0 + pullPolicy: IfNotPresent + csiResizer: + repository: /oss/kubernetes-csi/csi-resizer + tag: v1.12.0 + pullPolicy: IfNotPresent + livenessProbe: + repository: /oss/kubernetes-csi/livenessprobe + tag: v2.14.0 + pullPolicy: IfNotPresent + nodeDriverRegistrar: + repository: /oss/kubernetes-csi/csi-node-driver-registrar + tag: v2.12.0 + pullPolicy: IfNotPresent + +serviceAccount: + create: true # When true, service accounts will be created for you. Set to false if you want to use your own. + controller: csi-azuredisk-controller-sa # Name of Service Account to be created or used + node: csi-azuredisk-node-sa # Name of Service Account to be created or used + snapshotController: csi-snapshot-controller-sa # Name of Service Account to be created or used + +rbac: + create: true + name: azuredisk + +controller: + name: csi-azuredisk-controller + cloudConfigSecretName: azure-cloud-provider + cloudConfigSecretNamespace: kube-system + allowEmptyCloudConfig: false + enableTrafficManager: false + trafficManagerPort: 7788 + replicas: 2 + metricsPort: 29604 + livenessProbe: + healthPort: 29602 + runOnMaster: false + runOnControlPlane: false + disableAvailabilitySetNodes: false + vmType: "" + provisionerWorkerThreads: 100 + attacherWorkerThreads: 1000 + vmssCacheTTLInSeconds: -1 + logLevel: 5 + otelTracing: + enabled: false + otelServiceName: csi-azuredisk-controller + otelExporterEndpoint: "http://localhost:4317" + tolerations: + - key: "node-role.kubernetes.io/master" + operator: "Exists" + effect: "NoSchedule" + - key: "node-role.kubernetes.io/controlplane" + operator: "Exists" + effect: "NoSchedule" + - key: "node-role.kubernetes.io/control-plane" + operator: "Exists" + effect: "NoSchedule" + hostNetwork: true # this setting could be disabled if controller does not depend on MSI setting + labels: {} + annotations: {} + podLabels: {} + podAnnotations: {} + nodeSelector: {} + affinity: {} + resources: + csiProvisioner: + limits: + memory: 500Mi + requests: + cpu: 10m + memory: 20Mi + csiAttacher: + limits: + memory: 500Mi + requests: + cpu: 10m + memory: 20Mi + csiResizer: + limits: + memory: 500Mi + requests: + cpu: 10m + memory: 20Mi + csiSnapshotter: + limits: + memory: 200Mi + requests: + cpu: 10m + memory: 20Mi + livenessProbe: + limits: + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi + azuredisk: + limits: + memory: 500Mi + requests: + cpu: 10m + memory: 20Mi + +node: + cloudConfigSecretName: azure-cloud-provider + cloudConfigSecretNamespace: kube-system + # reserved data disk slot number per node, driver.volumeAttachLimit must be < 0 + reservedDataDiskSlotNum: 0 + supportZone: true + allowEmptyCloudConfig: true + getNodeIDFromIMDS: false + maxUnavailable: 1 + logLevel: 5 + livenessProbe: + healthPort: 29603 + +snapshot: + enabled: false + name: csi-snapshot-controller + image: + csiSnapshotter: + repository: /oss/kubernetes-csi/csi-snapshotter + tag: v8.1.0 + pullPolicy: IfNotPresent + csiSnapshotController: + repository: /oss/kubernetes-csi/snapshot-controller + tag: v8.1.0 + pullPolicy: IfNotPresent + snapshotController: + name: csi-snapshot-controller + replicas: 2 + labels: {} + annotations: {} + podLabels: {} + podAnnotations: {} + resources: + limits: + memory: 300Mi + requests: + cpu: 10m + memory: 20Mi + VolumeSnapshotClass: + enabled: false + name: csi-azuredisk-vsc + deletionPolicy: Delete + parameters: + incremental: '"true"' # available values: "true", "false" ("true" by default for Azure Public Cloud, and "false" by default for Azure Stack Cloud) + resourceGroup: "" # available values: EXISTING RESOURCE GROUP (If not specified, snapshot will be stored in the same resource group as source Azure disk) + tags: "" # tag format: 'key1=val1,key2=val2' + additionalLabels: {} + +feature: + enableFSGroupPolicy: true + +driver: + name: disk.csi.azure.com + # maximum number of attachable volumes per node, + # maximum number is defined according to node instance type by default(-1) + volumeAttachLimit: -1 + customUserAgent: "" + userAgentSuffix: "OSS-helm" + azureGoSDKLogLevel: "" # available values: ""(no logs), DEBUG, INFO, WARNING, ERROR + httpsProxy: "" + httpProxy: "" + noProxy: "" + +linux: + enabled: true + dsName: csi-azuredisk-node # daemonset name + kubelet: /var/lib/kubelet + distro: debian # available values: debian, fedora + enablePerfOptimization: true + enableRegistrationProbe: true + otelTracing: + enabled: false + otelServiceName: csi-azuredisk-node + otelExporterEndpoint: "http://localhost:4317" + tolerations: + - operator: "Exists" + hostNetwork: true # this setting could be disabled if perfProfile is `none` + getNodeInfoFromLabels: false # get node info from node labels instead of IMDS + labels: {} + annotations: {} + podLabels: {} + podAnnotations: {} + nodeSelector: {} + affinity: {} + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: type + operator: NotIn + values: + - virtual-kubelet + resources: + livenessProbe: + limits: + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi + nodeDriverRegistrar: + limits: + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi + azuredisk: + limits: + memory: 600Mi + requests: + cpu: 10m + memory: 20Mi + +windows: + enabled: true + useHostProcessContainers: false + dsName: csi-azuredisk-node-win # daemonset name + kubelet: 'C:\var\lib\kubelet' + getNodeInfoFromLabels: false # get node info from node labels instead of IMDS + enableRegistrationProbe: true + otelTracing: + enabled: false + otelServiceName: csi-azuredisk-node-win + otelExporterEndpoint: "http://localhost:4317" + tolerations: + - key: "node.kubernetes.io/os" + operator: "Exists" + effect: "NoSchedule" + labels: {} + annotations: {} + podLabels: {} + podAnnotations: {} + nodeSelector: {} + affinity: {} + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: type + operator: NotIn + values: + - virtual-kubelet + resources: + livenessProbe: + limits: + memory: 150Mi + requests: + cpu: 10m + memory: 40Mi + nodeDriverRegistrar: + limits: + memory: 150Mi + requests: + cpu: 30m + memory: 40Mi + azuredisk: + limits: + memory: 600Mi + requests: + cpu: 10m + memory: 40Mi + +cloud: AzurePublicCloud + +## Reference to one or more secrets to be used when pulling images +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ +## +imagePullSecrets: [] +# - name: "image-pull-secret" + +workloadIdentity: + clientID: "" + # [optional] If the AAD application or user-assigned managed identity is not in the same tenant as the cluster + # then set tenantID with the application or user-assigned managed identity tenant ID + tenantID: "" + +azureCredentialFileConfigMap: azure-cred-file diff --git a/deploy/csi-azuredisk-controller.yaml b/deploy/csi-azuredisk-controller.yaml index feac3c9772..1d8ca6d5dc 100644 --- a/deploy/csi-azuredisk-controller.yaml +++ b/deploy/csi-azuredisk-controller.yaml @@ -161,7 +161,7 @@ spec: drop: - ALL - name: azuredisk - image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.9 + image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.10 imagePullPolicy: IfNotPresent args: - "--v=5" diff --git a/deploy/csi-azuredisk-node-windows-hostprocess.yaml b/deploy/csi-azuredisk-node-windows-hostprocess.yaml index 10f9e72cb8..87fec6e06d 100644 --- a/deploy/csi-azuredisk-node-windows-hostprocess.yaml +++ b/deploy/csi-azuredisk-node-windows-hostprocess.yaml @@ -41,7 +41,7 @@ spec: hostNetwork: true initContainers: - name: init - image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.9-windows-hp + image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.10-windows-hp imagePullPolicy: IfNotPresent command: - "powershell.exe" @@ -84,7 +84,7 @@ spec: drop: - ALL - name: azuredisk - image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.9-windows-hp + image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.10-windows-hp imagePullPolicy: IfNotPresent command: - "azurediskplugin.exe" diff --git a/deploy/csi-azuredisk-node-windows.yaml b/deploy/csi-azuredisk-node-windows.yaml index de6aa655a4..60f6a11940 100644 --- a/deploy/csi-azuredisk-node-windows.yaml +++ b/deploy/csi-azuredisk-node-windows.yaml @@ -102,7 +102,7 @@ spec: drop: - ALL - name: azuredisk - image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.9 + image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.10 imagePullPolicy: IfNotPresent args: - "--v=5" diff --git a/deploy/csi-azuredisk-node.yaml b/deploy/csi-azuredisk-node.yaml index 8bcf7df058..e9fc400555 100644 --- a/deploy/csi-azuredisk-node.yaml +++ b/deploy/csi-azuredisk-node.yaml @@ -93,7 +93,7 @@ spec: drop: - ALL - name: azuredisk - image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.9 + image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.10 imagePullPolicy: IfNotPresent args: - "--v=5" diff --git a/deploy/v1.29.10/crd-csi-snapshot.yaml b/deploy/v1.29.10/crd-csi-snapshot.yaml new file mode 100644 index 0000000000..d4b90b266d --- /dev/null +++ b/deploy/v1.29.10/crd-csi-snapshot.yaml @@ -0,0 +1,838 @@ +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.8.0 + api-approved.kubernetes.io: "https://github.com/kubernetes-csi/external-snapshotter/pull/665" + creationTimestamp: null + name: volumesnapshots.snapshot.storage.k8s.io +spec: + group: snapshot.storage.k8s.io + names: + kind: VolumeSnapshot + listKind: VolumeSnapshotList + plural: volumesnapshots + shortNames: + - vs + singular: volumesnapshot + scope: Namespaced + versions: + - additionalPrinterColumns: + - description: Indicates if the snapshot is ready to be used to restore a volume. + jsonPath: .status.readyToUse + name: ReadyToUse + type: boolean + - description: If a new snapshot needs to be created, this contains the name of + the source PVC from which this snapshot was (or will be) created. + jsonPath: .spec.source.persistentVolumeClaimName + name: SourcePVC + type: string + - description: If a snapshot already exists, this contains the name of the existing + VolumeSnapshotContent object representing the existing snapshot. + jsonPath: .spec.source.volumeSnapshotContentName + name: SourceSnapshotContent + type: string + - description: Represents the minimum size of volume required to rehydrate from + this snapshot. + jsonPath: .status.restoreSize + name: RestoreSize + type: string + - description: The name of the VolumeSnapshotClass requested by the VolumeSnapshot. + jsonPath: .spec.volumeSnapshotClassName + name: SnapshotClass + type: string + - description: Name of the VolumeSnapshotContent object to which the VolumeSnapshot + object intends to bind to. Please note that verification of binding actually + requires checking both VolumeSnapshot and VolumeSnapshotContent to ensure + both are pointing at each other. Binding MUST be verified prior to usage of + this object. + jsonPath: .status.boundVolumeSnapshotContentName + name: SnapshotContent + type: string + - description: Timestamp when the point-in-time snapshot was taken by the underlying + storage system. + jsonPath: .status.creationTime + name: CreationTime + type: date + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: VolumeSnapshot is a user's request for either creating a point-in-time + snapshot of a persistent volume, or binding to a pre-existing snapshot. + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the latest + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the client + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + spec: + description: 'spec defines the desired characteristics of a snapshot requested + by a user. More info: https://kubernetes.io/docs/concepts/storage/volume-snapshots#volumesnapshots + Required.' + properties: + source: + description: source specifies where a snapshot will be created from. + This field is immutable after creation. Required. + properties: + persistentVolumeClaimName: + description: persistentVolumeClaimName specifies the name of the + PersistentVolumeClaim object representing the volume from which + a snapshot should be created. This PVC is assumed to be in the + same namespace as the VolumeSnapshot object. This field should + be set if the snapshot does not exists, and needs to be created. + This field is immutable. + type: string + volumeSnapshotContentName: + description: volumeSnapshotContentName specifies the name of a + pre-existing VolumeSnapshotContent object representing an existing + volume snapshot. This field should be set if the snapshot already + exists and only needs a representation in Kubernetes. This field + is immutable. + type: string + type: object + oneOf: + - required: ["persistentVolumeClaimName"] + - required: ["volumeSnapshotContentName"] + volumeSnapshotClassName: + description: 'VolumeSnapshotClassName is the name of the VolumeSnapshotClass + requested by the VolumeSnapshot. VolumeSnapshotClassName may be + left nil to indicate that the default SnapshotClass should be used. + A given cluster may have multiple default Volume SnapshotClasses: + one default per CSI Driver. If a VolumeSnapshot does not specify + a SnapshotClass, VolumeSnapshotSource will be checked to figure + out what the associated CSI Driver is, and the default VolumeSnapshotClass + associated with that CSI Driver will be used. If more than one VolumeSnapshotClass + exist for a given CSI Driver and more than one have been marked + as default, CreateSnapshot will fail and generate an event. Empty + string is not allowed for this field.' + type: string + required: + - source + type: object + status: + description: status represents the current information of a snapshot. + Consumers must verify binding between VolumeSnapshot and VolumeSnapshotContent + objects is successful (by validating that both VolumeSnapshot and VolumeSnapshotContent + point at each other) before using this object. + properties: + boundVolumeSnapshotContentName: + description: 'boundVolumeSnapshotContentName is the name of the VolumeSnapshotContent + object to which this VolumeSnapshot object intends to bind to. If + not specified, it indicates that the VolumeSnapshot object has not + been successfully bound to a VolumeSnapshotContent object yet. NOTE: + To avoid possible security issues, consumers must verify binding + between VolumeSnapshot and VolumeSnapshotContent objects is successful + (by validating that both VolumeSnapshot and VolumeSnapshotContent + point at each other) before using this object.' + type: string + creationTime: + description: creationTime is the timestamp when the point-in-time + snapshot is taken by the underlying storage system. In dynamic snapshot + creation case, this field will be filled in by the snapshot controller + with the "creation_time" value returned from CSI "CreateSnapshot" + gRPC call. For a pre-existing snapshot, this field will be filled + with the "creation_time" value returned from the CSI "ListSnapshots" + gRPC call if the driver supports it. If not specified, it may indicate + that the creation time of the snapshot is unknown. + format: date-time + type: string + error: + description: error is the last observed error during snapshot creation, + if any. This field could be helpful to upper level controllers(i.e., + application controller) to decide whether they should continue on + waiting for the snapshot to be created based on the type of error + reported. The snapshot controller will keep retrying when an error + occurs during the snapshot creation. Upon success, this error field + will be cleared. + properties: + message: + description: 'message is a string detailing the encountered error + during snapshot creation if specified. NOTE: message may be + logged, and it should not contain sensitive information.' + type: string + time: + description: time is the timestamp when the error was encountered. + format: date-time + type: string + type: object + readyToUse: + description: readyToUse indicates if the snapshot is ready to be used + to restore a volume. In dynamic snapshot creation case, this field + will be filled in by the snapshot controller with the "ready_to_use" + value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing + snapshot, this field will be filled with the "ready_to_use" value + returned from the CSI "ListSnapshots" gRPC call if the driver supports + it, otherwise, this field will be set to "True". If not specified, + it means the readiness of a snapshot is unknown. + type: boolean + restoreSize: + type: string + description: restoreSize represents the minimum size of volume required + to create a volume from this snapshot. In dynamic snapshot creation + case, this field will be filled in by the snapshot controller with + the "size_bytes" value returned from CSI "CreateSnapshot" gRPC call. + For a pre-existing snapshot, this field will be filled with the + "size_bytes" value returned from the CSI "ListSnapshots" gRPC call + if the driver supports it. When restoring a volume from this snapshot, + the size of the volume MUST NOT be smaller than the restoreSize + if it is specified, otherwise the restoration will fail. If not + specified, it indicates that the size is unknown. + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + required: + - spec + type: object + served: true + storage: true + subresources: + status: {} + - additionalPrinterColumns: + - description: Indicates if the snapshot is ready to be used to restore a volume. + jsonPath: .status.readyToUse + name: ReadyToUse + type: boolean + - description: If a new snapshot needs to be created, this contains the name of the source PVC from which this snapshot was (or will be) created. + jsonPath: .spec.source.persistentVolumeClaimName + name: SourcePVC + type: string + - description: If a snapshot already exists, this contains the name of the existing VolumeSnapshotContent object representing the existing snapshot. + jsonPath: .spec.source.volumeSnapshotContentName + name: SourceSnapshotContent + type: string + - description: Represents the minimum size of volume required to rehydrate from this snapshot. + jsonPath: .status.restoreSize + name: RestoreSize + type: string + - description: The name of the VolumeSnapshotClass requested by the VolumeSnapshot. + jsonPath: .spec.volumeSnapshotClassName + name: SnapshotClass + type: string + - description: Name of the VolumeSnapshotContent object to which the VolumeSnapshot object intends to bind to. Please note that verification of binding actually requires checking both VolumeSnapshot and VolumeSnapshotContent to ensure both are pointing at each other. Binding MUST be verified prior to usage of this object. + jsonPath: .status.boundVolumeSnapshotContentName + name: SnapshotContent + type: string + - description: Timestamp when the point-in-time snapshot was taken by the underlying storage system. + jsonPath: .status.creationTime + name: CreationTime + type: date + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1beta1 + # This indicates the v1beta1 version of the custom resource is deprecated. + # API requests to this version receive a warning in the server response. + deprecated: true + # This overrides the default warning returned to clients making v1beta1 API requests. + deprecationWarning: "snapshot.storage.k8s.io/v1beta1 VolumeSnapshot is deprecated; use snapshot.storage.k8s.io/v1 VolumeSnapshot" + schema: + openAPIV3Schema: + description: VolumeSnapshot is a user's request for either creating a point-in-time snapshot of a persistent volume, or binding to a pre-existing snapshot. + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + spec: + description: 'spec defines the desired characteristics of a snapshot requested by a user. More info: https://kubernetes.io/docs/concepts/storage/volume-snapshots#volumesnapshots Required.' + properties: + source: + description: source specifies where a snapshot will be created from. This field is immutable after creation. Required. + properties: + persistentVolumeClaimName: + description: persistentVolumeClaimName specifies the name of the PersistentVolumeClaim object representing the volume from which a snapshot should be created. This PVC is assumed to be in the same namespace as the VolumeSnapshot object. This field should be set if the snapshot does not exists, and needs to be created. This field is immutable. + type: string + volumeSnapshotContentName: + description: volumeSnapshotContentName specifies the name of a pre-existing VolumeSnapshotContent object representing an existing volume snapshot. This field should be set if the snapshot already exists and only needs a representation in Kubernetes. This field is immutable. + type: string + type: object + volumeSnapshotClassName: + description: 'VolumeSnapshotClassName is the name of the VolumeSnapshotClass requested by the VolumeSnapshot. VolumeSnapshotClassName may be left nil to indicate that the default SnapshotClass should be used. A given cluster may have multiple default Volume SnapshotClasses: one default per CSI Driver. If a VolumeSnapshot does not specify a SnapshotClass, VolumeSnapshotSource will be checked to figure out what the associated CSI Driver is, and the default VolumeSnapshotClass associated with that CSI Driver will be used. If more than one VolumeSnapshotClass exist for a given CSI Driver and more than one have been marked as default, CreateSnapshot will fail and generate an event. Empty string is not allowed for this field.' + type: string + required: + - source + type: object + status: + description: status represents the current information of a snapshot. Consumers must verify binding between VolumeSnapshot and VolumeSnapshotContent objects is successful (by validating that both VolumeSnapshot and VolumeSnapshotContent point at each other) before using this object. + properties: + boundVolumeSnapshotContentName: + description: 'boundVolumeSnapshotContentName is the name of the VolumeSnapshotContent object to which this VolumeSnapshot object intends to bind to. If not specified, it indicates that the VolumeSnapshot object has not been successfully bound to a VolumeSnapshotContent object yet. NOTE: To avoid possible security issues, consumers must verify binding between VolumeSnapshot and VolumeSnapshotContent objects is successful (by validating that both VolumeSnapshot and VolumeSnapshotContent point at each other) before using this object.' + type: string + creationTime: + description: creationTime is the timestamp when the point-in-time snapshot is taken by the underlying storage system. In dynamic snapshot creation case, this field will be filled in by the snapshot controller with the "creation_time" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "creation_time" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it. If not specified, it may indicate that the creation time of the snapshot is unknown. + format: date-time + type: string + error: + description: error is the last observed error during snapshot creation, if any. This field could be helpful to upper level controllers(i.e., application controller) to decide whether they should continue on waiting for the snapshot to be created based on the type of error reported. The snapshot controller will keep retrying when an error occurs during the snapshot creation. Upon success, this error field will be cleared. + properties: + message: + description: 'message is a string detailing the encountered error during snapshot creation if specified. NOTE: message may be logged, and it should not contain sensitive information.' + type: string + time: + description: time is the timestamp when the error was encountered. + format: date-time + type: string + type: object + readyToUse: + description: readyToUse indicates if the snapshot is ready to be used to restore a volume. In dynamic snapshot creation case, this field will be filled in by the snapshot controller with the "ready_to_use" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "ready_to_use" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it, otherwise, this field will be set to "True". If not specified, it means the readiness of a snapshot is unknown. + type: boolean + restoreSize: + type: string + description: restoreSize represents the minimum size of volume required to create a volume from this snapshot. In dynamic snapshot creation case, this field will be filled in by the snapshot controller with the "size_bytes" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "size_bytes" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it. When restoring a volume from this snapshot, the size of the volume MUST NOT be smaller than the restoreSize if it is specified, otherwise the restoration will fail. If not specified, it indicates that the size is unknown. + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + required: + - spec + type: object + served: false + storage: false + subresources: + status: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.8.0 + api-approved.kubernetes.io: "https://github.com/kubernetes-csi/external-snapshotter/pull/665" + creationTimestamp: null + name: volumesnapshotclasses.snapshot.storage.k8s.io +spec: + group: snapshot.storage.k8s.io + names: + kind: VolumeSnapshotClass + listKind: VolumeSnapshotClassList + plural: volumesnapshotclasses + shortNames: + - vsclass + - vsclasses + singular: volumesnapshotclass + scope: Cluster + versions: + - additionalPrinterColumns: + - jsonPath: .driver + name: Driver + type: string + - description: Determines whether a VolumeSnapshotContent created through the + VolumeSnapshotClass should be deleted when its bound VolumeSnapshot is deleted. + jsonPath: .deletionPolicy + name: DeletionPolicy + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: VolumeSnapshotClass specifies parameters that a underlying storage + system uses when creating a volume snapshot. A specific VolumeSnapshotClass + is used by specifying its name in a VolumeSnapshot object. VolumeSnapshotClasses + are non-namespaced + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the latest + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + deletionPolicy: + description: deletionPolicy determines whether a VolumeSnapshotContent + created through the VolumeSnapshotClass should be deleted when its bound + VolumeSnapshot is deleted. Supported values are "Retain" and "Delete". + "Retain" means that the VolumeSnapshotContent and its physical snapshot + on underlying storage system are kept. "Delete" means that the VolumeSnapshotContent + and its physical snapshot on underlying storage system are deleted. + Required. + enum: + - Delete + - Retain + type: string + driver: + description: driver is the name of the storage driver that handles this + VolumeSnapshotClass. Required. + type: string + kind: + description: 'Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the client + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + parameters: + additionalProperties: + type: string + description: parameters is a key-value map with storage driver specific + parameters for creating snapshots. These values are opaque to Kubernetes. + type: object + required: + - deletionPolicy + - driver + type: object + served: true + storage: true + subresources: {} + - additionalPrinterColumns: + - jsonPath: .driver + name: Driver + type: string + - description: Determines whether a VolumeSnapshotContent created through the VolumeSnapshotClass should be deleted when its bound VolumeSnapshot is deleted. + jsonPath: .deletionPolicy + name: DeletionPolicy + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1beta1 + # This indicates the v1beta1 version of the custom resource is deprecated. + # API requests to this version receive a warning in the server response. + deprecated: true + # This overrides the default warning returned to clients making v1beta1 API requests. + deprecationWarning: "snapshot.storage.k8s.io/v1beta1 VolumeSnapshotClass is deprecated; use snapshot.storage.k8s.io/v1 VolumeSnapshotClass" + schema: + openAPIV3Schema: + description: VolumeSnapshotClass specifies parameters that a underlying storage system uses when creating a volume snapshot. A specific VolumeSnapshotClass is used by specifying its name in a VolumeSnapshot object. VolumeSnapshotClasses are non-namespaced + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + deletionPolicy: + description: deletionPolicy determines whether a VolumeSnapshotContent created through the VolumeSnapshotClass should be deleted when its bound VolumeSnapshot is deleted. Supported values are "Retain" and "Delete". "Retain" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are kept. "Delete" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are deleted. Required. + enum: + - Delete + - Retain + type: string + driver: + description: driver is the name of the storage driver that handles this VolumeSnapshotClass. Required. + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + parameters: + additionalProperties: + type: string + description: parameters is a key-value map with storage driver specific parameters for creating snapshots. These values are opaque to Kubernetes. + type: object + required: + - deletionPolicy + - driver + type: object + served: false + storage: false + subresources: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.8.0 + api-approved.kubernetes.io: "https://github.com/kubernetes-csi/external-snapshotter/pull/665" + creationTimestamp: null + name: volumesnapshotcontents.snapshot.storage.k8s.io +spec: + group: snapshot.storage.k8s.io + names: + kind: VolumeSnapshotContent + listKind: VolumeSnapshotContentList + plural: volumesnapshotcontents + shortNames: + - vsc + - vscs + singular: volumesnapshotcontent + scope: Cluster + versions: + - additionalPrinterColumns: + - description: Indicates if the snapshot is ready to be used to restore a volume. + jsonPath: .status.readyToUse + name: ReadyToUse + type: boolean + - description: Represents the complete size of the snapshot in bytes + jsonPath: .status.restoreSize + name: RestoreSize + type: integer + - description: Determines whether this VolumeSnapshotContent and its physical + snapshot on the underlying storage system should be deleted when its bound + VolumeSnapshot is deleted. + jsonPath: .spec.deletionPolicy + name: DeletionPolicy + type: string + - description: Name of the CSI driver used to create the physical snapshot on + the underlying storage system. + jsonPath: .spec.driver + name: Driver + type: string + - description: Name of the VolumeSnapshotClass to which this snapshot belongs. + jsonPath: .spec.volumeSnapshotClassName + name: VolumeSnapshotClass + type: string + - description: Name of the VolumeSnapshot object to which this VolumeSnapshotContent + object is bound. + jsonPath: .spec.volumeSnapshotRef.name + name: VolumeSnapshot + type: string + - description: Namespace of the VolumeSnapshot object to which this VolumeSnapshotContent object is bound. + jsonPath: .spec.volumeSnapshotRef.namespace + name: VolumeSnapshotNamespace + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: VolumeSnapshotContent represents the actual "on-disk" snapshot + object in the underlying storage system + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the latest + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the client + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + spec: + description: spec defines properties of a VolumeSnapshotContent created + by the underlying storage system. Required. + properties: + deletionPolicy: + description: deletionPolicy determines whether this VolumeSnapshotContent + and its physical snapshot on the underlying storage system should + be deleted when its bound VolumeSnapshot is deleted. Supported values + are "Retain" and "Delete". "Retain" means that the VolumeSnapshotContent + and its physical snapshot on underlying storage system are kept. + "Delete" means that the VolumeSnapshotContent and its physical snapshot + on underlying storage system are deleted. For dynamically provisioned + snapshots, this field will automatically be filled in by the CSI + snapshotter sidecar with the "DeletionPolicy" field defined in the + corresponding VolumeSnapshotClass. For pre-existing snapshots, users + MUST specify this field when creating the VolumeSnapshotContent + object. Required. + enum: + - Delete + - Retain + type: string + driver: + description: driver is the name of the CSI driver used to create the + physical snapshot on the underlying storage system. This MUST be + the same as the name returned by the CSI GetPluginName() call for + that driver. Required. + type: string + source: + description: source specifies whether the snapshot is (or should be) + dynamically provisioned or already exists, and just requires a Kubernetes + object representation. This field is immutable after creation. Required. + properties: + snapshotHandle: + description: snapshotHandle specifies the CSI "snapshot_id" of + a pre-existing snapshot on the underlying storage system for + which a Kubernetes object representation was (or should be) + created. This field is immutable. + type: string + volumeHandle: + description: volumeHandle specifies the CSI "volume_id" of the + volume from which a snapshot should be dynamically taken from. + This field is immutable. + type: string + type: object + oneOf: + - required: ["snapshotHandle"] + - required: ["volumeHandle"] + sourceVolumeMode: + description: SourceVolumeMode is the mode of the volume whose snapshot + is taken. Can be either “Filesystem” or “Block”. If not specified, + it indicates the source volume's mode is unknown. This field is + immutable. This field is an alpha field. + type: string + volumeSnapshotClassName: + description: name of the VolumeSnapshotClass from which this snapshot + was (or will be) created. Note that after provisioning, the VolumeSnapshotClass + may be deleted or recreated with different set of values, and as + such, should not be referenced post-snapshot creation. + type: string + volumeSnapshotRef: + description: volumeSnapshotRef specifies the VolumeSnapshot object + to which this VolumeSnapshotContent object is bound. VolumeSnapshot.Spec.VolumeSnapshotContentName + field must reference to this VolumeSnapshotContent's name for the + bidirectional binding to be valid. For a pre-existing VolumeSnapshotContent + object, name and namespace of the VolumeSnapshot object MUST be + provided for binding to happen. This field is immutable after creation. + Required. + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: 'If referring to a piece of an object instead of + an entire object, this string should contain a valid JSON/Go + field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container within + a pod, this would take on a value like: "spec.containers{name}" + (where "name" refers to the name of the container that triggered + the event) or if no container name is specified "spec.containers[2]" + (container with index 2 in this pod). This syntax is chosen + only to have some well-defined way of referencing a part of + an object. TODO: this design is not final and this field is + subject to change in the future.' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + type: string + resourceVersion: + description: 'Specific resourceVersion to which this reference + is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + type: string + uid: + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + type: string + type: object + required: + - deletionPolicy + - driver + - source + - volumeSnapshotRef + type: object + status: + description: status represents the current information of a snapshot. + properties: + creationTime: + description: creationTime is the timestamp when the point-in-time + snapshot is taken by the underlying storage system. In dynamic snapshot + creation case, this field will be filled in by the CSI snapshotter + sidecar with the "creation_time" value returned from CSI "CreateSnapshot" + gRPC call. For a pre-existing snapshot, this field will be filled + with the "creation_time" value returned from the CSI "ListSnapshots" + gRPC call if the driver supports it. If not specified, it indicates + the creation time is unknown. The format of this field is a Unix + nanoseconds time encoded as an int64. On Unix, the command `date + +%s%N` returns the current time in nanoseconds since 1970-01-01 + 00:00:00 UTC. + format: int64 + type: integer + error: + description: error is the last observed error during snapshot creation, + if any. Upon success after retry, this error field will be cleared. + properties: + message: + description: 'message is a string detailing the encountered error + during snapshot creation if specified. NOTE: message may be + logged, and it should not contain sensitive information.' + type: string + time: + description: time is the timestamp when the error was encountered. + format: date-time + type: string + type: object + readyToUse: + description: readyToUse indicates if a snapshot is ready to be used + to restore a volume. In dynamic snapshot creation case, this field + will be filled in by the CSI snapshotter sidecar with the "ready_to_use" + value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing + snapshot, this field will be filled with the "ready_to_use" value + returned from the CSI "ListSnapshots" gRPC call if the driver supports + it, otherwise, this field will be set to "True". If not specified, + it means the readiness of a snapshot is unknown. + type: boolean + restoreSize: + description: restoreSize represents the complete size of the snapshot + in bytes. In dynamic snapshot creation case, this field will be + filled in by the CSI snapshotter sidecar with the "size_bytes" value + returned from CSI "CreateSnapshot" gRPC call. For a pre-existing + snapshot, this field will be filled with the "size_bytes" value + returned from the CSI "ListSnapshots" gRPC call if the driver supports + it. When restoring a volume from this snapshot, the size of the + volume MUST NOT be smaller than the restoreSize if it is specified, + otherwise the restoration will fail. If not specified, it indicates + that the size is unknown. + format: int64 + minimum: 0 + type: integer + snapshotHandle: + description: snapshotHandle is the CSI "snapshot_id" of a snapshot + on the underlying storage system. If not specified, it indicates + that dynamic snapshot creation has either failed or it is still + in progress. + type: string + type: object + required: + - spec + type: object + served: true + storage: true + subresources: + status: {} + - additionalPrinterColumns: + - description: Indicates if the snapshot is ready to be used to restore a volume. + jsonPath: .status.readyToUse + name: ReadyToUse + type: boolean + - description: Represents the complete size of the snapshot in bytes + jsonPath: .status.restoreSize + name: RestoreSize + type: integer + - description: Determines whether this VolumeSnapshotContent and its physical snapshot on the underlying storage system should be deleted when its bound VolumeSnapshot is deleted. + jsonPath: .spec.deletionPolicy + name: DeletionPolicy + type: string + - description: Name of the CSI driver used to create the physical snapshot on the underlying storage system. + jsonPath: .spec.driver + name: Driver + type: string + - description: Name of the VolumeSnapshotClass to which this snapshot belongs. + jsonPath: .spec.volumeSnapshotClassName + name: VolumeSnapshotClass + type: string + - description: Name of the VolumeSnapshot object to which this VolumeSnapshotContent object is bound. + jsonPath: .spec.volumeSnapshotRef.name + name: VolumeSnapshot + type: string + - description: Namespace of the VolumeSnapshot object to which this VolumeSnapshotContent object is bound. + jsonPath: .spec.volumeSnapshotRef.namespace + name: VolumeSnapshotNamespace + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1beta1 + # This indicates the v1beta1 version of the custom resource is deprecated. + # API requests to this version receive a warning in the server response. + deprecated: true + # This overrides the default warning returned to clients making v1beta1 API requests. + deprecationWarning: "snapshot.storage.k8s.io/v1beta1 VolumeSnapshotContent is deprecated; use snapshot.storage.k8s.io/v1 VolumeSnapshotContent" + schema: + openAPIV3Schema: + description: VolumeSnapshotContent represents the actual "on-disk" snapshot object in the underlying storage system + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + spec: + description: spec defines properties of a VolumeSnapshotContent created by the underlying storage system. Required. + properties: + deletionPolicy: + description: deletionPolicy determines whether this VolumeSnapshotContent and its physical snapshot on the underlying storage system should be deleted when its bound VolumeSnapshot is deleted. Supported values are "Retain" and "Delete". "Retain" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are kept. "Delete" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are deleted. For dynamically provisioned snapshots, this field will automatically be filled in by the CSI snapshotter sidecar with the "DeletionPolicy" field defined in the corresponding VolumeSnapshotClass. For pre-existing snapshots, users MUST specify this field when creating the VolumeSnapshotContent object. Required. + enum: + - Delete + - Retain + type: string + driver: + description: driver is the name of the CSI driver used to create the physical snapshot on the underlying storage system. This MUST be the same as the name returned by the CSI GetPluginName() call for that driver. Required. + type: string + source: + description: source specifies whether the snapshot is (or should be) dynamically provisioned or already exists, and just requires a Kubernetes object representation. This field is immutable after creation. Required. + properties: + snapshotHandle: + description: snapshotHandle specifies the CSI "snapshot_id" of a pre-existing snapshot on the underlying storage system for which a Kubernetes object representation was (or should be) created. This field is immutable. + type: string + volumeHandle: + description: volumeHandle specifies the CSI "volume_id" of the volume from which a snapshot should be dynamically taken from. This field is immutable. + type: string + type: object + volumeSnapshotClassName: + description: name of the VolumeSnapshotClass from which this snapshot was (or will be) created. Note that after provisioning, the VolumeSnapshotClass may be deleted or recreated with different set of values, and as such, should not be referenced post-snapshot creation. + type: string + volumeSnapshotRef: + description: volumeSnapshotRef specifies the VolumeSnapshot object to which this VolumeSnapshotContent object is bound. VolumeSnapshot.Spec.VolumeSnapshotContentName field must reference to this VolumeSnapshotContent's name for the bidirectional binding to be valid. For a pre-existing VolumeSnapshotContent object, name and namespace of the VolumeSnapshot object MUST be provided for binding to happen. This field is immutable after creation. Required. + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. TODO: this design is not final and this field is subject to change in the future.' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + type: string + resourceVersion: + description: 'Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + type: string + uid: + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + type: string + type: object + required: + - deletionPolicy + - driver + - source + - volumeSnapshotRef + type: object + status: + description: status represents the current information of a snapshot. + properties: + creationTime: + description: creationTime is the timestamp when the point-in-time snapshot is taken by the underlying storage system. In dynamic snapshot creation case, this field will be filled in by the CSI snapshotter sidecar with the "creation_time" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "creation_time" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it. If not specified, it indicates the creation time is unknown. The format of this field is a Unix nanoseconds time encoded as an int64. On Unix, the command `date +%s%N` returns the current time in nanoseconds since 1970-01-01 00:00:00 UTC. + format: int64 + type: integer + error: + description: error is the last observed error during snapshot creation, if any. Upon success after retry, this error field will be cleared. + properties: + message: + description: 'message is a string detailing the encountered error during snapshot creation if specified. NOTE: message may be logged, and it should not contain sensitive information.' + type: string + time: + description: time is the timestamp when the error was encountered. + format: date-time + type: string + type: object + readyToUse: + description: readyToUse indicates if a snapshot is ready to be used to restore a volume. In dynamic snapshot creation case, this field will be filled in by the CSI snapshotter sidecar with the "ready_to_use" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "ready_to_use" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it, otherwise, this field will be set to "True". If not specified, it means the readiness of a snapshot is unknown. + type: boolean + restoreSize: + description: restoreSize represents the complete size of the snapshot in bytes. In dynamic snapshot creation case, this field will be filled in by the CSI snapshotter sidecar with the "size_bytes" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "size_bytes" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it. When restoring a volume from this snapshot, the size of the volume MUST NOT be smaller than the restoreSize if it is specified, otherwise the restoration will fail. If not specified, it indicates that the size is unknown. + format: int64 + minimum: 0 + type: integer + snapshotHandle: + description: snapshotHandle is the CSI "snapshot_id" of a snapshot on the underlying storage system. If not specified, it indicates that dynamic snapshot creation has either failed or it is still in progress. + type: string + type: object + required: + - spec + type: object + served: false + storage: false + subresources: + status: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] diff --git a/deploy/v1.29.10/csi-azuredisk-controller.yaml b/deploy/v1.29.10/csi-azuredisk-controller.yaml new file mode 100644 index 0000000000..1d8ca6d5dc --- /dev/null +++ b/deploy/v1.29.10/csi-azuredisk-controller.yaml @@ -0,0 +1,216 @@ +--- +kind: Deployment +apiVersion: apps/v1 +metadata: + name: csi-azuredisk-controller + namespace: kube-system +spec: + replicas: 2 + selector: + matchLabels: + app: csi-azuredisk-controller + template: + metadata: + labels: + app: csi-azuredisk-controller + spec: + hostNetwork: true + serviceAccountName: csi-azuredisk-controller-sa + nodeSelector: + kubernetes.io/os: linux # add "kubernetes.io/role: master" to run controller on master node + priorityClassName: system-cluster-critical + securityContext: + seccompProfile: + type: RuntimeDefault + tolerations: + - key: "node-role.kubernetes.io/master" + operator: "Exists" + effect: "NoSchedule" + - key: "node-role.kubernetes.io/controlplane" + operator: "Exists" + effect: "NoSchedule" + - key: "node-role.kubernetes.io/control-plane" + operator: "Exists" + effect: "NoSchedule" + containers: + - name: csi-provisioner + image: mcr.microsoft.com/oss/kubernetes-csi/csi-provisioner:v5.1.0 + args: + - "--feature-gates=Topology=true,HonorPVReclaimPolicy=true" + - "--csi-address=$(ADDRESS)" + - "--v=2" + - "--timeout=30s" + - "--leader-election" + - "--leader-election-namespace=kube-system" + - "--worker-threads=100" + - "--extra-create-metadata=true" + - "--strict-topology=true" + - "--kube-api-qps=50" + - "--kube-api-burst=100" + env: + - name: ADDRESS + value: /csi/csi.sock + volumeMounts: + - mountPath: /csi + name: socket-dir + resources: + limits: + memory: 500Mi + requests: + cpu: 10m + memory: 20Mi + securityContext: + capabilities: + drop: + - ALL + - name: csi-attacher + image: mcr.microsoft.com/oss/kubernetes-csi/csi-attacher:v4.7.0 + args: + - "-v=2" + - "-csi-address=$(ADDRESS)" + - "-timeout=1200s" + - "-leader-election" + - "--leader-election-namespace=kube-system" + - "-worker-threads=1000" + - "-kube-api-qps=200" + - "-kube-api-burst=400" + env: + - name: ADDRESS + value: /csi/csi.sock + volumeMounts: + - mountPath: /csi + name: socket-dir + resources: + limits: + memory: 500Mi + requests: + cpu: 10m + memory: 20Mi + securityContext: + capabilities: + drop: + - ALL + - name: csi-snapshotter + image: mcr.microsoft.com/oss/kubernetes-csi/csi-snapshotter:v8.1.0 + args: + - "-csi-address=$(ADDRESS)" + - "-leader-election" + - "--leader-election-namespace=kube-system" + - "--v=2" + - "--timeout=1200s" + env: + - name: ADDRESS + value: /csi/csi.sock + volumeMounts: + - name: socket-dir + mountPath: /csi + resources: + limits: + memory: 200Mi + requests: + cpu: 10m + memory: 20Mi + securityContext: + capabilities: + drop: + - ALL + - name: csi-resizer + image: mcr.microsoft.com/oss/kubernetes-csi/csi-resizer:v1.12.0 + args: + - "-csi-address=$(ADDRESS)" + - "-v=2" + - "-leader-election" + - "--leader-election-namespace=kube-system" + - '-handle-volume-inuse-error=false' + - '-feature-gates=RecoverVolumeExpansionFailure=true' + - "-timeout=240s" + env: + - name: ADDRESS + value: /csi/csi.sock + volumeMounts: + - name: socket-dir + mountPath: /csi + resources: + limits: + memory: 500Mi + requests: + cpu: 10m + memory: 20Mi + securityContext: + capabilities: + drop: + - ALL + - name: liveness-probe + image: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe:v2.14.0 + args: + - --csi-address=/csi/csi.sock + - --probe-timeout=3s + - --http-endpoint=localhost:29602 + - --v=2 + volumeMounts: + - name: socket-dir + mountPath: /csi + resources: + limits: + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi + securityContext: + capabilities: + drop: + - ALL + - name: azuredisk + image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.10 + imagePullPolicy: IfNotPresent + args: + - "--v=5" + - "--endpoint=$(CSI_ENDPOINT)" + - "--metrics-address=0.0.0.0:29604" + - "--user-agent-suffix=OSS-kubectl" + - "--disable-avset-nodes=false" + - "--allow-empty-cloud-config=false" + ports: + - containerPort: 29604 + name: metrics + protocol: TCP + livenessProbe: + failureThreshold: 5 + httpGet: + host: localhost + path: /healthz + port: 29602 + initialDelaySeconds: 30 + timeoutSeconds: 10 + periodSeconds: 30 + env: + - name: AZURE_CREDENTIAL_FILE + valueFrom: + configMapKeyRef: + name: azure-cred-file + key: path + optional: true + - name: CSI_ENDPOINT + value: unix:///csi/csi.sock + volumeMounts: + - mountPath: /csi + name: socket-dir + - mountPath: /etc/kubernetes/ + name: azure-cred + resources: + limits: + memory: 500Mi + requests: + cpu: 10m + memory: 20Mi + securityContext: + capabilities: + drop: + - ALL + volumes: + - name: socket-dir + emptyDir: {} + - name: azure-cred + hostPath: + path: /etc/kubernetes/ + type: DirectoryOrCreate diff --git a/deploy/v1.29.10/csi-azuredisk-driver.yaml b/deploy/v1.29.10/csi-azuredisk-driver.yaml new file mode 100644 index 0000000000..0ff59b2f28 --- /dev/null +++ b/deploy/v1.29.10/csi-azuredisk-driver.yaml @@ -0,0 +1,12 @@ +--- +apiVersion: storage.k8s.io/v1 +kind: CSIDriver +metadata: + name: disk.csi.azure.com + annotations: + csiDriver: v1.29.0 + snapshot: v6.2.1 +spec: + attachRequired: true + podInfoOnMount: false + fsGroupPolicy: File diff --git a/deploy/v1.29.10/csi-azuredisk-node-windows-hostprocess.yaml b/deploy/v1.29.10/csi-azuredisk-node-windows-hostprocess.yaml new file mode 100644 index 0000000000..87fec6e06d --- /dev/null +++ b/deploy/v1.29.10/csi-azuredisk-node-windows-hostprocess.yaml @@ -0,0 +1,120 @@ +--- +kind: DaemonSet +apiVersion: apps/v1 +metadata: + name: csi-azuredisk-node-win + namespace: kube-system +spec: + updateStrategy: + rollingUpdate: + maxUnavailable: 1 + type: RollingUpdate + selector: + matchLabels: + app: csi-azuredisk-node-win + template: + metadata: + labels: + app: csi-azuredisk-node-win + spec: + serviceAccountName: csi-azuredisk-node-sa + tolerations: + - key: "node.kubernetes.io/os" + operator: "Exists" + effect: "NoSchedule" + nodeSelector: + kubernetes.io/os: windows + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: type + operator: NotIn + values: + - virtual-kubelet + priorityClassName: system-node-critical + securityContext: + windowsOptions: + hostProcess: true + runAsUserName: "NT AUTHORITY\\SYSTEM" + hostNetwork: true + initContainers: + - name: init + image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.10-windows-hp + imagePullPolicy: IfNotPresent + command: + - "powershell.exe" + - "-c" + - "New-Item -ItemType Directory -Path C:\\var\\lib\\kubelet\\plugins\\disk.csi.azure.com\\ -Force" + securityContext: + capabilities: + drop: + - ALL + containers: + - name: node-driver-registrar + image: mcr.microsoft.com/oss/kubernetes-csi/csi-node-driver-registrar:v2.12.0 + imagePullPolicy: IfNotPresent + command: + - "csi-node-driver-registrar.exe" + args: + - "--v=2" + - "--csi-address=$(CSI_ENDPOINT)" + - "--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)" + - "--plugin-registration-path=$(PLUGIN_REG_DIR)" + env: + - name: CSI_ENDPOINT + value: unix://C:\\var\\lib\\kubelet\\plugins\\disk.csi.azure.com\\csi.sock + - name: DRIVER_REG_SOCK_PATH + value: C:\\var\\lib\\kubelet\\plugins\\disk.csi.azure.com\\csi.sock + - name: PLUGIN_REG_DIR + value: C:\\var\\lib\\kubelet\\plugins_registry\\ + - name: KUBE_NODE_NAME + valueFrom: + fieldRef: + fieldPath: spec.nodeName + resources: + limits: + memory: 150Mi + requests: + cpu: 30m + memory: 40Mi + securityContext: + capabilities: + drop: + - ALL + - name: azuredisk + image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.10-windows-hp + imagePullPolicy: IfNotPresent + command: + - "azurediskplugin.exe" + args: + - --v=5 + - --endpoint=$(CSI_ENDPOINT) + - --nodeid=$(KUBE_NODE_NAME) + - --allow-empty-cloud-config=true + - --enable-windows-host-process=true + env: + - name: AZURE_CREDENTIAL_FILE + valueFrom: + configMapKeyRef: + name: azure-cred-file + key: path-windows + optional: true + - name: CSI_ENDPOINT + value: unix://C:\\var\\lib\\kubelet\\plugins\\disk.csi.azure.com\\csi.sock + - name: KUBE_NODE_NAME + valueFrom: + fieldRef: + apiVersion: v1 + fieldPath: spec.nodeName + resources: + limits: + memory: 600Mi + requests: + cpu: 10m + memory: 40Mi + securityContext: + capabilities: + drop: + - ALL diff --git a/deploy/v1.29.10/csi-azuredisk-node-windows.yaml b/deploy/v1.29.10/csi-azuredisk-node-windows.yaml new file mode 100644 index 0000000000..60f6a11940 --- /dev/null +++ b/deploy/v1.29.10/csi-azuredisk-node-windows.yaml @@ -0,0 +1,206 @@ +--- +kind: DaemonSet +apiVersion: apps/v1 +metadata: + name: csi-azuredisk-node-win + namespace: kube-system +spec: + updateStrategy: + rollingUpdate: + maxUnavailable: 1 + type: RollingUpdate + selector: + matchLabels: + app: csi-azuredisk-node-win + template: + metadata: + labels: + app: csi-azuredisk-node-win + spec: + serviceAccountName: csi-azuredisk-node-sa + tolerations: + - key: "node.kubernetes.io/os" + operator: "Exists" + effect: "NoSchedule" + nodeSelector: + kubernetes.io/os: windows + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: type + operator: NotIn + values: + - virtual-kubelet + priorityClassName: system-node-critical + securityContext: + seccompProfile: + type: RuntimeDefault + containers: + - name: liveness-probe + volumeMounts: + - mountPath: C:\csi + name: plugin-dir + image: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe:v2.14.0 + args: + - "--csi-address=$(CSI_ENDPOINT)" + - "--probe-timeout=30s" + - "--health-port=29603" + - "--v=2" + env: + - name: CSI_ENDPOINT + value: unix://C:\\csi\\csi.sock + resources: + limits: + memory: 150Mi + requests: + cpu: 10m + memory: 40Mi + securityContext: + capabilities: + drop: + - ALL + - name: node-driver-registrar + image: mcr.microsoft.com/oss/kubernetes-csi/csi-node-driver-registrar:v2.12.0 + args: + - "--v=2" + - "--csi-address=$(CSI_ENDPOINT)" + - "--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)" + livenessProbe: + exec: + command: + - /csi-node-driver-registrar.exe + - --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH) + - --mode=kubelet-registration-probe + initialDelaySeconds: 60 + timeoutSeconds: 30 + env: + - name: CSI_ENDPOINT + value: unix://C:\\csi\\csi.sock + - name: DRIVER_REG_SOCK_PATH + value: C:\\var\\lib\\kubelet\\plugins\\disk.csi.azure.com\\csi.sock + - name: KUBE_NODE_NAME + valueFrom: + fieldRef: + fieldPath: spec.nodeName + volumeMounts: + - name: kubelet-dir + mountPath: "C:\\var\\lib\\kubelet" + - name: plugin-dir + mountPath: C:\csi + - name: registration-dir + mountPath: C:\registration + resources: + limits: + memory: 150Mi + requests: + cpu: 30m + memory: 40Mi + securityContext: + capabilities: + drop: + - ALL + - name: azuredisk + image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.10 + imagePullPolicy: IfNotPresent + args: + - "--v=5" + - "--endpoint=$(CSI_ENDPOINT)" + - "--nodeid=$(KUBE_NODE_NAME)" + - "--allow-empty-cloud-config=true" + - "--get-node-info-from-labels=false" + ports: + - containerPort: 29603 + name: healthz + protocol: TCP + livenessProbe: + failureThreshold: 5 + httpGet: + path: /healthz + port: healthz + initialDelaySeconds: 60 + timeoutSeconds: 30 + periodSeconds: 30 + env: + - name: AZURE_CREDENTIAL_FILE + valueFrom: + configMapKeyRef: + name: azure-cred-file + key: path-windows + optional: true + - name: CSI_ENDPOINT + value: unix://C:\\csi\\csi.sock + - name: KUBE_NODE_NAME + valueFrom: + fieldRef: + apiVersion: v1 + fieldPath: spec.nodeName + volumeMounts: + - name: kubelet-dir + mountPath: "C:\\var\\lib\\kubelet" + - name: plugin-dir + mountPath: C:\csi + - name: azure-config + mountPath: C:\k + - name: csi-proxy-fs-pipe-v1 + mountPath: \\.\pipe\csi-proxy-filesystem-v1 + - name: csi-proxy-disk-pipe-v1 + mountPath: \\.\pipe\csi-proxy-disk-v1 + - name: csi-proxy-volume-pipe-v1 + mountPath: \\.\pipe\csi-proxy-volume-v1 + # these paths are still included for compatibility, they're used + # only if the node has still the beta version of the CSI proxy + - name: csi-proxy-fs-pipe-v1beta1 + mountPath: \\.\pipe\csi-proxy-filesystem-v1beta1 + - name: csi-proxy-disk-pipe-v1beta2 + mountPath: \\.\pipe\csi-proxy-disk-v1beta2 + - name: csi-proxy-volume-pipe-v1beta2 + mountPath: \\.\pipe\csi-proxy-volume-v1beta2 + resources: + limits: + memory: 600Mi + requests: + cpu: 10m + memory: 40Mi + securityContext: + capabilities: + drop: + - ALL + volumes: + - name: csi-proxy-fs-pipe-v1 + hostPath: + path: \\.\pipe\csi-proxy-filesystem-v1 + - name: csi-proxy-disk-pipe-v1 + hostPath: + path: \\.\pipe\csi-proxy-disk-v1 + - name: csi-proxy-volume-pipe-v1 + hostPath: + path: \\.\pipe\csi-proxy-volume-v1 + # these paths are still included for compatibility, they're used + # only if the node has still the beta version of the CSI proxy + - name: csi-proxy-fs-pipe-v1beta1 + hostPath: + path: \\.\pipe\csi-proxy-filesystem-v1beta1 + - name: csi-proxy-disk-pipe-v1beta2 + hostPath: + path: \\.\pipe\csi-proxy-disk-v1beta2 + - name: csi-proxy-volume-pipe-v1beta2 + hostPath: + path: \\.\pipe\csi-proxy-volume-v1beta2 + - name: registration-dir + hostPath: + path: C:\var\lib\kubelet\plugins_registry\ + type: Directory + - name: kubelet-dir + hostPath: + path: C:\var\lib\kubelet\ + type: Directory + - name: plugin-dir + hostPath: + path: C:\var\lib\kubelet\plugins\disk.csi.azure.com\ + type: DirectoryOrCreate + - name: azure-config + hostPath: + path: C:\k + type: DirectoryOrCreate diff --git a/deploy/v1.29.10/csi-azuredisk-node.yaml b/deploy/v1.29.10/csi-azuredisk-node.yaml new file mode 100644 index 0000000000..e9fc400555 --- /dev/null +++ b/deploy/v1.29.10/csi-azuredisk-node.yaml @@ -0,0 +1,186 @@ +--- +kind: DaemonSet +apiVersion: apps/v1 +metadata: + name: csi-azuredisk-node + namespace: kube-system +spec: + updateStrategy: + rollingUpdate: + maxUnavailable: 1 + type: RollingUpdate + selector: + matchLabels: + app: csi-azuredisk-node + template: + metadata: + labels: + app: csi-azuredisk-node + spec: + hostNetwork: true + dnsPolicy: Default + serviceAccountName: csi-azuredisk-node-sa + nodeSelector: + kubernetes.io/os: linux + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: type + operator: NotIn + values: + - virtual-kubelet + priorityClassName: system-node-critical + securityContext: + seccompProfile: + type: RuntimeDefault + tolerations: + - operator: "Exists" + containers: + - name: liveness-probe + volumeMounts: + - mountPath: /csi + name: socket-dir + image: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe:v2.14.0 + args: + - --csi-address=/csi/csi.sock + - --probe-timeout=3s + - --http-endpoint=localhost:29603 + - --v=2 + resources: + limits: + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi + securityContext: + capabilities: + drop: + - ALL + - name: node-driver-registrar + image: mcr.microsoft.com/oss/kubernetes-csi/csi-node-driver-registrar:v2.12.0 + args: + - --csi-address=$(ADDRESS) + - --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH) + - --v=2 + livenessProbe: + exec: + command: + - /csi-node-driver-registrar + - --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH) + - --mode=kubelet-registration-probe + initialDelaySeconds: 30 + timeoutSeconds: 15 + env: + - name: ADDRESS + value: /csi/csi.sock + - name: DRIVER_REG_SOCK_PATH + value: /var/lib/kubelet/plugins/disk.csi.azure.com/csi.sock + volumeMounts: + - name: socket-dir + mountPath: /csi + - name: registration-dir + mountPath: /registration + resources: + limits: + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi + securityContext: + capabilities: + drop: + - ALL + - name: azuredisk + image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.10 + imagePullPolicy: IfNotPresent + args: + - "--v=5" + - "--endpoint=$(CSI_ENDPOINT)" + - "--nodeid=$(KUBE_NODE_NAME)" + - "--enable-perf-optimization=true" + - "--allow-empty-cloud-config=true" + - "--get-node-info-from-labels=false" + ports: + - containerPort: 29603 + name: healthz + protocol: TCP + livenessProbe: + failureThreshold: 5 + httpGet: + host: localhost + path: /healthz + port: 29603 + initialDelaySeconds: 30 + timeoutSeconds: 10 + periodSeconds: 30 + env: + - name: AZURE_CREDENTIAL_FILE + valueFrom: + configMapKeyRef: + name: azure-cred-file + key: path + optional: true + - name: CSI_ENDPOINT + value: unix:///csi/csi.sock + - name: KUBE_NODE_NAME + valueFrom: + fieldRef: + apiVersion: v1 + fieldPath: spec.nodeName + securityContext: + privileged: true + capabilities: + drop: + - ALL + volumeMounts: + - mountPath: /csi + name: socket-dir + - mountPath: /var/lib/kubelet/ + mountPropagation: Bidirectional + name: mountpoint-dir + - mountPath: /etc/kubernetes/ + name: azure-cred + - mountPath: /dev + name: device-dir + - mountPath: /sys/bus/scsi/devices + name: sys-devices-dir + - mountPath: /sys/class/ + name: sys-class + resources: + limits: + memory: 600Mi + requests: + cpu: 10m + memory: 20Mi + volumes: + - hostPath: + path: /var/lib/kubelet/plugins/disk.csi.azure.com + type: DirectoryOrCreate + name: socket-dir + - hostPath: + path: /var/lib/kubelet/ + type: DirectoryOrCreate + name: mountpoint-dir + - hostPath: + path: /var/lib/kubelet/plugins_registry/ + type: DirectoryOrCreate + name: registration-dir + - hostPath: + path: /etc/kubernetes/ + type: DirectoryOrCreate + name: azure-cred + - hostPath: + path: /dev + type: Directory + name: device-dir + - hostPath: + path: /sys/bus/scsi/devices + type: Directory + name: sys-devices-dir + - hostPath: + path: /sys/class/ + type: Directory + name: sys-class +--- diff --git a/deploy/v1.29.10/csi-snapshot-controller.yaml b/deploy/v1.29.10/csi-snapshot-controller.yaml new file mode 100644 index 0000000000..acec93420a --- /dev/null +++ b/deploy/v1.29.10/csi-snapshot-controller.yaml @@ -0,0 +1,62 @@ +--- +kind: Deployment +apiVersion: apps/v1 +metadata: + name: csi-snapshot-controller + namespace: kube-system +spec: + replicas: 2 + selector: + matchLabels: + app: csi-snapshot-controller + # the snapshot controller won't be marked as ready if the v1 CRDs are unavailable + # in #504 the snapshot-controller will exit after around 7.5 seconds if it + # can't find the v1 CRDs so this value should be greater than that + minReadySeconds: 15 + strategy: + rollingUpdate: + maxSurge: 0 + maxUnavailable: 1 + type: RollingUpdate + template: + metadata: + labels: + app: csi-snapshot-controller + spec: + serviceAccountName: csi-snapshot-controller-sa + nodeSelector: + kubernetes.io/os: linux + priorityClassName: system-cluster-critical + securityContext: + seccompProfile: + type: RuntimeDefault + tolerations: + - key: "node-role.kubernetes.io/master" + operator: "Equal" + value: "true" + effect: "NoSchedule" + - key: "node-role.kubernetes.io/controlplane" + operator: "Equal" + value: "true" + effect: "NoSchedule" + - key: "node-role.kubernetes.io/control-plane" + operator: "Equal" + value: "true" + effect: "NoSchedule" + containers: + - name: csi-snapshot-controller + image: mcr.microsoft.com/oss/kubernetes-csi/snapshot-controller:v8.1.0 + args: + - "--v=2" + - "--leader-election=true" + - "--leader-election-namespace=kube-system" + resources: + limits: + memory: 300Mi + requests: + cpu: 10m + memory: 20Mi + securityContext: + capabilities: + drop: + - ALL diff --git a/deploy/v1.29.10/rbac-csi-azuredisk-controller.yaml b/deploy/v1.29.10/rbac-csi-azuredisk-controller.yaml new file mode 100644 index 0000000000..ad76077f59 --- /dev/null +++ b/deploy/v1.29.10/rbac-csi-azuredisk-controller.yaml @@ -0,0 +1,196 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: csi-azuredisk-controller-sa + namespace: kube-system +--- + +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: azuredisk-external-provisioner-role +rules: + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch", "create", "patch", "delete"] + - apiGroups: [""] + resources: ["persistentvolumeclaims"] + verbs: ["get", "list", "watch", "update"] + - apiGroups: ["storage.k8s.io"] + resources: ["storageclasses"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["events"] + verbs: ["get", "list", "watch", "create", "update", "patch"] + - apiGroups: ["storage.k8s.io"] + resources: ["csinodes"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["nodes"] + verbs: ["get", "list", "watch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshots"] + verbs: ["get", "list"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents"] + verbs: ["get", "list"] + - apiGroups: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "watch", "list", "delete", "update", "create", "patch"] +--- + +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: azuredisk-csi-provisioner-binding +subjects: + - kind: ServiceAccount + name: csi-azuredisk-controller-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: azuredisk-external-provisioner-role + apiGroup: rbac.authorization.k8s.io + +--- + +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: azuredisk-external-attacher-role +rules: + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch", "update"] + - apiGroups: [""] + resources: ["nodes"] + verbs: ["get", "list", "watch"] + - apiGroups: ["csi.storage.k8s.io"] + resources: ["csinodeinfos"] + verbs: ["get", "list", "watch"] + - apiGroups: ["storage.k8s.io"] + resources: ["volumeattachments"] + verbs: ["get", "list", "watch", "update", "patch"] + - apiGroups: ["storage.k8s.io"] + resources: ["volumeattachments/status"] + verbs: ["get", "list", "watch", "update", "patch"] + - apiGroups: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "watch", "list", "delete", "update", "create", "patch"] +--- + +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: azuredisk-csi-attacher-binding +subjects: + - kind: ServiceAccount + name: csi-azuredisk-controller-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: azuredisk-external-attacher-role + apiGroup: rbac.authorization.k8s.io + +--- + +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: azuredisk-external-snapshotter-role +rules: + - apiGroups: [""] + resources: ["events"] + verbs: ["list", "watch", "create", "update", "patch"] + - apiGroups: [""] + resources: ["secrets"] + verbs: ["get"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotclasses"] + verbs: ["get", "list", "watch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents"] + verbs: ["create", "get", "list", "watch", "update", "delete", "patch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents/status"] + verbs: ["update", "patch"] + - apiGroups: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "watch", "list", "delete", "update", "create", "patch"] +--- + +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: azuredisk-csi-snapshotter-binding +subjects: + - kind: ServiceAccount + name: csi-azuredisk-controller-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: azuredisk-external-snapshotter-role + apiGroup: rbac.authorization.k8s.io +--- + +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: azuredisk-external-resizer-role +rules: + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch", "update", "patch"] + - apiGroups: [""] + resources: ["persistentvolumeclaims"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["persistentvolumeclaims/status"] + verbs: ["update", "patch"] + - apiGroups: [""] + resources: ["events"] + verbs: ["list", "watch", "create", "update", "patch"] + - apiGroups: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "watch", "list", "delete", "update", "create", "patch"] + - apiGroups: [""] + resources: ["pods"] + verbs: ["get", "list", "watch"] +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: azuredisk-csi-resizer-role +subjects: + - kind: ServiceAccount + name: csi-azuredisk-controller-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: azuredisk-external-resizer-role + apiGroup: rbac.authorization.k8s.io + +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-azuredisk-controller-secret-role +rules: + - apiGroups: [""] + resources: ["secrets"] + verbs: ["get", "list"] + +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-azuredisk-controller-secret-binding +subjects: + - kind: ServiceAccount + name: csi-azuredisk-controller-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: csi-azuredisk-controller-secret-role + apiGroup: rbac.authorization.k8s.io diff --git a/deploy/v1.29.10/rbac-csi-azuredisk-node.yaml b/deploy/v1.29.10/rbac-csi-azuredisk-node.yaml new file mode 100644 index 0000000000..c77181ee14 --- /dev/null +++ b/deploy/v1.29.10/rbac-csi-azuredisk-node.yaml @@ -0,0 +1,33 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: csi-azuredisk-node-sa + namespace: kube-system + +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-azuredisk-node-role +rules: + - apiGroups: [""] + resources: ["secrets"] + verbs: ["get"] + - apiGroups: [""] + resources: ["nodes"] + verbs: ["get"] + +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-azuredisk-node-secret-binding +subjects: + - kind: ServiceAccount + name: csi-azuredisk-node-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: csi-azuredisk-node-role + apiGroup: rbac.authorization.k8s.io diff --git a/deploy/v1.29.10/rbac-csi-snapshot-controller.yaml b/deploy/v1.29.10/rbac-csi-snapshot-controller.yaml new file mode 100644 index 0000000000..03af765424 --- /dev/null +++ b/deploy/v1.29.10/rbac-csi-snapshot-controller.yaml @@ -0,0 +1,78 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: csi-snapshot-controller-sa + namespace: kube-system + +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-snapshot-controller-role +rules: + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["persistentvolumeclaims"] + verbs: ["get", "list", "watch", "update"] + - apiGroups: ["storage.k8s.io"] + resources: ["storageclasses"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["events"] + verbs: ["list", "watch", "create", "update", "patch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotclasses"] + verbs: ["get", "list", "watch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents"] + verbs: ["create", "get", "list", "watch", "update", "delete", "patch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents/status"] + verbs: ["patch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshots"] + verbs: ["get", "list", "watch", "update", "patch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshots/status"] + verbs: ["update", "patch"] + +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-snapshot-controller-binding +subjects: + - kind: ServiceAccount + name: csi-snapshot-controller-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: csi-snapshot-controller-role + apiGroup: rbac.authorization.k8s.io + +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-snapshot-controller-leaderelection-role +rules: + - apiGroups: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "watch", "list", "delete", "update", "create", "patch"] + +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-snapshot-controller-leaderelection-binding +subjects: + - kind: ServiceAccount + name: csi-snapshot-controller-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: csi-snapshot-controller-leaderelection-role + apiGroup: rbac.authorization.k8s.io diff --git a/docs/install-azuredisk-csi-driver.md b/docs/install-azuredisk-csi-driver.md index edd4bc3ee1..3e35568bdf 100644 --- a/docs/install-azuredisk-csi-driver.md +++ b/docs/install-azuredisk-csi-driver.md @@ -4,6 +4,6 @@ > - please use helm install method for more customization, e.g. Azure Stack, RedHat OpenShift support. > - [install CSI driver master version](./install-csi-driver-master.md)(only for testing purpose) - - [install v1.29.9 CSI driver](./install-csi-driver-v1.29.9.md) + - [install v1.29.10 CSI driver](./install-csi-driver-v1.29.10.md) - [install v1.28.3 CSI driver](./install-csi-driver-v1.28.3.md) - [install v1.27.1 CSI driver](./install-csi-driver-v1.27.1.md) diff --git a/docs/install-csi-driver-v1.29.10.md b/docs/install-csi-driver-v1.29.10.md new file mode 100644 index 0000000000..26cb4a90e3 --- /dev/null +++ b/docs/install-csi-driver-v1.29.10.md @@ -0,0 +1,48 @@ +## Install CSI driver development version on a Kubernetes cluster +If you have already installed Helm, you can also use it to install this driver. Please check [Installation with Helm](../charts/README.md). + +### Install by kubectl + - Option#1. remote install +```console +curl -skSL https://raw.githubusercontent.com/kubernetes-sigs/azuredisk-csi-driver/v1.29.10/deploy/install-driver.sh | bash -s v1.29.10 snapshot -- +``` + + - Option#2. local install +```console +git clone https://github.com/kubernetes-sigs/azuredisk-csi-driver.git +cd azuredisk-csi-driver +git checkout v1.29.10 +./deploy/install-driver.sh v1.29.10 local +``` + +### Check pods status: + +```console +kubectl -n kube-system get pod -o wide --watch -l app=csi-azuredisk-controller +kubectl -n kube-system get pod -o wide --watch -l app=csi-azuredisk-node +``` + +example output: + +```console +NAME READY STATUS RESTARTS AGE IP NODE +csi-azuredisk-controller-56bfddd689-dh5tk 6/6 Running 0 35s 10.240.0.19 k8s-agentpool-22533604-0 +csi-azuredisk-controller-56bfddd689-7s8yg 6/6 Running 0 35s 10.240.0.29 k8s-agentpool-22533604-1 +csi-snapshot-controller-84db6dbbb-stzwr 6/6 Running 0 41s 10.240.0.17 k8s-agentpool-22533604-0 +csi-azuredisk-node-cvgbs 3/3 Running 0 7m4s 10.240.0.35 k8s-agentpool-22533604-1 +csi-azuredisk-node-dr4s4 3/3 Running 0 7m4s 10.240.0.4 k8s-agentpool-22533604-0 +``` + +### clean up CSI driver + - Option#1. remote uninstall +```console +curl -skSL https://raw.githubusercontent.com/kubernetes-sigs/azuredisk-csi-driver/v1.29.10/deploy/uninstall-driver.sh | bash -s v1.29.10 -- +``` + + - Option#2. local uninstall +```console +git clone https://github.com/kubernetes-sigs/azuredisk-csi-driver.git +cd azuredisk-csi-driver +git checkout v1.29.10 +./deploy/install-driver.sh v1.29.10 local +```