From bba551aeeb39a28ccfac00650cf3e3df3f30de6a Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Mon, 15 Jul 2024 14:54:12 +0000 Subject: [PATCH] doc: cut v1.30.2 release --- Makefile | 2 +- README.md | 2 +- charts/index.yaml | 121 +-- .../latest/azuredisk-csi-driver-v1.30.1.tgz | Bin 14729 -> 0 bytes .../latest/azuredisk-csi-driver-v1.30.2.tgz | Bin 0 -> 14733 bytes charts/latest/azuredisk-csi-driver/Chart.yaml | 4 +- .../latest/azuredisk-csi-driver/values.yaml | 2 +- .../v1.30.2/azuredisk-csi-driver-v1.30.2.tgz | Bin 0 -> 14734 bytes .../v1.30.2/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 | 331 +++++++ .../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 | 266 ++++++ .../templates/csi-snapshot-controller.yaml | 98 ++ .../rbac-csi-azuredisk-controller.yaml | 199 +++++ .../templates/rbac-csi-azuredisk-node.yaml | 31 + .../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.30.2/azuredisk-csi-driver/values.yaml | 292 ++++++ 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.30.2/crd-csi-snapshot.yaml | 838 +++++++++++++++++ deploy/v1.30.2/csi-azuredisk-controller.yaml | 216 +++++ deploy/v1.30.2/csi-azuredisk-driver.yaml | 12 + ...si-azuredisk-node-windows-hostprocess.yaml | 120 +++ .../v1.30.2/csi-azuredisk-node-windows.yaml | 206 +++++ deploy/v1.30.2/csi-azuredisk-node.yaml | 182 ++++ deploy/v1.30.2/csi-snapshot-controller.yaml | 62 ++ .../rbac-csi-azuredisk-controller.yaml | 196 ++++ deploy/v1.30.2/rbac-csi-azuredisk-node.yaml | 35 + .../v1.30.2/rbac-csi-snapshot-controller.yaml | 78 ++ docs/install-azuredisk-csi-driver.md | 2 +- docs/install-csi-driver-v1.30.2.md | 48 + 41 files changed, 4718 insertions(+), 67 deletions(-) delete mode 100644 charts/latest/azuredisk-csi-driver-v1.30.1.tgz create mode 100644 charts/latest/azuredisk-csi-driver-v1.30.2.tgz create mode 100644 charts/v1.30.2/azuredisk-csi-driver-v1.30.2.tgz create mode 100644 charts/v1.30.2/azuredisk-csi-driver/Chart.yaml create mode 100644 charts/v1.30.2/azuredisk-csi-driver/templates/NOTES.txt create mode 100644 charts/v1.30.2/azuredisk-csi-driver/templates/_helpers.tpl create mode 100644 charts/v1.30.2/azuredisk-csi-driver/templates/crd-csi-snapshot.yaml create mode 100644 charts/v1.30.2/azuredisk-csi-driver/templates/csi-azuredisk-controller.yaml create mode 100644 charts/v1.30.2/azuredisk-csi-driver/templates/csi-azuredisk-driver.yaml create mode 100644 charts/v1.30.2/azuredisk-csi-driver/templates/csi-azuredisk-node-windows-hostprocess.yaml create mode 100644 charts/v1.30.2/azuredisk-csi-driver/templates/csi-azuredisk-node-windows.yaml create mode 100644 charts/v1.30.2/azuredisk-csi-driver/templates/csi-azuredisk-node.yaml create mode 100644 charts/v1.30.2/azuredisk-csi-driver/templates/csi-snapshot-controller.yaml create mode 100644 charts/v1.30.2/azuredisk-csi-driver/templates/rbac-csi-azuredisk-controller.yaml create mode 100644 charts/v1.30.2/azuredisk-csi-driver/templates/rbac-csi-azuredisk-node.yaml create mode 100644 charts/v1.30.2/azuredisk-csi-driver/templates/rbac-csi-snapshot-controller.yaml create mode 100644 charts/v1.30.2/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-controller.yaml create mode 100644 charts/v1.30.2/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-node.yaml create mode 100644 charts/v1.30.2/azuredisk-csi-driver/templates/serviceaccount-csi-snapshot-controller.yaml create mode 100644 charts/v1.30.2/azuredisk-csi-driver/values.yaml create mode 100644 deploy/v1.30.2/crd-csi-snapshot.yaml create mode 100644 deploy/v1.30.2/csi-azuredisk-controller.yaml create mode 100644 deploy/v1.30.2/csi-azuredisk-driver.yaml create mode 100644 deploy/v1.30.2/csi-azuredisk-node-windows-hostprocess.yaml create mode 100644 deploy/v1.30.2/csi-azuredisk-node-windows.yaml create mode 100644 deploy/v1.30.2/csi-azuredisk-node.yaml create mode 100644 deploy/v1.30.2/csi-snapshot-controller.yaml create mode 100644 deploy/v1.30.2/rbac-csi-azuredisk-controller.yaml create mode 100644 deploy/v1.30.2/rbac-csi-azuredisk-node.yaml create mode 100644 deploy/v1.30.2/rbac-csi-snapshot-controller.yaml create mode 100644 docs/install-csi-driver-v1.30.2.md diff --git a/Makefile b/Makefile index c0efb5c41e..e9ad8cabc3 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.30.1 +IMAGE_VERSION ?= v1.30.2 CHART_VERSION ?= latest else PLUGIN_NAME = azurediskpluginv2 diff --git a/README.md b/README.md index 7acc7d62e5..a6c996a5a3 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ V2: Preview |Driver Version |Image | supported k8s version | |----------------|-----------------------------------------------------------|-----------------------| |`master` branch |mcr.microsoft.com/k8s/csi/azuredisk-csi:latest | 1.21+ | -|v1.30.1 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.30.1 | 1.21+ | +|v1.30.2 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.30.2 | 1.21+ | |v1.29.2 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.29.2 | 1.21+ | |v1.28.5 |mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.28.5 | 1.21+ | diff --git a/charts/index.yaml b/charts/index.yaml index c95897a3f7..42c95fd5ef 100644 --- a/charts/index.yaml +++ b/charts/index.yaml @@ -3,7 +3,7 @@ entries: azuredisk-csi-driver: - apiVersion: v1 appVersion: latest-v2 - created: "2024-04-12T02:56:56.093841169Z" + created: "2024-07-15T14:53:50.147901287Z" 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-04-12T02:56:56.149696888Z" + created: "2024-07-15T14:53:50.219699794Z" 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-04-12T02:56:56.148072197Z" + created: "2024-07-15T14:53:50.217532616Z" 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-04-12T02:56:56.146592145Z" + created: "2024-07-15T14:53:50.215470251Z" 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-04-12T02:56:56.144405926Z" + created: "2024-07-15T14:53:50.213361847Z" 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-04-12T02:56:56.143149441Z" + created: "2024-07-15T14:53:50.212019478Z" 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-04-12T02:56:56.141877259Z" + created: "2024-07-15T14:53:50.210748494Z" 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-04-12T02:56:56.140620825Z" + created: "2024-07-15T14:53:50.209367199Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: a00216ca8bdd4550f01071c0a57e7cf49f20b4915164ec6c785d2b5e51893870 name: azuredisk-csi-driver @@ -74,26 +74,35 @@ 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.30.1 - created: "2024-04-12T02:56:56.092114098Z" + appVersion: v1.30.2 + created: "2024-07-15T14:53:50.145948182Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin - digest: e4464d1307aa8ad436b52f8647bb0ef74de214c2481515d1bcd3f2b6618de19f + digest: b6a2a25305664a9b18c15ec6aa654f08d5d15719a9174836ef5f47103f9faf25 name: azuredisk-csi-driver urls: - - https://raw.githubusercontent.com/kubernetes-sigs/azuredisk-csi-driver/master/charts/latest/azuredisk-csi-driver-v1.30.1.tgz - version: v1.30.1 + - https://raw.githubusercontent.com/kubernetes-sigs/azuredisk-csi-driver/master/charts/latest/azuredisk-csi-driver-v1.30.2.tgz + version: v1.30.2 + - apiVersion: v1 + appVersion: v1.30.2 + created: "2024-07-15T14:53:50.200779143Z" + description: Azure disk Container Storage Interface (CSI) Storage Plugin + digest: a818ab29972390863ede53ae330cf175e3800201603335c14b81a47c865460b6 + name: azuredisk-csi-driver + urls: + - https://raw.githubusercontent.com/kubernetes-sigs/azuredisk-csi-driver/master/charts/v1.30.2/azuredisk-csi-driver-v1.30.2.tgz + version: v1.30.2 - apiVersion: v1 appVersion: v1.30.1 - created: "2024-04-12T02:56:56.132334224Z" + created: "2024-07-15T14:53:50.199505043Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin - digest: e4464d1307aa8ad436b52f8647bb0ef74de214c2481515d1bcd3f2b6618de19f + digest: 46d1e518d1c2518e14bd8f4e0b93cecaadbe38e5e6de8583e1c8d07b78ed0efc name: azuredisk-csi-driver urls: - https://raw.githubusercontent.com/kubernetes-sigs/azuredisk-csi-driver/master/charts/v1.30.1/azuredisk-csi-driver-v1.30.1.tgz version: v1.30.1 - apiVersion: v1 appVersion: v1.30.0 - created: "2024-04-12T02:56:56.131162795Z" + created: "2024-07-15T14:53:50.198297591Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: e76dc3ae89d3040cf078ca3232577d29e100813670ca5138a297bc3b2e1c5514 name: azuredisk-csi-driver @@ -102,7 +111,7 @@ entries: version: v1.30.0 - apiVersion: v1 appVersion: v1.29.2 - created: "2024-04-12T02:56:56.129427512Z" + created: "2024-07-15T14:53:50.195269517Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: ae0c15b875bb0bd2a4c1135437f0abfee6bf3591abcc502604317b3fe46015ff name: azuredisk-csi-driver @@ -111,7 +120,7 @@ entries: version: v1.29.2 - apiVersion: v1 appVersion: v1.29.1 - created: "2024-04-12T02:56:56.127837606Z" + created: "2024-07-15T14:53:50.193858017Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 441c64c6487a89efda91f22aa40358b6f9d31c73e2f131cfc10dcddd628af54f name: azuredisk-csi-driver @@ -120,7 +129,7 @@ entries: version: v1.29.1 - apiVersion: v1 appVersion: v1.29.0 - created: "2024-04-12T02:56:56.126328094Z" + created: "2024-07-15T14:53:50.192415362Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 611857811af7ac3304f7cae847be4f35bad6735482700d5b2c970dfbb53f9a3b name: azuredisk-csi-driver @@ -129,7 +138,7 @@ entries: version: v1.29.0 - apiVersion: v1 appVersion: v1.28.5 - created: "2024-04-12T02:56:56.125183331Z" + created: "2024-07-15T14:53:50.190802724Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 1c8d6bb8882ddc62b699f877734f637291f755436474b4daeb80b395a9d5cdf1 name: azuredisk-csi-driver @@ -138,7 +147,7 @@ entries: version: v1.28.5 - apiVersion: v1 appVersion: v1.28.4 - created: "2024-04-12T02:56:56.124075531Z" + created: "2024-07-15T14:53:50.188559588Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: f1b8fa60b0769577c563e33d475544577b37bb2430d027bfe92b91ad8588744d name: azuredisk-csi-driver @@ -147,7 +156,7 @@ entries: version: v1.28.4 - apiVersion: v1 appVersion: v1.28.3 - created: "2024-04-12T02:56:56.122923452Z" + created: "2024-07-15T14:53:50.186937858Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 12fe80d19091cc4bc0025585da35d12bcab9cbc2f3e4cfd90eb4368e6967931a name: azuredisk-csi-driver @@ -156,7 +165,7 @@ entries: version: v1.28.3 - apiVersion: v1 appVersion: v1.28.2 - created: "2024-04-12T02:56:56.120825107Z" + created: "2024-07-15T14:53:50.18538706Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 044dc6ffb662914020a3a835f994455a3301a4b2b665c9d4b9496b422a93c8b1 name: azuredisk-csi-driver @@ -165,7 +174,7 @@ entries: version: v1.28.2 - apiVersion: v1 appVersion: v1.27.1 - created: "2024-04-12T02:56:56.119715181Z" + created: "2024-07-15T14:53:50.183815442Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 805d2f7437e7442739c18791e3eaf839d75bc9f3c1a10710e6cc6cb7ee06cbc4 name: azuredisk-csi-driver @@ -174,7 +183,7 @@ entries: version: v1.27.1 - apiVersion: v1 appVersion: v1.26.8 - created: "2024-04-12T02:56:56.118594477Z" + created: "2024-07-15T14:53:50.182447398Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 3920ea0e2c358bc659b4bc243ad35420959d59c7532ebcf775de6c819ff0aca6 name: azuredisk-csi-driver @@ -183,7 +192,7 @@ entries: version: v1.26.8 - apiVersion: v1 appVersion: v1.26.7 - created: "2024-04-12T02:56:56.117562536Z" + created: "2024-07-15T14:53:50.179911762Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 8796e69d622aaef119bf87047d1d7ed699e88119d48655590813ec5a38a3ccab name: azuredisk-csi-driver @@ -192,7 +201,7 @@ entries: version: v1.26.7 - apiVersion: v1 appVersion: v1.26.6 - created: "2024-04-12T02:56:56.116433899Z" + created: "2024-07-15T14:53:50.178584849Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 277051eba7872783d34d9b8ba7bd606f3161afe571523eaabfa8b400491010c9 name: azuredisk-csi-driver @@ -201,7 +210,7 @@ entries: version: v1.26.6 - apiVersion: v1 appVersion: v1.25.0 - created: "2024-04-12T02:56:56.114408713Z" + created: "2024-07-15T14:53:50.177334793Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: cc1a78eb68d741382945252fdc86dc38fc903bcc7448eef5753a1e663e4e6e3c name: azuredisk-csi-driver @@ -210,7 +219,7 @@ entries: version: v1.25.0 - apiVersion: v1 appVersion: v1.24.0 - created: "2024-04-12T02:56:56.113383544Z" + created: "2024-07-15T14:53:50.175980554Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 8f4a2048cd3d8ef128e533c43c5b68464989e28949658010599d466b2ccb1b58 name: azuredisk-csi-driver @@ -219,7 +228,7 @@ entries: version: v1.24.0 - apiVersion: v1 appVersion: v1.23.0 - created: "2024-04-12T02:56:56.112346351Z" + created: "2024-07-15T14:53:50.174459895Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 4347271a297c6c95e10c4a880a08453c22839c95ad7db232d2d8fc38e926b385 name: azuredisk-csi-driver @@ -228,7 +237,7 @@ entries: version: v1.23.0 - apiVersion: v1 appVersion: v1.22.0 - created: "2024-04-12T02:56:56.111321723Z" + created: "2024-07-15T14:53:50.172038022Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: fc7adc9ddb406356bee117d3ba5c360408b4ee9a7decc30d34fe310d0cdd6aef name: azuredisk-csi-driver @@ -237,7 +246,7 @@ entries: version: v1.22.0 - apiVersion: v1 appVersion: v1.21.0 - created: "2024-04-12T02:56:56.110307977Z" + created: "2024-07-15T14:53:50.170657137Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 50a5c0860aa631c7e83affbaeac1a84c43c96b19175e1dd1c21cba472564798d name: azuredisk-csi-driver @@ -246,7 +255,7 @@ entries: version: v1.21.0 - apiVersion: v1 appVersion: v1.20.0 - created: "2024-04-12T02:56:56.109028769Z" + created: "2024-07-15T14:53:50.16935626Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 9f2a936be5efc45002c12d5bbbd8cb453e51a0c1668f6ceae51df656ac190c95 name: azuredisk-csi-driver @@ -255,7 +264,7 @@ entries: version: v1.20.0 - apiVersion: v1 appVersion: v1.19.0 - created: "2024-04-12T02:56:56.107093022Z" + created: "2024-07-15T14:53:50.167475883Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 6c044a33b4adf598b9810e8839f04a16b1214470eceeb61bbe48076552955296 name: azuredisk-csi-driver @@ -264,7 +273,7 @@ entries: version: v1.19.0 - apiVersion: v1 appVersion: v1.18.0 - created: "2024-04-12T02:56:56.106120041Z" + created: "2024-07-15T14:53:50.166040243Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 79474616c7373ed65bbf75050748fda16ae2f6b290d240813006abd74e733628 name: azuredisk-csi-driver @@ -273,7 +282,7 @@ entries: version: v1.18.0 - apiVersion: v1 appVersion: v1.17.0 - created: "2024-04-12T02:56:56.105163574Z" + created: "2024-07-15T14:53:50.1634866Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: dcaad8438f57941c19f2269d9d4510591529f4de00353d12506fd277dc06378e name: azuredisk-csi-driver @@ -282,7 +291,7 @@ entries: version: v1.17.0 - apiVersion: v1 appVersion: v1.16.0 - created: "2024-04-12T02:56:56.104186689Z" + created: "2024-07-15T14:53:50.162099054Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 95108dce3a4da8aad2729ff8bc1587906b917925e6fe2e5935b5d25805080fb4 name: azuredisk-csi-driver @@ -291,7 +300,7 @@ entries: version: v1.16.0 - apiVersion: v1 appVersion: v1.15.0 - created: "2024-04-12T02:56:56.102498757Z" + created: "2024-07-15T14:53:50.160670643Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 3da85b9206af81dc4217a3304bf14839158112300de7dbb95841e30daaf5e4e5 name: azuredisk-csi-driver @@ -300,7 +309,7 @@ entries: version: v1.15.0 - apiVersion: v1 appVersion: v1.14.0 - created: "2024-04-12T02:56:56.101167272Z" + created: "2024-07-15T14:53:50.159372721Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 89e87dead7767f8abd56096e436956b23a666802040f7aad91d5b6c36af8b098 name: azuredisk-csi-driver @@ -309,7 +318,7 @@ entries: version: v1.14.0 - apiVersion: v1 appVersion: v1.13.0 - created: "2024-04-12T02:56:56.100231839Z" + created: "2024-07-15T14:53:50.157893186Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: c109533218e0625e9ca33c2db5e73c4b550b88943f7950b33e02a344a8ff9f8c name: azuredisk-csi-driver @@ -318,7 +327,7 @@ entries: version: v1.13.0 - apiVersion: v1 appVersion: v1.12.0 - created: "2024-04-12T02:56:56.099293218Z" + created: "2024-07-15T14:53:50.156379976Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: e41f089e5216fc9263039310990d1e41bcb468a85879289af1834dea0c457aaa name: azuredisk-csi-driver @@ -327,7 +336,7 @@ entries: version: v1.12.0 - apiVersion: v1 appVersion: v1.11.0 - created: "2024-04-12T02:56:56.098345252Z" + created: "2024-07-15T14:53:50.154037785Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: f35447c256488b1942342e9fcf8b6bed5f47b4ae5fb0fdae037110c5926803fe name: azuredisk-csi-driver @@ -336,7 +345,7 @@ entries: version: v1.11.0 - apiVersion: v1 appVersion: v1.10.0 - created: "2024-04-12T02:56:56.097264365Z" + created: "2024-07-15T14:53:50.152574795Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 12bd0e1f20a2e2adcb04b6954423438d9ece7a2ad0fb4b4fe2969844d14cfb86 name: azuredisk-csi-driver @@ -345,7 +354,7 @@ entries: version: v1.10.0 - apiVersion: v1 appVersion: v1.9.0 - created: "2024-04-12T02:56:56.138551192Z" + created: "2024-07-15T14:53:50.207299739Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: d917427661ca4ec13add77efcfe31d2c7c989e20b1427dd566a05ad1bdd98fa9 name: azuredisk-csi-driver @@ -354,7 +363,7 @@ entries: version: v1.9.0 - apiVersion: v1 appVersion: v1.8.0 - created: "2024-04-12T02:56:56.137542551Z" + created: "2024-07-15T14:53:50.206250774Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: a37491e845671e81b9567f2d1a746dbf4f182fde0c8f9e689dfa632c5651c6c9 name: azuredisk-csi-driver @@ -363,7 +372,7 @@ entries: version: v1.8.0 - apiVersion: v1 appVersion: v1.7.0 - created: "2024-04-12T02:56:56.136770605Z" + created: "2024-07-15T14:53:50.205399818Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 4df7a10466206c60deab00efbca57f67f042afd1ecd5daca738df28526f3ffcc name: azuredisk-csi-driver @@ -372,7 +381,7 @@ entries: version: v1.7.0 - apiVersion: v1 appVersion: v1.6.0 - created: "2024-04-12T02:56:56.136042088Z" + created: "2024-07-15T14:53:50.204610635Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: b1a4c384fdfdb6577dd6dfd3709fb746b5c79247846e5c582b93c3a1187f6d88 name: azuredisk-csi-driver @@ -381,7 +390,7 @@ entries: version: v1.6.0 - apiVersion: v1 appVersion: v1.5.1 - created: "2024-04-12T02:56:56.135288079Z" + created: "2024-07-15T14:53:50.203783756Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: efb42e1d56cc5596eb4e695b658c2748bc05cc6c47862e3f20ea6b5b199d01d6 name: azuredisk-csi-driver @@ -390,7 +399,7 @@ entries: version: v1.5.1 - apiVersion: v1 appVersion: v1.5.0 - created: "2024-04-12T02:56:56.134078637Z" + created: "2024-07-15T14:53:50.202234682Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: c8490efde8d4a43bd25f5c619887498dfb4b41edf3929ac8dbf0a9d3f691e6ae name: azuredisk-csi-driver @@ -399,7 +408,7 @@ entries: version: v1.5.0 - apiVersion: v1 appVersion: v1.4.0 - created: "2024-04-12T02:56:56.133029572Z" + created: "2024-07-15T14:53:50.201499667Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 55e5e17aac7c144b21a198867654ef70ad272987b0bb165782905adf91ca3c03 name: azuredisk-csi-driver @@ -408,7 +417,7 @@ entries: version: v1.4.0 - apiVersion: v1 appVersion: v1.3.0 - created: "2024-04-12T02:56:56.129997686Z" + created: "2024-07-15T14:53:50.195861543Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 2665483e922a577feb8539ca7f774bc70c945ce490294fd3378f098c2d244dde name: azuredisk-csi-driver @@ -417,7 +426,7 @@ entries: version: v1.3.0 - apiVersion: v1 appVersion: v1.2.0 - created: "2024-04-12T02:56:56.107605678Z" + created: "2024-07-15T14:53:50.16804024Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 2bbfe2f9d080f1b3ff10590c7168d05ce026c5a73332b4d48014610a52337808 name: azuredisk-csi-driver @@ -426,7 +435,7 @@ entries: version: v1.2.0 - apiVersion: v1 appVersion: v1.1.1 - created: "2024-04-12T02:56:56.095429434Z" + created: "2024-07-15T14:53:50.151090675Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: dd7066be8f499f6c1a396ab27c0013c09f5a8d8319cc04fbdd480d31107bb851 name: azuredisk-csi-driver @@ -435,7 +444,7 @@ entries: version: v1.1.1 - apiVersion: v1 appVersion: v1.1.0 - created: "2024-04-12T02:56:56.094889143Z" + created: "2024-07-15T14:53:50.150028131Z" description: Azure disk Container Storage Interface (CSI) Storage Plugin digest: 3d2a5189416dd6a43bd3e2097bbe23a8db347b6e1a36c6a43fd59cc9c9633ff3 name: azuredisk-csi-driver @@ -444,11 +453,11 @@ entries: version: v1.1.0 - apiVersion: v1 appVersion: v1.0.0 - created: "2024-04-12T02:56:56.094379661Z" + created: "2024-07-15T14:53:50.148558287Z" 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-04-12T02:56:56.090696034Z" +generated: "2024-07-15T14:53:50.144432185Z" diff --git a/charts/latest/azuredisk-csi-driver-v1.30.1.tgz b/charts/latest/azuredisk-csi-driver-v1.30.1.tgz deleted file mode 100644 index f185024dc737b78d8cd0a061830e23d5c92d2a07..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14729 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 X**@E+`T4&A0096025rfT00062qJpzL diff --git a/charts/latest/azuredisk-csi-driver-v1.30.2.tgz b/charts/latest/azuredisk-csi-driver-v1.30.2.tgz new file mode 100644 index 0000000000000000000000000000000000000000..3f73abf7151c664ed71defad219fa037bbcb2969 GIT binary patch literal 14733 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 bT$^X}Y@W^2{QTbl009608X71?00062n^2J0 literal 0 HcmV?d00001 diff --git a/charts/latest/azuredisk-csi-driver/Chart.yaml b/charts/latest/azuredisk-csi-driver/Chart.yaml index d25a27c522..884fbb9582 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.30.1 +appVersion: v1.30.2 description: Azure disk Container Storage Interface (CSI) Storage Plugin name: azuredisk-csi-driver -version: v1.30.1 +version: v1.30.2 diff --git a/charts/latest/azuredisk-csi-driver/values.yaml b/charts/latest/azuredisk-csi-driver/values.yaml index 16b818bac5..73d839152f 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.30.1 + tag: v1.30.2 pullPolicy: IfNotPresent csiProvisioner: repository: /oss/kubernetes-csi/csi-provisioner diff --git a/charts/v1.30.2/azuredisk-csi-driver-v1.30.2.tgz b/charts/v1.30.2/azuredisk-csi-driver-v1.30.2.tgz new file mode 100644 index 0000000000000000000000000000000000000000..e5b4eeee53221a19c6cdd9facb34e972cb18f569 GIT binary patch literal 14734 zcmV;9IdR4xiwG0|00000|0w_~VMtOiV@ORlOnEsqVl!4SWK%V1T2nbTPgYhoO;>Dc zVQyr3R8em|NM&qo0PMZ{avM34H`;&eDG>C0VS7hKQWwj;Jjb!2k<@OTwk3rqdv>W;ebCdoEyciLhVkhmohiNr4x@b`!z5A$2c z<=F8Uo+8#enm{JHGZ^?ktm5hS`~8Fcef4j@-!J~#-`(r~u(N-#|7v${@Ad0fKlFEA z?Y`Rm0rXc=dczZO0of1zrOPTd?kjmvwmzJj7jwL!n+C zN`3*7VZae30%C#~7z)bZ7=cqF5F0@kffq-^)0fHn3qKlTvPEEk2EfK~Thn5pkKHfd z%VVAYQ|L#CuS@{c&;Om*{e#`&{C~B(x0(MB@!$ZC(O?UJ8_3Zm3h4j@F6#!^Wt7vA z=(;r60_micNdaIeq#O&%W&_ZpocC^{8^j0_h)X`|<+w`a5OADMZuugNeE)*_*qsf) z>FA7#3x+r%VhaG5;|oToSV{!M+Lb7|H%v2S%6!%BcXwJ8c_;*QC-amCO^!@q``v?9 zgKngbvbtOB z2D-)mmyO8l0b5&{{z^Vq^_wK;)5trbWQ4~<pfPw!5GP|S|fJOe%CTL2&eZ+vvc;An*1_mIG`?63H%$i2UyObo#5*FXNar8wWm zF609sMPGmf!!Fk;cK`FBzi*$W69j!RNt4OEEF$ORJ>()=vU+KT@WO`#rJp>^Wt|VF z5c}{3`&i6|NSsj*@ifsixSEA%06Lv505UT4uaw;)b~RxLdVBzO`f}pMGOzrxuSjuz zB)?x>y*njCrYkv{;hWM|$B1`pYo55TX#Z2>?9@~;?lF&XRT>)!U# zYU(tG^Uj)hM5jKv4=EFfoe(din1})BOoRvry`E29=uapYgZ;go*Rth;`iMcP<#JsE z2i&6B0Cd#+V$?_7RAO~8?FDKaIw~yyG?ck18-UKqJ?4VPAJAxoTv_rN9l8_bMLz1Z zqHo$0${}5QDb7;G$c{Wi;*PT0M9PW@=71w1Fc|}vM!qLygyBd}iqLexfJYGrgbLuH z5D^bh0^Sc#0|wO9TAdu-k^^v?+KY$`X5>YxB^_j~ zMddV*wU#tAtBGhXZFkAiEMl~}u$?6fE9k`Q>BB9x;;(VhdnTD4u_^L^2L;qyd+t*K zNEF;4213Nt%-IH7G3!pL9|cIW>O0wF5JX(a$^HL=zMe#i-Z2#L81vhqPsLdj4Ae&+ zg;FH{4<)HSP_gcsuVcMnogV+hXmI-ec$h8;0lfb}pkCa3Gyvsgrp3Ctx3v}PJA*CD zx|6CS7PV*#fMf?%#q4bqU!G<&xwOLjW3qXvRl0LUALX>EHZ`y}Z0=fE)Jc`8sRxT1 zQbF3=eMfj{?ncQmeDAbs-?A3C;xpqygEI53ocKF=N~SQ zPQcsC^A8u`#py^X13W}79%1BdC%lzx(72#Xsu2W;2?AVhOyWYpSe6PP2j+Kbw0xQJ zH8<4~a4g#rKrsN%Z_#Y$%@q1O+qY=8EC1Sku36CYupAcXXSi-_grJBRO6A5+L)GGV z@RSJK(sDE1+Q^D@U5>kI^o@n(nUrQYh=N$|(veZNb(bmj;;A&YWx-sI4kpM`8(QW` z)k{#70bs%fBrXDC7NX2RzHoMAuau;^QQO^!3mSajh#iiR(x9cn7sbDa(P)J42cUC4 z96A%^2c6hj^p*~fe|eWk;|dn&bY2iDg*Jb=4USL#^5N|^I6eF6d>j1r@bc{R?Cmx< zxx75TluD)$p%mozGgArqBKw=r^w*Y;NpznR=w?0fxNY;Gy6743APOkqNT{LO0&21J zkr;s96tbR=Z+hm9-dzbs2f#x&7!qsq^rvkwLLOx>sm%pqqw`SU0RIlPUENepe~v9D zN)D)%EB?NMZIW#1sy0a0eZpd!fe^9L1*0SEBgw~qCzPPSXO@35qEZ2fXP>siJd>Ye z_8w6%Vl>b{^$Mbx9zjn|CaF3+*hWI8IE-Iy#VZPC$UBZ0CS$XC!eo3pCNz0{a*y0d zF@%v**^;gh3o;9m0|F@A$;o}l5a;Qrq~F!XPtNw-`|R%SjEYlI_-a_U@K(~BVkRQ! zJLwE4tgR2KepebApMb`{%syu84ik^wahvRlIQp4#alxpII8P4XGRB;0>E_&FQY+z} z9}TXjkX`%u=Gwe`zJ>|-Kq5{yclCClg7Jj%MJ*;9G4xc#(5r=}>i#lfsJY0!x+2#t zhEzdY%7kDJ{Pl)FY4}@P&z^xxG(rq1Ws(9)5TFbMlp(;Cv4NWdfrujy+)WTsyGFV6 ztIaZ(Bp4bEv`RPV_42dIqb~0W$ZvViRknbLAt$7s+BGVH*OT-dMa&5qo)Ep{_30w=eQo{FR_15GF&cQsWR+BOl{;HoQep8a^iDlQgqbj|j}Z~4$40|^27aZX z-Uj>zPDg6%ad>zPV5s)5@{2kBU=HLQkEJRes3QRnU_)1`H*$BA-MR=wAQ5uQB44?F z#I+?rYEFnq&B-J=JqCAJOjNS@N;O5C9!nW#XlYeh@zW7QDkb!P!amYAnD;PDEKCe} zj#SPz$c%65vEn}j3PK+W#CvDwS0}@+xEITm(S-lnJJ>1UKMr0W>}>EK5Aj@0V)Mwc z!gLK!fnLp|lp322n}UbwzEZ~;Zcw?XJ5$Pr)> z8EhHF(-l5&91n0{^@a2nAGZit%;YJa8(}7`FP{<^u5)ts_O9wd4 zozzn{;w%3&%>PdlgUfOo{QxU?N;Va z(6p*d-Oq;!ve#sjJ=Eoso*KSfQqv?SeG}*WL!Hz}k=*%n2XsDl6s__=NX0tY3&`O} zH22z}2vdbU9b!C6*rTY`gD+pon!d`!AQ_|Dd?48j$Yz2JKiU6uzI=J?xw?+0LH@hU zbFv3_3t@t5<^Rt9!QS5My!_wY+27gVe;?#2%&=sfjnPfbLdS8ovVH-Gr%1ywB1)d!MA-Kb%L%k; zzx$&BfWidc83gljx@F(x7zCU>Umxb}K59kazlq(G2keH2=iOp`Uep?flaq-;!ET>N7B z_zrWOAoL>!{Zj4JH$I_E13_ZL=G1(^WE}aB6|-#tz+D=m0Z4RlZwml38j6aOIT^iR zm}IjML+P^&Zvj!viMpku;UG-K7zzr#}R;lpu4ng1R;;-L9W~SNXx8iJgXEX z_B7Q#eFA;)@krao?qSg0lE%`(<2)t*s$)yP9TK>gAXVM12Q-&3M69YE|z;2+65Qd3_++sKun;J@(hm>L+VJSlxzrH5kcRdB}C0Yb8YgF zNp7f^6sn-`GWPll3J~EDOHV>ne#j6|$5N_L0T6U2fQkuXUGNuEm-iorS5o}wx*`vR z3{$3^58${Ub}%>XujaHH8WGQ0%j&V5Yw9G+ral0WL#5j2VB!cIpuG4K@D`Dn4I|WfF#*N{Or-1wzCG&Y#g`)WqD$U9N4+_-~u=U z3@ND+kqkZKED7FAH3gFqO^>z4Sj6hFOM@UHSj;rw9^XWQGT!sh6!|@l#|~uf1PkPf zh@qa;ZB^BYQjxoX_bjnxJkQm&G!6Bm6v&zpkUFGhDxFogqP!$uo(!*2T%8<@V(%B$ za-I%>>@ZA5i0MI8>W^CH%^|!w>cXi^Nq9B739v{wohz|@r1lI-Hw-dNn5cZBpX(OGX)*GX%hf}v z|0Muu;-SZA&@B-K;7TzaM!sTn90ZY2&^$O2iNvI&o3^7wqq-^TYnA$KOI&DWW!_A~ z3(B>XC;%5WN|hS6QCQQRNCnkQcN;;Pc6e9!tlZH^0m69{Xw~-ynIr8AqUxYKIqHee zx(f?kEXOmWr)y9_^ad%zb#XVD_!Gq&7b(Fl+c+EJfNJKkC$A6y@l&}?X~8I!c`FzN zR+RWET{sK;eJU)Tc+>|vP%x8 z{-}GZ^pO&DKC%Ip;{D+O{MxCU`JLYya#pfJDQCq7twHiWw`>s=r{VHO-;&hQnN9mk z8yQui)EsVXV#G%y0SNZxB*w;+r1x-o0o5l<`CV?xg%P(;_(L$pQ$*rZZB_gPP7w$q zU*OPBDeDU73$U*al%%;r#4=~%U2S41$h|~h>3MCN7BFA#c7cSpbEM0o+@fm1tPxbU zN=5?Q#k~hPr!H1YY7PaUWoNd3+l_vPo)469pg>6RFITwk)Q^gxU!~ zGl-cIl-8ajsz&t&Ap!!(Zc93pu6EqcZM|ts$4J$91hKCuj}bx2&?AMUR1~{F`LJ1N z8Xeo<{&GM2XZ7mrZSn~5ZQ$0iw6&)5F}aOiXgedtlT~emeP6pLnlh8hlzeQnPlE03 z#6^6Pjq4=#84)pJHoa=8>*Uv{j)ms<^5O`%(D%FGC$&&oEqgVsShk)rovQ0Q%tc&N zUR%|8x1a$DvDY{USSVGYEK;s{-q@4As2f{&Q4{L785kfSYZVw5dtOSt>Pt!6(?$aC^H)Q zs6sc8BNZ4#NrPFaMo)E&b?c!Vew4AoI`=e--y#%BW@SniD8VANxeB7xbtA^(VaQMF z#GLdYq{+f$=9C`2s%>eau=@xuV1^11=Scv9;*(b!Owyd)*FyqgKRJOVDxMQ!G0#^SxC8*S4 zqJH_&!+HmKw%hDRg=X2&SnC?oLyCN8kT7Y&j0)BQh+*qO3pB&Fcvdf!HB+I@;+a{3 zRCPZI`YGbbwyLyUJL^}<8U>?H1E{E`u9Q`BwOBeE7fRcTAhxwacZVx<7Oq3wb*@;1 zI+k_TN)!YL8YqZtASQ?xk1Xm|)iN3<+Z74wq0HE|lcm7*37O)4wgJ##=X<>%C2SuL zR2JY-I}>dBU%dGBm-lb4E>3>KFaP+JM8U28^~Z}}(aCQuiM)LIUwzS$>c-$Xa1&_c$nrk$@h&`3K<@VkUWe)mww4FvLm zAdoACKCTY(xJszww*+zgYN3rcNI;Eme5S2TSv3R231U!R;w-4VLsCeY3RxC17{ zQ?s+WT`<0s0}E~}Gd2W*N@#(jZV zBDG$wyEucBC>`M(#^tyT&hBz0;`*GzSnZWXS#WI-#H4KIkI&&Ogi)3>WC##S(g^(C z6F^=R*0@c8FN>aBxF)oEEbLw z;@CvTd#Z4!@?FOI$tqk`#>h(3K^|h0F5PMa^>L0+#1d94{} z8ThrLuqq7pB72cl?m$+)?|7QKjSbE_?$dSeC>}zF&$DY-)jnY@JA+m11-=RG|4Hln z8yAMJM5q7iwfOdDEt}Jo$3I=sGW-FKS2AX#$^#airs;^qRJr<$CH<@6XeFuBl7}l_ zU3i3okGxBRP_C-E!|t@&1gOLKnrhAG2`{^FY(z=(KHIjmR%jlHaLQ^RwJ6Z`R^WMd zWxGz-ZUnba(l z+Z)+_qAZ3FtB^@@6NG0A6Y|1tLf+&Z}jT%sp;2+1BApLT{$zs3(C@+=}Sw6E2c4^tQ7W7%94LXT%-}w zV8%*V$)^RiZ~ak9;`aZnOzJKCmhu@2K`oSjK%C+e_Bz>%XY)^muR`;ZXXhpP#Bog0 zezx~&5U=|y;JS4$el-n7~!ZZ_nhk*XM9`oBW$CXjCp|>AOX-1 zC(y*Om`AKH7V)JiqDxgYSxciTXBZ;4+Z66I`)EcE^crq@F~K}p2|YK+7vl+T+m&GtGvw-1jclO9 z8>FL1SpE3sQ+2m>B~+lScJ{|=txs{cX9Ch>syl&Uh}vr>7Rrn2D^zwvrz@qLGRmIFw(y0VH^YxagWP5aYk@ z{#K<9NajWNFbI9L9UsIcDp)*+FxTCYP*eiXvY|3P074oE4Zl;(mCK{l6QQx-`S=zM zKt~zC(`tT}-2cUP;fH))=qQ05nW&>HmzYPh3rSi@Z9HIjJVy4rAAs2=srXJWrAWte zMb3~QCRk6hM3*Z4>+WxrHO}{!T*uKp*wtHf%w;dVG&7RVh=BL9Bv)!1RXwW$y{Xwe zm5P8=PLS_A@!tOq&SWpd182gyLMCdtH3{)|etbUAHIocACUK0b5tgz~2mGp6Er2$Q z#%Cn%1d?$QZ*UZeh@r(oG?XpH@nf+V7X`o{ts8V;fP!C49)%5*vdi*d99^r-N zYUP%6#MNt0CU)Tf^ygBnn$Gj<&hl~fA$~??*m|-NU9wm=R?qQ?T-^1!s2nGKf@a2C zVEc`)L@I1!hB%+&&}(yH=*A;vZjYE1dcu6|9xxlvmk0HH*?7D>WsjFlWR^8WW-%| zr&f>qh8=L0cDGsHx#o$x(yY#L=G%3XS;`@18P}Ju)5&E?cb2DobM2yj46F89SlUP7 zTk%ME0RMyKy$x3BTd=Gr!K(ZQHeLcnFM*}}0ak+iUk>BHESi65-2O@s`paPPmqFbx zgRkEp>E~|T21&m`(r+;H8_fI$GynAN|86#seYbaj=MNQ^L9H*1QC}93{*~g-zd5w| z=JxGx6G6V#ySL{=hi~rReoFUmuLQ%rEMj{l`0UL++F$KG+FvO`dTBiLvgqfhfpvbO z*MEQh>;ObO;C%VA^~2_=f8g&CLmuY0j?1y5B~nkIAXFf(o_v`}l3dHtox#9wTSmX% z?;q^%tAG3be&OG}o&Lf84?Ft@`>%HQ_Flh!^+SJmZ|Bv)51_x^rt2r-0wzAepmGlz%2y)a- z?T%l*Y<>O=Fme6JL!guJSl5R)$mbo<1%D{3I}u=4r*`xjY$;dgF*IdHLH`B=Kc%oA zQ;>3@fmr4;8r_!M?KCY5h%s#pg+6v6uj;Y*yDo_%AGsplw+2wSlXt3Vu>gf(*xdK= z>@`%9v1{Gm2b#_tMe0YkACHohca+`w6ndwUC>FD>1}&Z*=g7;7BuTs2r0qo<4M0ao zy*Wp}#Q=uXdzWPhGgg@f{x}Cagw#7Ma)hdQfh(Fz0R^mMp}TMZ$LJ#R{ULH05}Bfk zUvlMD<<3{5)PefNgmQ6)gzWyRLCz#e^GOW=yXeqWd*`#FNXUQAP)jKg>Y-td-POXM zGdfc~06r$seeD2cDYYK)3YN{z%!r(m_mB(3GU;Vu4x>KG-!at-RKi4O$#i!6!jAOs z3m+2HqR9B{Ae8BAOAZ;P42xNcPcdq$O{oPOgD+n?y6b$7TGnTEW#%U}0FaG&@tmmRI3ol_#E>(V zy6u}Q8d9H*XK&;xv;8wAlwEwhM6M5UpbwMYWg}8i_Z1eQx>cBj_RKD2awCX-<(|r~9T#*Rl|i0v$0&Oc;V5e`6Q^83z5U zN`Ix3+exB(!Jwl7WKOJiRP~|Up1Q&j*+H-*lQPeNA$I;5@;9&gbt!Hl#>JbRel8Ir z(;_1nUoJgrMYx&lf&q~G9{Im6r|xYg$Gwqnsd}=z|D8;A!$FTb&3!yY1aaK(Sx!9GO@bt~@6P(4l#yspqu4M>B;Ej*27#xkT`yLWFMy$jc zPCP9FmvsZ|GRo;lbX^+s;4SaDZYclfz(`QJUyHaHXxnyocXwxJ=g01DafV$)zHh=I zfYZ?#6&D&llu4&YCuH_VfEH~DQ_VzrgYtBysi zgmYC385Pu}{s3GZU96ui3R5Va5{bRKjg(J~+bfmu6=ch@HchyoWM8(VmUiT6m6)UB zcW8?I3iD_zhyV2AXn6YRV^SVYA@(&R&W1>w$sBgl)4&n45LJ+y23NDN!T_zYCX!3DnN5fTbF^%; zz56s$&N3rBcDOo!af(DTHBiZqRBC-#b2c~SRE=&)zQ*dVLwz|BN6dj^M1-a7I?V@; z*r7~eCzMifcr+T}dkdi`CNWeg?1Z52(>n(Rp_t`*pvp=olb^`cM`_cmSc7xNh3*77 zLimnx0jT5@&W~i;tE+dXWN6$4D&~=5W+Q=}K#SlCy4FR}O1406sZ}LkQ!0=z$-9_T zb*oHrrBj$Hdld{cLGG;zE#~+Uaa`*A>J-3oej+6rQ+}X-(lFJ*8*2~U3kDC_n3pxM z&!6M0e}I2RRFt$otI#YhsjU~)ydbllpqM0uZ~3*>taJn|rZ%^#YMn-FtG7<^dt<#z zy_qX0->W0NwZ57##3$7E2H;ihyVU;QB2m;CLahhKHCk$up&=v#kZdiAWi8l+Roji2 zVz%;@%>yP_VCWwsAI^*{8GyY!jM(h6lFvK&&mm%%diKoK)`|c5aC!3S=LR$bQF^*_nv%i(QKfY z!19fTI=n45MhKUHiAM|?Fo89sRH7k~KKE06p1kmY}XQr;e&sSF$!%r8N z=l}gTd->&+FhjSE1Z${an+ncfzm-&v(5A|rozGXbm}0w%c!#J&lRRcB;1TobWc^0%W_n~-G6XO<`}uwDuA`}=T|51J`GPUKb{_)d^$UPZxu0B zVmDik{ClXudS?YNXQ{lC|GqfCygIr3bbj^jqCo<*EBWMJg&Jfhab(LjJXW$f)a>oT zBw3!uT3{T-%ms$A5>i!l+~RekOLI5p#Q^!mnsM&;TvWc_fg$Lf6Mtq|0O~n9Q(1-C zlv_!`DCmrkM;UzBs%D5g;camciv@(YxaUGgu!xJEQiokpx_oEej#z=v5sX{ zti}}2Ga*)1oodE!B-StsG7WufpOwwCx@Ru`FQcB#+V&GpueTP!;Xfh=5mf&N3gu=CYi z=9>S?73B^SkKS=dE+`?RF5hud#45>A_htB6?DMz%nqAT*Z)A`zZZ<@lZYqf;)X4aRlYTjiW0OxWG zmDM`5`3hR9AE!&H?({(m-%GWa791}ZcQss<%Vzx1wD3I4sBf8#q?Y<6TL_EDA^*S; z(=F|sU4g?7S3jR$o?iX!`g-`c;nm6e_>eN^dz_&oJM*Z0OtaV2{;;DUr!;szV`9W z^|h2aJ`&g0p}IDMUtd@5NUpDe^Alxmt|Du*r`7rXs;RFl=P)$JTrk)Qa4$3J9n@u< zZMEFpSU{QOY*`kBZ>^*BBEMJhs@&;V$EC=+6_~I*zP}0JW!N?;MPc?sC?;?I^y2vP z^yA6pr^}PKpN8j0zkIqly!zQjLvy^9#KpT0Z%@w@iR07D7M{tKC)%w~do7xnX{4Nb z@$9UgoE4~Ob2q4^OYF5-LORseAm5{ll>NyJ)a?4&TEZ_M{&Mo^?EJX;M9&TyP|@lt z&;sdA1xmG4vn6w*DQG4CZBwjjC8$63h#4b2^03f;T-S)N8ZY}qRg5Z;n^4j-q@|$E zfp67Dc4e?zNez2%{`4Y07i~!wM6Vj(Ds7Q;d>mjK0#v8c9=-2m8apwDbR<4UZlg6O zko#0PBnnD>6sJ9g0v=<2JM^hIi-N^5wuUznR5qbN;(I z|J|JbZq9!<=f7(>|6T1V?s@{(7J|p5HEHQpaWuHD@~bc>8Xj(S7`BN?vtUe`xlgN# zfoUvBDq_HB`)swN=R=%K9SxKz!)niH-UH+-zp8VOM~op;?8nVv^y3{yR~~WL;v%m7 zgt@|yptk{+89JJ4+q$Wv`&6k(Sl4zW1Wf#&x|4WIh6UPcr4mpNy|I%jtaKF)<_Gl- z=6iiR6RcOlJ*7kRZ{mo%ISg6ML$z_pI@V4uPUMnaR7uaGR>j$Kyxc@2n|O%@Zga5z z-37whoW*a>;x}jU?at!kgLMa!5!Gkw+TLY55|0nq$%xAJF)>|zEeG~<283$bGg?gt zZQ?7X@7Eqwsqiruvncyz6R7BkK_#ly=ne2;1AN#3A2z^;4e$YcmAhaQl}0T&wFK<8 z3v*xJ{mdD0C&VFgO4B(*=K8vOEfZa5vSA;Yqn|>~auI6(ut*^)VlIDud8YF+gPNx`-@IOIc=J@|o#2ZO zw7t|Cb8%fktsDSTC%F6;Hy`7zR3*DEv3PCfD%`4fEZq||hbVQmD}}#nP;ct$S<-c? z%6eEx>gIXCXKwuO+|l0}@xOa}{rv*|cjxua!3O{P5Kmzbts_;MUGpk1ye9PJ!y{wr;i2r-r_ei9He@mDx;{okoF3{7;th&;PQFhsoGv9>4m%rjaLqR22>^#JiJuH;xC!j>YEIDb zLKkE&0unB%d8v)7XKY-(N*mXM-O{}X3bwZp2DT`iHwf4b0=ArfJqTC>)e8|DIW!bF zz`rZzeN&pGI^_joqw`F-M$g>&Wy67%w zgMr;#*15sGS}V7~y?&#(*EL-yTDN*w>pedJwp_#mz+df!KFz3KA;VMbqjBb@sq|TH zC-*Qnm)33Ut(#^>LpWCZhynNu_7r?XElk!bs61-C)^~wwo{)#8*32G~JljwUKI6Tc zi1)Z$Aa#zS9}0<&Q5^HV1xeS3yrNB#kovq@5w*D!_KDvKTQndwVQDRJ*OsWX`R#Ri zWxN5BRwHZ{ui`>AsE{>FcT@snT&!A^rpWq=Ep<(9jl^sywJ1KT@RBuRwV{MY8QWB3 zmF#U%u0;^HDJ?Ic7ZT2!JBUlf+TTIEfuyeHX@UQYFI#momzK{30&Tee_w`PHuNeQe zzq7gj^Ff}%1~R!=H{LfoDF_sWKAi=KEPw({$i{yhrL06A5*b=ok>&BCb<|giB4sG_ zu?u#mIuHmH1a)J-LcZ47!VUk`MPzZYW+ZK3 z*T=ztE-+6j(G}G<*XO16Dj*m0mo=C-_uSx&hpy975jTAVJ;WR}hcP8pwgwoqC_$w9@8VQ}i z#{?;dYD4ND^hQ#0DdE^d40#}gOvLWe%pmfq!A z&ks#YJme#V*Q{Y0TTkTkNlGDPFhIh{RZLulx@ZArzw|CZ4x zOpai4Zx^a!o^DdfL=Xu$u29<>2+NH1dXkL*^gOH&V^Vdj_^x7!-L)=N!zZcDyLa(9CR-bBhYt3MyFVkM$BQdu=%V#Eb_Iw;Q$z7C4l(={MzaK zwpCEHe(i*^4O}21%rTltG)3%2B^V>o*#;dSbM@~X6z)X+p*u(Zr4~D+@-0xH>q8v0 zE>*h?+seu-GPaUU3Uy-9vYjp4grOItaH z=S+s$5?5J}6x~fDW+~65lzEtBC%COFrG8e?PPicMMl*YI+>mle%ol1)P?kb}!NkL4 zybfVx!sH}!=*AQ^pD5zd%|DPUj5N~qALdL)s+Y?9jJ$ctEt!?t*vO^mG_bs~{9arb zgM=$;I=gDb*1B$JSA!?KXjF^ul}jOo;cY8CF&WXtanY z%A<;mv2C>_7ciy9NFKVCP_OqyIm|Q*^f}SV2=|zYx&PDq`wgXzC5D>v8^`=kl0#7sr%b ze5$f(@(%X$7sA!mqN&CL5!j~2I$dMYS#lOXkBythcknDD|J$AfG|K<|qWypW_3q~W zw+DG1P5!6$;*I3rNdC?9NYDK8fButz2KnFL+bjD29rQQnzYp`wWB-4+#i7a$(Qc{O cNUqJZc{b1HX@35100030|F|p?rvLx~0EI%vLI3~& literal 0 HcmV?d00001 diff --git a/charts/v1.30.2/azuredisk-csi-driver/Chart.yaml b/charts/v1.30.2/azuredisk-csi-driver/Chart.yaml new file mode 100644 index 0000000000..884fbb9582 --- /dev/null +++ b/charts/v1.30.2/azuredisk-csi-driver/Chart.yaml @@ -0,0 +1,5 @@ +apiVersion: v1 +appVersion: v1.30.2 +description: Azure disk Container Storage Interface (CSI) Storage Plugin +name: azuredisk-csi-driver +version: v1.30.2 diff --git a/charts/v1.30.2/azuredisk-csi-driver/templates/NOTES.txt b/charts/v1.30.2/azuredisk-csi-driver/templates/NOTES.txt new file mode 100644 index 0000000000..c198152ef1 --- /dev/null +++ b/charts/v1.30.2/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="app.kubernetes.io/name={{ .Release.Name }}" --watch diff --git a/charts/v1.30.2/azuredisk-csi-driver/templates/_helpers.tpl b/charts/v1.30.2/azuredisk-csi-driver/templates/_helpers.tpl new file mode 100644 index 0000000000..51fcc8a092 --- /dev/null +++ b/charts/v1.30.2/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.30.2/azuredisk-csi-driver/templates/crd-csi-snapshot.yaml b/charts/v1.30.2/azuredisk-csi-driver/templates/crd-csi-snapshot.yaml new file mode 100644 index 0000000000..76df8af7e9 --- /dev/null +++ b/charts/v1.30.2/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.30.2/azuredisk-csi-driver/templates/csi-azuredisk-controller.yaml b/charts/v1.30.2/azuredisk-csi-driver/templates/csi-azuredisk-controller.yaml new file mode 100644 index 0000000000..cd2ef915f2 --- /dev/null +++ b/charts/v1.30.2/azuredisk-csi-driver/templates/csi-azuredisk-controller.yaml @@ -0,0 +1,331 @@ +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" + {{- range $value := .Values.controller.extraArgs }} + - {{ $value | quote }} + {{- end }} + 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.30.2/azuredisk-csi-driver/templates/csi-azuredisk-driver.yaml b/charts/v1.30.2/azuredisk-csi-driver/templates/csi-azuredisk-driver.yaml new file mode 100644 index 0000000000..21f941748e --- /dev/null +++ b/charts/v1.30.2/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.30.2/azuredisk-csi-driver/templates/csi-azuredisk-node-windows-hostprocess.yaml b/charts/v1.30.2/azuredisk-csi-driver/templates/csi-azuredisk-node-windows-hostprocess.yaml new file mode 100644 index 0000000000..fe7be5ba4c --- /dev/null +++ b/charts/v1.30.2/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.30.2/azuredisk-csi-driver/templates/csi-azuredisk-node-windows.yaml b/charts/v1.30.2/azuredisk-csi-driver/templates/csi-azuredisk-node-windows.yaml new file mode 100644 index 0000000000..ad8f6a1a42 --- /dev/null +++ b/charts/v1.30.2/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=3s" + - "--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: 30 + timeoutSeconds: 10 + 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.30.2/azuredisk-csi-driver/templates/csi-azuredisk-node.yaml b/charts/v1.30.2/azuredisk-csi-driver/templates/csi-azuredisk-node.yaml new file mode 100644 index 0000000000..740123b79b --- /dev/null +++ b/charts/v1.30.2/azuredisk-csi-driver/templates/csi-azuredisk-node.yaml @@ -0,0 +1,266 @@ +{{- 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 + - --http-endpoint=localhost:{{ .Values.node.livenessProbe.healthPort }} + - --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 }}" + livenessProbe: + failureThreshold: 5 + httpGet: + host: localhost + path: /healthz + port: {{ .Values.node.livenessProbe.healthPort }} + 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.30.2/azuredisk-csi-driver/templates/csi-snapshot-controller.yaml b/charts/v1.30.2/azuredisk-csi-driver/templates/csi-snapshot-controller.yaml new file mode 100644 index 0000000000..7ea860c7a2 --- /dev/null +++ b/charts/v1.30.2/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.30.2/azuredisk-csi-driver/templates/rbac-csi-azuredisk-controller.yaml b/charts/v1.30.2/azuredisk-csi-driver/templates/rbac-csi-azuredisk-controller.yaml new file mode 100644 index 0000000000..b78940fc66 --- /dev/null +++ b/charts/v1.30.2/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", "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.30.2/azuredisk-csi-driver/templates/rbac-csi-azuredisk-node.yaml b/charts/v1.30.2/azuredisk-csi-driver/templates/rbac-csi-azuredisk-node.yaml new file mode 100644 index 0000000000..29d99c91fe --- /dev/null +++ b/charts/v1.30.2/azuredisk-csi-driver/templates/rbac-csi-azuredisk-node.yaml @@ -0,0 +1,31 @@ +{{- 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", "patch"] + - apiGroups: ["storage.k8s.io"] + resources: ["csinodes"] + 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.30.2/azuredisk-csi-driver/templates/rbac-csi-snapshot-controller.yaml b/charts/v1.30.2/azuredisk-csi-driver/templates/rbac-csi-snapshot-controller.yaml new file mode 100644 index 0000000000..8e4278b6f5 --- /dev/null +++ b/charts/v1.30.2/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.30.2/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-controller.yaml b/charts/v1.30.2/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-controller.yaml new file mode 100644 index 0000000000..1806e9c586 --- /dev/null +++ b/charts/v1.30.2/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.30.2/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-node.yaml b/charts/v1.30.2/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-node.yaml new file mode 100644 index 0000000000..dcc2ff60b3 --- /dev/null +++ b/charts/v1.30.2/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.30.2/azuredisk-csi-driver/templates/serviceaccount-csi-snapshot-controller.yaml b/charts/v1.30.2/azuredisk-csi-driver/templates/serviceaccount-csi-snapshot-controller.yaml new file mode 100644 index 0000000000..7cdaad0b4f --- /dev/null +++ b/charts/v1.30.2/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.30.2/azuredisk-csi-driver/values.yaml b/charts/v1.30.2/azuredisk-csi-driver/values.yaml new file mode 100644 index 0000000000..73d839152f --- /dev/null +++ b/charts/v1.30.2/azuredisk-csi-driver/values.yaml @@ -0,0 +1,292 @@ +image: + baseRepo: mcr.microsoft.com + azuredisk: + repository: /oss/kubernetes-csi/azuredisk-csi + tag: v1.30.2 + pullPolicy: IfNotPresent + csiProvisioner: + repository: /oss/kubernetes-csi/csi-provisioner + tag: v5.0.1 + pullPolicy: IfNotPresent + csiAttacher: + repository: /oss/kubernetes-csi/csi-attacher + tag: v4.6.1 + pullPolicy: IfNotPresent + csiResizer: + repository: /oss/kubernetes-csi/csi-resizer + tag: v1.11.1 + pullPolicy: IfNotPresent + livenessProbe: + repository: /oss/kubernetes-csi/livenessprobe + tag: v2.13.0 + pullPolicy: IfNotPresent + nodeDriverRegistrar: + repository: /oss/kubernetes-csi/csi-node-driver-registrar + tag: v2.11.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 + extraArgs: [] + 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.0.1 + pullPolicy: IfNotPresent + csiSnapshotController: + repository: /oss/kubernetes-csi/snapshot-controller + tag: v8.0.1 + 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: 200Mi + 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: 200Mi + 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 8fdd8acfb5..1db4193f07 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.30.1 + image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.30.2 imagePullPolicy: IfNotPresent args: - "--v=5" diff --git a/deploy/csi-azuredisk-node-windows-hostprocess.yaml b/deploy/csi-azuredisk-node-windows-hostprocess.yaml index 9d8eff0a59..ff4452a0aa 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.30.1-windows-hp + image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.30.2-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.30.1-windows-hp + image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.30.2-windows-hp imagePullPolicy: IfNotPresent command: - "azurediskplugin.exe" diff --git a/deploy/csi-azuredisk-node-windows.yaml b/deploy/csi-azuredisk-node-windows.yaml index 986e2ea2f9..1e31669918 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.30.1 + image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.30.2 imagePullPolicy: IfNotPresent args: - "--v=5" diff --git a/deploy/csi-azuredisk-node.yaml b/deploy/csi-azuredisk-node.yaml index 220417361c..622a751a15 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.30.1 + image: mcr.microsoft.com/oss/kubernetes-csi/azuredisk-csi:v1.30.2 imagePullPolicy: IfNotPresent args: - "--v=5" diff --git a/deploy/v1.30.2/crd-csi-snapshot.yaml b/deploy/v1.30.2/crd-csi-snapshot.yaml new file mode 100644 index 0000000000..d4b90b266d --- /dev/null +++ b/deploy/v1.30.2/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.30.2/csi-azuredisk-controller.yaml b/deploy/v1.30.2/csi-azuredisk-controller.yaml new file mode 100644 index 0000000000..1db4193f07 --- /dev/null +++ b/deploy/v1.30.2/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.0.1 + 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.6.1 + 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.0.1 + 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.11.1 + 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.13.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.30.2 + 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.30.2/csi-azuredisk-driver.yaml b/deploy/v1.30.2/csi-azuredisk-driver.yaml new file mode 100644 index 0000000000..f2f10fdaa9 --- /dev/null +++ b/deploy/v1.30.2/csi-azuredisk-driver.yaml @@ -0,0 +1,12 @@ +--- +apiVersion: storage.k8s.io/v1 +kind: CSIDriver +metadata: + name: disk.csi.azure.com + annotations: + csiDriver: v1.30.0 + snapshot: v6.2.1 +spec: + attachRequired: true + podInfoOnMount: false + fsGroupPolicy: File diff --git a/deploy/v1.30.2/csi-azuredisk-node-windows-hostprocess.yaml b/deploy/v1.30.2/csi-azuredisk-node-windows-hostprocess.yaml new file mode 100644 index 0000000000..ff4452a0aa --- /dev/null +++ b/deploy/v1.30.2/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.30.2-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.11.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.30.2-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: 200Mi + requests: + cpu: 10m + memory: 40Mi + securityContext: + capabilities: + drop: + - ALL diff --git a/deploy/v1.30.2/csi-azuredisk-node-windows.yaml b/deploy/v1.30.2/csi-azuredisk-node-windows.yaml new file mode 100644 index 0000000000..1e31669918 --- /dev/null +++ b/deploy/v1.30.2/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.13.0 + args: + - "--csi-address=$(CSI_ENDPOINT)" + - "--probe-timeout=3s" + - "--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.11.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.30.2 + 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: 30 + timeoutSeconds: 10 + 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: 200Mi + 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.30.2/csi-azuredisk-node.yaml b/deploy/v1.30.2/csi-azuredisk-node.yaml new file mode 100644 index 0000000000..622a751a15 --- /dev/null +++ b/deploy/v1.30.2/csi-azuredisk-node.yaml @@ -0,0 +1,182 @@ +--- +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.13.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.11.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.30.2 + 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" + 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: 200Mi + 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.30.2/csi-snapshot-controller.yaml b/deploy/v1.30.2/csi-snapshot-controller.yaml new file mode 100644 index 0000000000..df4dca598d --- /dev/null +++ b/deploy/v1.30.2/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.0.1 + 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.30.2/rbac-csi-azuredisk-controller.yaml b/deploy/v1.30.2/rbac-csi-azuredisk-controller.yaml new file mode 100644 index 0000000000..0e59ad15b4 --- /dev/null +++ b/deploy/v1.30.2/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", "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.30.2/rbac-csi-azuredisk-node.yaml b/deploy/v1.30.2/rbac-csi-azuredisk-node.yaml new file mode 100644 index 0000000000..9225c168d5 --- /dev/null +++ b/deploy/v1.30.2/rbac-csi-azuredisk-node.yaml @@ -0,0 +1,35 @@ +--- +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", "patch"] + - apiGroups: ["storage.k8s.io"] + resources: ["csinodes"] + 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.30.2/rbac-csi-snapshot-controller.yaml b/deploy/v1.30.2/rbac-csi-snapshot-controller.yaml new file mode 100644 index 0000000000..03af765424 --- /dev/null +++ b/deploy/v1.30.2/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 7ea19f1e4e..7a7a8201c3 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.30.1 CSI driver](./install-csi-driver-v1.30.1.md) + - [install v1.30.2 CSI driver](./install-csi-driver-v1.30.2.md) - [install v1.29.2 CSI driver](./install-csi-driver-v1.29.2.md) - [install v1.28.5 CSI driver](./install-csi-driver-v1.28.5.md) diff --git a/docs/install-csi-driver-v1.30.2.md b/docs/install-csi-driver-v1.30.2.md new file mode 100644 index 0000000000..cb2eafd74e --- /dev/null +++ b/docs/install-csi-driver-v1.30.2.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.30.2/deploy/install-driver.sh | bash -s v1.30.2 snapshot -- +``` + + - Option#2. local install +```console +git clone https://github.com/kubernetes-sigs/azuredisk-csi-driver.git +cd azuredisk-csi-driver +git checkout v1.30.2 +./deploy/install-driver.sh v1.30.2 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.30.2/deploy/uninstall-driver.sh | bash -s v1.30.2 -- +``` + + - Option#2. local uninstall +```console +git clone https://github.com/kubernetes-sigs/azuredisk-csi-driver.git +cd azuredisk-csi-driver +git checkout v1.30.2 +./deploy/install-driver.sh v1.30.2 local +```