From 005d9c8736ba79048236542a7c76d11155d292bf Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Thu, 10 Oct 2024 03:15:58 +0000 Subject: [PATCH] doc: cut v1.29.9 release --- Makefile | 2 +- README.md | 2 +- charts/README.md | 2 +- charts/index.yaml | 107 ++- .../latest/azurefile-csi-driver-v1.29.8.tgz | Bin 13450 -> 0 bytes .../latest/azurefile-csi-driver-v1.29.9.tgz | Bin 0 -> 13451 bytes charts/latest/azurefile-csi-driver/Chart.yaml | 4 +- .../latest/azurefile-csi-driver/values.yaml | 2 +- .../v1.29.9/azurefile-csi-driver-v1.29.9.tgz | Bin 0 -> 13451 bytes .../v1.29.9/azurefile-csi-driver/Chart.yaml | 5 + .../azurefile-csi-driver/templates/NOTES.txt | 5 + .../templates/_helpers.tpl | 49 + .../templates/crd-csi-snapshot.yaml | 840 ++++++++++++++++++ .../templates/csi-azurefile-controller.yaml | 252 ++++++ .../templates/csi-azurefile-driver.yaml | 19 + ...si-azurefile-node-windows-hostprocess.yaml | 164 ++++ .../templates/csi-azurefile-node-windows.yaml | 239 +++++ .../templates/csi-azurefile-node.yaml | 234 +++++ .../templates/csi-snapshot-controller.yaml | 78 ++ .../rbac-csi-azurefile-controller.yaml | 207 +++++ .../templates/rbac-csi-azurefile-node.yaml | 29 + .../rbac-csi-snapshot-controller.yaml | 80 ++ ...rviceaccount-csi-azurefile-controller.yaml | 17 + .../serviceaccount-csi-azurefile-node.yaml | 17 + ...erviceaccount-csi-snapshot-controller.yaml | 9 + .../v1.29.9/azurefile-csi-driver/values.yaml | 263 ++++++ deploy/csi-azurefile-controller.yaml | 2 +- ...si-azurefile-node-windows-hostprocess.yaml | 4 +- deploy/csi-azurefile-node-windows.yaml | 2 +- deploy/csi-azurefile-node.yaml | 2 +- deploy/v1.29.9/crd-csi-snapshot.yaml | 838 +++++++++++++++++ deploy/v1.29.9/csi-azurefile-controller.yaml | 181 ++++ deploy/v1.29.9/csi-azurefile-driver.yaml | 15 + ...si-azurefile-node-windows-hostprocess.yaml | 122 +++ .../v1.29.9/csi-azurefile-node-windows.yaml | 195 ++++ deploy/v1.29.9/csi-azurefile-node.yaml | 168 ++++ deploy/v1.29.9/csi-snapshot-controller.yaml | 59 ++ .../rbac-csi-azurefile-controller.yaml | 194 ++++ deploy/v1.29.9/rbac-csi-azurefile-node.yaml | 30 + .../v1.29.9/rbac-csi-snapshot-controller.yaml | 78 ++ docs/install-csi-driver-v1.29.9.md | 45 + 41 files changed, 4501 insertions(+), 60 deletions(-) delete mode 100644 charts/latest/azurefile-csi-driver-v1.29.8.tgz create mode 100644 charts/latest/azurefile-csi-driver-v1.29.9.tgz create mode 100644 charts/v1.29.9/azurefile-csi-driver-v1.29.9.tgz create mode 100644 charts/v1.29.9/azurefile-csi-driver/Chart.yaml create mode 100644 charts/v1.29.9/azurefile-csi-driver/templates/NOTES.txt create mode 100644 charts/v1.29.9/azurefile-csi-driver/templates/_helpers.tpl create mode 100644 charts/v1.29.9/azurefile-csi-driver/templates/crd-csi-snapshot.yaml create mode 100644 charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-controller.yaml create mode 100644 charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-driver.yaml create mode 100644 charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-node-windows-hostprocess.yaml create mode 100644 charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-node-windows.yaml create mode 100644 charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-node.yaml create mode 100644 charts/v1.29.9/azurefile-csi-driver/templates/csi-snapshot-controller.yaml create mode 100644 charts/v1.29.9/azurefile-csi-driver/templates/rbac-csi-azurefile-controller.yaml create mode 100644 charts/v1.29.9/azurefile-csi-driver/templates/rbac-csi-azurefile-node.yaml create mode 100644 charts/v1.29.9/azurefile-csi-driver/templates/rbac-csi-snapshot-controller.yaml create mode 100644 charts/v1.29.9/azurefile-csi-driver/templates/serviceaccount-csi-azurefile-controller.yaml create mode 100644 charts/v1.29.9/azurefile-csi-driver/templates/serviceaccount-csi-azurefile-node.yaml create mode 100644 charts/v1.29.9/azurefile-csi-driver/templates/serviceaccount-csi-snapshot-controller.yaml create mode 100644 charts/v1.29.9/azurefile-csi-driver/values.yaml create mode 100644 deploy/v1.29.9/crd-csi-snapshot.yaml create mode 100644 deploy/v1.29.9/csi-azurefile-controller.yaml create mode 100644 deploy/v1.29.9/csi-azurefile-driver.yaml create mode 100644 deploy/v1.29.9/csi-azurefile-node-windows-hostprocess.yaml create mode 100644 deploy/v1.29.9/csi-azurefile-node-windows.yaml create mode 100644 deploy/v1.29.9/csi-azurefile-node.yaml create mode 100644 deploy/v1.29.9/csi-snapshot-controller.yaml create mode 100644 deploy/v1.29.9/rbac-csi-azurefile-controller.yaml create mode 100644 deploy/v1.29.9/rbac-csi-azurefile-node.yaml create mode 100644 deploy/v1.29.9/rbac-csi-snapshot-controller.yaml create mode 100644 docs/install-csi-driver-v1.29.9.md diff --git a/Makefile b/Makefile index 4a88e9a08c..dad1c903f6 100755 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ GIT_COMMIT ?= $(shell git rev-parse HEAD) REGISTRY ?= andyzhangx REGISTRY_NAME ?= $(shell echo $(REGISTRY) | sed "s/.azurecr.io//g") IMAGE_NAME ?= azurefile-csi -IMAGE_VERSION ?= v1.29.8 +IMAGE_VERSION ?= v1.29.9 # Use a custom version for E2E tests if we are testing in CI ifdef CI ifndef PUBLISH diff --git a/README.md b/README.md index 085c41fcf2..64a65fe1c0 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Disclaimer: Deploying this driver manually is not an officially supported Micros |Driver Version |Image | supported k8s version | |----------------|---------------------------------------------------------- |-----------------------| |master branch |mcr.microsoft.com/k8s/csi/azurefile-csi:latest | 1.21+ | -|v1.29.8 |mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.29.8 | 1.21+ | +|v1.29.9 |mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.29.9 | 1.21+ | |v1.28.3 |mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.28.3 | 1.21+ | |v1.27.3 |mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.27.3 | 1.21+ | diff --git a/charts/README.md b/charts/README.md index 8b87371556..2608d1789c 100644 --- a/charts/README.md +++ b/charts/README.md @@ -16,7 +16,7 @@ ### install a specific version ```console helm repo add azurefile-csi-driver https://raw.githubusercontent.com/kubernetes-sigs/azurefile-csi-driver/master/charts -helm install azurefile-csi-driver azurefile-csi-driver/azurefile-csi-driver --namespace kube-system --version v1.29.8 +helm install azurefile-csi-driver azurefile-csi-driver/azurefile-csi-driver --namespace kube-system --version v1.29.9 ``` ### install on RedHat/CentOS diff --git a/charts/index.yaml b/charts/index.yaml index 486200a4cd..b95f7b2459 100644 --- a/charts/index.yaml +++ b/charts/index.yaml @@ -2,26 +2,35 @@ apiVersion: v1 entries: azurefile-csi-driver: - apiVersion: v1 - appVersion: v1.29.8 - created: "2024-09-05T02:12:21.318782626Z" + appVersion: v1.29.9 + created: "2024-10-10T03:15:17.335150959Z" description: Azure File Container Storage Interface (CSI) Storage Plugin - digest: 6b6edf2236207d589b90051f92bbe2a2ba5b770dfa2d1ec457dab7f12052ee76 + digest: 13be7bcd3fb77b1e539c85668064841de355a268e854263fcf6d4ff16f70b942 name: azurefile-csi-driver urls: - - https://raw.githubusercontent.com/kubernetes-sigs/azurefile-csi-driver/master/charts/v1.29.8/azurefile-csi-driver-v1.29.8.tgz - version: v1.29.8 + - https://raw.githubusercontent.com/kubernetes-sigs/azurefile-csi-driver/master/charts/v1.29.9/azurefile-csi-driver-v1.29.9.tgz + version: v1.29.9 + - apiVersion: v1 + appVersion: v1.29.9 + created: "2024-10-10T03:15:17.293936004Z" + description: Azure File Container Storage Interface (CSI) Storage Plugin + digest: 13be7bcd3fb77b1e539c85668064841de355a268e854263fcf6d4ff16f70b942 + name: azurefile-csi-driver + urls: + - https://raw.githubusercontent.com/kubernetes-sigs/azurefile-csi-driver/master/charts/latest/azurefile-csi-driver-v1.29.9.tgz + version: v1.29.9 - apiVersion: v1 appVersion: v1.29.8 - created: "2024-09-05T02:12:21.228189104Z" + created: "2024-10-10T03:15:17.334103281Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 6b6edf2236207d589b90051f92bbe2a2ba5b770dfa2d1ec457dab7f12052ee76 name: azurefile-csi-driver urls: - - https://raw.githubusercontent.com/kubernetes-sigs/azurefile-csi-driver/master/charts/latest/azurefile-csi-driver-v1.29.8.tgz + - https://raw.githubusercontent.com/kubernetes-sigs/azurefile-csi-driver/master/charts/v1.29.8/azurefile-csi-driver-v1.29.8.tgz version: v1.29.8 - apiVersion: v1 appVersion: v1.29.7 - created: "2024-09-05T02:12:21.31669592Z" + created: "2024-10-10T03:15:17.333015087Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: d31aba313d13f53e90ad41ccbc65ff4d95c957dd22672d634a98c2a2998dc5e9 name: azurefile-csi-driver @@ -30,7 +39,7 @@ entries: version: v1.29.7 - apiVersion: v1 appVersion: v1.29.6 - created: "2024-09-05T02:12:21.315310572Z" + created: "2024-10-10T03:15:17.331927318Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 9d385d18e40c04306435e939ebd38939d15f0dc2e6837d1c675811fe0fae9eba name: azurefile-csi-driver @@ -39,7 +48,7 @@ entries: version: v1.29.6 - apiVersion: v1 appVersion: v1.29.5 - created: "2024-09-05T02:12:21.314212025Z" + created: "2024-10-10T03:15:17.330857423Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 99079a45e3826ff78a484d7f721ce84d7bb99663738f7a3b37a76e5df9aa0669 name: azurefile-csi-driver @@ -48,7 +57,7 @@ entries: version: v1.29.5 - apiVersion: v1 appVersion: v1.29.4 - created: "2024-09-05T02:12:21.31309213Z" + created: "2024-10-10T03:15:17.328769989Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 820020b2a8c919c8dbd28b4a92767e2feeb4d282ac6003b5781fc6abcbc5e0c7 name: azurefile-csi-driver @@ -57,7 +66,7 @@ entries: version: v1.29.4 - apiVersion: v1 appVersion: v1.29.3 - created: "2024-09-05T02:12:21.311972364Z" + created: "2024-10-10T03:15:17.327705879Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: e4a96134973d29277430319c38cb5163f93e20561b2541f4b2b51126ef6e20a8 name: azurefile-csi-driver @@ -66,7 +75,7 @@ entries: version: v1.29.3 - apiVersion: v1 appVersion: v1.29.2 - created: "2024-09-05T02:12:21.309995519Z" + created: "2024-10-10T03:15:17.326657864Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 1d1a7075f40821228925e1bb2d7addc8418222c923ea9bac311d49510b262cb9 name: azurefile-csi-driver @@ -75,7 +84,7 @@ entries: version: v1.29.2 - apiVersion: v1 appVersion: v1.29.1 - created: "2024-09-05T02:12:21.308851453Z" + created: "2024-10-10T03:15:17.325570902Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: a7e3bc8bb3e17153f35387f2040210d72ac5545a9446b0a37660273b5635e11d name: azurefile-csi-driver @@ -84,7 +93,7 @@ entries: version: v1.29.1 - apiVersion: v1 appVersion: v1.29.0 - created: "2024-09-05T02:12:21.307711939Z" + created: "2024-10-10T03:15:17.324295441Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 2da242b471ff0eaf6ea3f1a9d2c1f6aaa1b78c8cbb4e850bbefb336e043b8098 name: azurefile-csi-driver @@ -93,7 +102,7 @@ entries: version: v1.29.0 - apiVersion: v1 appVersion: v1.28.3 - created: "2024-09-05T02:12:21.306300585Z" + created: "2024-10-10T03:15:17.322584211Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 58e138f7a8f2a925c56ca26dc220cab2dc723691c23fd011b457624d11889395 name: azurefile-csi-driver @@ -102,7 +111,7 @@ entries: version: v1.28.3 - apiVersion: v1 appVersion: v1.28.2 - created: "2024-09-05T02:12:21.304722459Z" + created: "2024-10-10T03:15:17.321517522Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 426fad83a42035af15af775bd37c73309ef0cfe22686babb0668be71da70a66e name: azurefile-csi-driver @@ -111,7 +120,7 @@ entries: version: v1.28.2 - apiVersion: v1 appVersion: v1.27.3 - created: "2024-09-05T02:12:21.299434127Z" + created: "2024-10-10T03:15:17.320411896Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 330d2b11f93e2b10d36f64ed6de528b61351ca794dd9b2c3690c6f6790008732 name: azurefile-csi-driver @@ -120,7 +129,7 @@ entries: version: v1.27.3 - apiVersion: v1 appVersion: v1.27.2 - created: "2024-09-05T02:12:21.298287074Z" + created: "2024-10-10T03:15:17.319398697Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: ab72e0e5f360a38f63e87147ef47ef213016578e8ba64fbb32ecaf2aad7ffdf3 name: azurefile-csi-driver @@ -129,7 +138,7 @@ entries: version: v1.27.2 - apiVersion: v1 appVersion: v1.26.6 - created: "2024-09-05T02:12:21.296972395Z" + created: "2024-10-10T03:15:17.318041011Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 3c20488343b47ed618e8c809f6fcdd83f22e00a4d07c78ca097573cafd7075a9 name: azurefile-csi-driver @@ -138,7 +147,7 @@ entries: version: v1.26.6 - apiVersion: v1 appVersion: v1.26.5 - created: "2024-09-05T02:12:21.295568204Z" + created: "2024-10-10T03:15:17.316413347Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 62ac6ab864264ee1e2fb86e8093c8e8263c2c0d3bafff60704c31fd72e40c604 name: azurefile-csi-driver @@ -147,7 +156,7 @@ entries: version: v1.26.5 - apiVersion: v1 appVersion: v1.25.1 - created: "2024-09-05T02:12:21.293953642Z" + created: "2024-10-10T03:15:17.315416755Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 2bf374cc321c5bc8e76e06cd5df85ce7d7d14574397e7e7f7173077393f554c4 name: azurefile-csi-driver @@ -156,7 +165,7 @@ entries: version: v1.25.1 - apiVersion: v1 appVersion: v1.24.7 - created: "2024-09-05T02:12:21.288842824Z" + created: "2024-10-10T03:15:17.314433686Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 9e5b3f32ad823f845e5a09af230f7a934851943d6afcab3bd545233838680d83 name: azurefile-csi-driver @@ -165,7 +174,7 @@ entries: version: v1.24.7 - apiVersion: v1 appVersion: v1.24.6 - created: "2024-09-05T02:12:21.286578342Z" + created: "2024-10-10T03:15:17.313430016Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: dbd0a6e27a09fec002c57029bd6e34a6ee92d1c10e708935e3f2150069a35ee5 name: azurefile-csi-driver @@ -174,7 +183,7 @@ entries: version: v1.24.6 - apiVersion: v1 appVersion: v1.23.0 - created: "2024-09-05T02:12:21.285271728Z" + created: "2024-10-10T03:15:17.312267705Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 5fcb33617d16e90df1e7041b0df02e5bd92595e86381db30d356b0b2e3500bc4 name: azurefile-csi-driver @@ -183,7 +192,7 @@ entries: version: v1.23.0 - apiVersion: v1 appVersion: v1.22.0 - created: "2024-09-05T02:12:21.283915864Z" + created: "2024-10-10T03:15:17.310338002Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 253d87a8b876dbdd55870a7fee88547393179d03f193661125f5a0b63411f922 name: azurefile-csi-driver @@ -192,7 +201,7 @@ entries: version: v1.22.0 - apiVersion: v1 appVersion: v1.21.0 - created: "2024-09-05T02:12:21.279947248Z" + created: "2024-10-10T03:15:17.30932445Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: d45bf3455ebadc9cc5afaf9da66aa1ea1d4b719cfdff5af661f93bb26c01a504 name: azurefile-csi-driver @@ -201,7 +210,7 @@ entries: version: v1.21.0 - apiVersion: v1 appVersion: v1.20.0 - created: "2024-09-05T02:12:21.273116916Z" + created: "2024-10-10T03:15:17.308361349Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 7cc43d57a79137aea5414fb51a9bbd77bb679b29ee49c06865c1a5b9ba60be99 name: azurefile-csi-driver @@ -210,7 +219,7 @@ entries: version: v1.20.0 - apiVersion: v1 appVersion: v1.19.0 - created: "2024-09-05T02:12:21.267963857Z" + created: "2024-10-10T03:15:17.306656605Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 18f6efbed424efd661fde43be2e5a48a5012a46a7938c33b36963cbd9875a5af name: azurefile-csi-driver @@ -219,7 +228,7 @@ entries: version: v1.19.0 - apiVersion: v1 appVersion: v1.18.0 - created: "2024-09-05T02:12:21.258152663Z" + created: "2024-10-10T03:15:17.305092995Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 696ca23d9ee517f71ef5e852955c8d0f1017c331c025426c6fcbe7a06d006c66 name: azurefile-csi-driver @@ -228,7 +237,7 @@ entries: version: v1.18.0 - apiVersion: v1 appVersion: v1.17.0 - created: "2024-09-05T02:12:21.256938026Z" + created: "2024-10-10T03:15:17.303680054Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 5632f61265a3b78dce3e2b15e07cc9b14a7f54a778878c02ca2d9fe69ca0344e name: azurefile-csi-driver @@ -237,7 +246,7 @@ entries: version: v1.17.0 - apiVersion: v1 appVersion: v1.16.0 - created: "2024-09-05T02:12:21.25564609Z" + created: "2024-10-10T03:15:17.302757197Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: a7a2d57e8eca7dc06c8b2cffb9bccb857753eb110b8e70760b3e04f4e6a87552 name: azurefile-csi-driver @@ -246,7 +255,7 @@ entries: version: v1.16.0 - apiVersion: v1 appVersion: v1.15.0 - created: "2024-09-05T02:12:21.252097482Z" + created: "2024-10-10T03:15:17.301833113Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: c1a31dadce233a90c19dce70f6cc92ba2e20bbaa1b1883baea72381d09303118 name: azurefile-csi-driver @@ -255,7 +264,7 @@ entries: version: v1.15.0 - apiVersion: v1 appVersion: v1.14.0 - created: "2024-09-05T02:12:21.246962951Z" + created: "2024-10-10T03:15:17.300857296Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 0c9ad4afa5ebfdb2851ad93eb16a0382d61448714b7556899360730a2fdf463a name: azurefile-csi-driver @@ -264,7 +273,7 @@ entries: version: v1.14.0 - apiVersion: v1 appVersion: v1.13.0 - created: "2024-09-05T02:12:21.24263114Z" + created: "2024-10-10T03:15:17.299881971Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 214042b029d858b50a0f8bba33a7aa2b41d1b67bce16f957ca183ae7438dac3f name: azurefile-csi-driver @@ -273,7 +282,7 @@ entries: version: v1.13.0 - apiVersion: v1 appVersion: v1.12.0 - created: "2024-09-05T02:12:21.240296376Z" + created: "2024-10-10T03:15:17.298907743Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: fbd63929671066a26df898d32282a6e79c39499a39c71761c546d069459d847d name: azurefile-csi-driver @@ -282,7 +291,7 @@ entries: version: v1.12.0 - apiVersion: v1 appVersion: v1.11.0 - created: "2024-09-05T02:12:21.235267426Z" + created: "2024-10-10T03:15:17.296931193Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 76bd438f8391d08235b09fbca859f25a9fcf8e018fd1e7e33444ca9ea946ce4b name: azurefile-csi-driver @@ -291,7 +300,7 @@ entries: version: v1.11.0 - apiVersion: v1 appVersion: v1.10.0 - created: "2024-09-05T02:12:21.233742029Z" + created: "2024-10-10T03:15:17.295956916Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 845a9de8b571b255d05ae9c643d9b90a57fe6507ff3fb735c88b41f99f6f28dc name: azurefile-csi-driver @@ -300,7 +309,7 @@ entries: version: v1.10.0 - apiVersion: v1 appVersion: v1.9.0 - created: "2024-09-05T02:12:21.325198645Z" + created: "2024-10-10T03:15:17.342288805Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 59a8057fbbd6d59919b84ef0c3396d5a0a46d1f29df604457db676f4af63c714 name: azurefile-csi-driver @@ -309,7 +318,7 @@ entries: version: v1.9.0 - apiVersion: v1 appVersion: v1.8.0 - created: "2024-09-05T02:12:21.324122357Z" + created: "2024-10-10T03:15:17.340419834Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 455b7c342194311046df526d10926d94f3bef24f753a07003fb1cad211c4cb52 name: azurefile-csi-driver @@ -318,7 +327,7 @@ entries: version: v1.8.0 - apiVersion: v1 appVersion: v1.7.0 - created: "2024-09-05T02:12:21.32224011Z" + created: "2024-10-10T03:15:17.339459931Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 057b3f6ef6001d3457fbffc27f90316c981a089696abd3d38bcc8de5537dfa6f name: azurefile-csi-driver @@ -327,7 +336,7 @@ entries: version: v1.7.0 - apiVersion: v1 appVersion: v1.6.0 - created: "2024-09-05T02:12:21.321463774Z" + created: "2024-10-10T03:15:17.338712025Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: cc2a0dda824cdda4e8141e26878bbb481c5a52e45785a5dbf72e54f2a376e522 name: azurefile-csi-driver @@ -336,7 +345,7 @@ entries: version: v1.6.0 - apiVersion: v1 appVersion: v1.5.0 - created: "2024-09-05T02:12:21.320730801Z" + created: "2024-10-10T03:15:17.337956767Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 2258177477415ddecd83dc46dfd88833223623224c7fe396590b617082bcd845 name: azurefile-csi-driver @@ -345,7 +354,7 @@ entries: version: v1.5.0 - apiVersion: v1 appVersion: v1.4.0 - created: "2024-09-05T02:12:21.320001941Z" + created: "2024-10-10T03:15:17.337253664Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 40e9bc4ee187789166fcb7c3c82b85b33ecd3a6096266fe74e411d6b48961ece name: azurefile-csi-driver @@ -354,7 +363,7 @@ entries: version: v1.4.0 - apiVersion: v1 appVersion: v1.3.0 - created: "2024-09-05T02:12:21.319333147Z" + created: "2024-10-10T03:15:17.336529866Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 12942f422b7cccbfe950bbdbd5c844f5ae4b7c292f32389cba312730a6fe9a62 name: azurefile-csi-driver @@ -363,7 +372,7 @@ entries: version: v1.3.0 - apiVersion: v1 appVersion: v1.2.0 - created: "2024-09-05T02:12:21.268967427Z" + created: "2024-10-10T03:15:17.307328129Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: b62f44b757416a9e1f5a91e19285f5f5056ec6068802dd9cd82373bef40c9ee9 name: azurefile-csi-driver @@ -372,7 +381,7 @@ entries: version: v1.2.0 - apiVersion: v1 appVersion: v1.1.0 - created: "2024-09-05T02:12:21.229302599Z" + created: "2024-10-10T03:15:17.294998496Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 675d96b309a1c5c491053ebbb854c046737420929c4f0692839afdaaf0db3933 name: azurefile-csi-driver @@ -381,11 +390,11 @@ entries: version: v1.1.0 - apiVersion: v1 appVersion: v1.0.0 - created: "2024-09-05T02:12:21.228739251Z" + created: "2024-10-10T03:15:17.294470172Z" description: Azure File Container Storage Interface (CSI) Storage Plugin digest: 6fd5e54e949ef1061a08d5477bc580204c91dde8f01da195e95dd60ade209492 name: azurefile-csi-driver urls: - https://raw.githubusercontent.com/kubernetes-sigs/azurefile-csi-driver/master/charts/v1.0.0/azurefile-csi-driver-v1.0.0.tgz version: v1.0.0 -generated: "2024-09-05T02:12:21.22684426Z" +generated: "2024-10-10T03:15:17.292585318Z" diff --git a/charts/latest/azurefile-csi-driver-v1.29.8.tgz b/charts/latest/azurefile-csi-driver-v1.29.8.tgz deleted file mode 100644 index a758abe043fd00b370b51d02c4b0fdeaa13d7e47..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13450 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 diff --git a/charts/latest/azurefile-csi-driver-v1.29.9.tgz b/charts/latest/azurefile-csi-driver-v1.29.9.tgz new file mode 100644 index 0000000000000000000000000000000000000000..59a9746f5aa816315bb82a5b513db108719c9bbd GIT binary patch literal 13451 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 literal 0 HcmV?d00001 diff --git a/charts/latest/azurefile-csi-driver/Chart.yaml b/charts/latest/azurefile-csi-driver/Chart.yaml index 05f270d554..ec985f2bc7 100644 --- a/charts/latest/azurefile-csi-driver/Chart.yaml +++ b/charts/latest/azurefile-csi-driver/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v1 -appVersion: v1.29.8 +appVersion: v1.29.9 description: Azure File Container Storage Interface (CSI) Storage Plugin name: azurefile-csi-driver -version: v1.29.8 +version: v1.29.9 diff --git a/charts/latest/azurefile-csi-driver/values.yaml b/charts/latest/azurefile-csi-driver/values.yaml index 49ab1178b4..83259b3a1d 100644 --- a/charts/latest/azurefile-csi-driver/values.yaml +++ b/charts/latest/azurefile-csi-driver/values.yaml @@ -2,7 +2,7 @@ image: baseRepo: mcr.microsoft.com azurefile: repository: /oss/kubernetes-csi/azurefile-csi - tag: v1.29.8 + tag: v1.29.9 pullPolicy: IfNotPresent csiProvisioner: repository: /oss/kubernetes-csi/csi-provisioner diff --git a/charts/v1.29.9/azurefile-csi-driver-v1.29.9.tgz b/charts/v1.29.9/azurefile-csi-driver-v1.29.9.tgz new file mode 100644 index 0000000000000000000000000000000000000000..59a9746f5aa816315bb82a5b513db108719c9bbd GIT binary patch literal 13451 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 literal 0 HcmV?d00001 diff --git a/charts/v1.29.9/azurefile-csi-driver/Chart.yaml b/charts/v1.29.9/azurefile-csi-driver/Chart.yaml new file mode 100644 index 0000000000..ec985f2bc7 --- /dev/null +++ b/charts/v1.29.9/azurefile-csi-driver/Chart.yaml @@ -0,0 +1,5 @@ +apiVersion: v1 +appVersion: v1.29.9 +description: Azure File Container Storage Interface (CSI) Storage Plugin +name: azurefile-csi-driver +version: v1.29.9 diff --git a/charts/v1.29.9/azurefile-csi-driver/templates/NOTES.txt b/charts/v1.29.9/azurefile-csi-driver/templates/NOTES.txt new file mode 100644 index 0000000000..3fadd8ad36 --- /dev/null +++ b/charts/v1.29.9/azurefile-csi-driver/templates/NOTES.txt @@ -0,0 +1,5 @@ +The Azure File CSI Driver is getting deployed to your cluster. + +To check Azure File CSI Driver pods status, please run: + + kubectl --namespace={{ .Release.Namespace }} get pods --selector="release={{ .Release.Name }}" --watch diff --git a/charts/v1.29.9/azurefile-csi-driver/templates/_helpers.tpl b/charts/v1.29.9/azurefile-csi-driver/templates/_helpers.tpl new file mode 100644 index 0000000000..b1bf4dc1b6 --- /dev/null +++ b/charts/v1.29.9/azurefile-csi-driver/templates/_helpers.tpl @@ -0,0 +1,49 @@ +{{/* vim: set filetype=mustache: */}} + +{{/* Expand the name of the chart.*/}} +{{- define "azurefile.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "azurefile.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{/* +Common selectors. +*/}} +{{- define "azurefile.selectorLabels" -}} +app.kubernetes.io/name: {{ template "azurefile.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end -}} + +{{/* +Common labels. +*/}} +{{- define "azurefile.labels" -}} +{{- include "azurefile.selectorLabels" . }} +app.kubernetes.io/component: csi-driver +app.kubernetes.io/part-of: {{ template "azurefile.name" . }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +helm.sh/chart: {{ template "azurefile.chart" . }} +{{- if .Values.customLabels }} +{{ toYaml .Values.customLabels }} +{{- end }} +{{- end -}} + + +{{/* pull secrets for containers */}} +{{- define "azurefile.pullSecrets" -}} +{{- if .Values.imagePullSecrets }} +imagePullSecrets: +{{- range .Values.imagePullSecrets }} + - name: {{ . }} +{{- end }} +{{- end }} +{{- end -}} diff --git a/charts/v1.29.9/azurefile-csi-driver/templates/crd-csi-snapshot.yaml b/charts/v1.29.9/azurefile-csi-driver/templates/crd-csi-snapshot.yaml new file mode 100644 index 0000000000..76df8af7e9 --- /dev/null +++ b/charts/v1.29.9/azurefile-csi-driver/templates/crd-csi-snapshot.yaml @@ -0,0 +1,840 @@ +{{- if .Values.snapshot.enabled -}} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.8.0 + api-approved.kubernetes.io: "https://github.com/kubernetes-csi/external-snapshotter/pull/665" + creationTimestamp: null + name: volumesnapshots.snapshot.storage.k8s.io +spec: + group: snapshot.storage.k8s.io + names: + kind: VolumeSnapshot + listKind: VolumeSnapshotList + plural: volumesnapshots + shortNames: + - vs + singular: volumesnapshot + scope: Namespaced + versions: + - additionalPrinterColumns: + - description: Indicates if the snapshot is ready to be used to restore a volume. + jsonPath: .status.readyToUse + name: ReadyToUse + type: boolean + - description: If a new snapshot needs to be created, this contains the name of + the source PVC from which this snapshot was (or will be) created. + jsonPath: .spec.source.persistentVolumeClaimName + name: SourcePVC + type: string + - description: If a snapshot already exists, this contains the name of the existing + VolumeSnapshotContent object representing the existing snapshot. + jsonPath: .spec.source.volumeSnapshotContentName + name: SourceSnapshotContent + type: string + - description: Represents the minimum size of volume required to rehydrate from + this snapshot. + jsonPath: .status.restoreSize + name: RestoreSize + type: string + - description: The name of the VolumeSnapshotClass requested by the VolumeSnapshot. + jsonPath: .spec.volumeSnapshotClassName + name: SnapshotClass + type: string + - description: Name of the VolumeSnapshotContent object to which the VolumeSnapshot + object intends to bind to. Please note that verification of binding actually + requires checking both VolumeSnapshot and VolumeSnapshotContent to ensure + both are pointing at each other. Binding MUST be verified prior to usage of + this object. + jsonPath: .status.boundVolumeSnapshotContentName + name: SnapshotContent + type: string + - description: Timestamp when the point-in-time snapshot was taken by the underlying + storage system. + jsonPath: .status.creationTime + name: CreationTime + type: date + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: VolumeSnapshot is a user's request for either creating a point-in-time + snapshot of a persistent volume, or binding to a pre-existing snapshot. + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the latest + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the client + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + spec: + description: 'spec defines the desired characteristics of a snapshot requested + by a user. More info: https://kubernetes.io/docs/concepts/storage/volume-snapshots#volumesnapshots + Required.' + properties: + source: + description: source specifies where a snapshot will be created from. + This field is immutable after creation. Required. + properties: + persistentVolumeClaimName: + description: persistentVolumeClaimName specifies the name of the + PersistentVolumeClaim object representing the volume from which + a snapshot should be created. This PVC is assumed to be in the + same namespace as the VolumeSnapshot object. This field should + be set if the snapshot does not exists, and needs to be created. + This field is immutable. + type: string + volumeSnapshotContentName: + description: volumeSnapshotContentName specifies the name of a + pre-existing VolumeSnapshotContent object representing an existing + volume snapshot. This field should be set if the snapshot already + exists and only needs a representation in Kubernetes. This field + is immutable. + type: string + type: object + oneOf: + - required: ["persistentVolumeClaimName"] + - required: ["volumeSnapshotContentName"] + volumeSnapshotClassName: + description: 'VolumeSnapshotClassName is the name of the VolumeSnapshotClass + requested by the VolumeSnapshot. VolumeSnapshotClassName may be + left nil to indicate that the default SnapshotClass should be used. + A given cluster may have multiple default Volume SnapshotClasses: + one default per CSI Driver. If a VolumeSnapshot does not specify + a SnapshotClass, VolumeSnapshotSource will be checked to figure + out what the associated CSI Driver is, and the default VolumeSnapshotClass + associated with that CSI Driver will be used. If more than one VolumeSnapshotClass + exist for a given CSI Driver and more than one have been marked + as default, CreateSnapshot will fail and generate an event. Empty + string is not allowed for this field.' + type: string + required: + - source + type: object + status: + description: status represents the current information of a snapshot. + Consumers must verify binding between VolumeSnapshot and VolumeSnapshotContent + objects is successful (by validating that both VolumeSnapshot and VolumeSnapshotContent + point at each other) before using this object. + properties: + boundVolumeSnapshotContentName: + description: 'boundVolumeSnapshotContentName is the name of the VolumeSnapshotContent + object to which this VolumeSnapshot object intends to bind to. If + not specified, it indicates that the VolumeSnapshot object has not + been successfully bound to a VolumeSnapshotContent object yet. NOTE: + To avoid possible security issues, consumers must verify binding + between VolumeSnapshot and VolumeSnapshotContent objects is successful + (by validating that both VolumeSnapshot and VolumeSnapshotContent + point at each other) before using this object.' + type: string + creationTime: + description: creationTime is the timestamp when the point-in-time + snapshot is taken by the underlying storage system. In dynamic snapshot + creation case, this field will be filled in by the snapshot controller + with the "creation_time" value returned from CSI "CreateSnapshot" + gRPC call. For a pre-existing snapshot, this field will be filled + with the "creation_time" value returned from the CSI "ListSnapshots" + gRPC call if the driver supports it. If not specified, it may indicate + that the creation time of the snapshot is unknown. + format: date-time + type: string + error: + description: error is the last observed error during snapshot creation, + if any. This field could be helpful to upper level controllers(i.e., + application controller) to decide whether they should continue on + waiting for the snapshot to be created based on the type of error + reported. The snapshot controller will keep retrying when an error + occurs during the snapshot creation. Upon success, this error field + will be cleared. + properties: + message: + description: 'message is a string detailing the encountered error + during snapshot creation if specified. NOTE: message may be + logged, and it should not contain sensitive information.' + type: string + time: + description: time is the timestamp when the error was encountered. + format: date-time + type: string + type: object + readyToUse: + description: readyToUse indicates if the snapshot is ready to be used + to restore a volume. In dynamic snapshot creation case, this field + will be filled in by the snapshot controller with the "ready_to_use" + value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing + snapshot, this field will be filled with the "ready_to_use" value + returned from the CSI "ListSnapshots" gRPC call if the driver supports + it, otherwise, this field will be set to "True". If not specified, + it means the readiness of a snapshot is unknown. + type: boolean + restoreSize: + type: string + description: restoreSize represents the minimum size of volume required + to create a volume from this snapshot. In dynamic snapshot creation + case, this field will be filled in by the snapshot controller with + the "size_bytes" value returned from CSI "CreateSnapshot" gRPC call. + For a pre-existing snapshot, this field will be filled with the + "size_bytes" value returned from the CSI "ListSnapshots" gRPC call + if the driver supports it. When restoring a volume from this snapshot, + the size of the volume MUST NOT be smaller than the restoreSize + if it is specified, otherwise the restoration will fail. If not + specified, it indicates that the size is unknown. + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + required: + - spec + type: object + served: true + storage: true + subresources: + status: {} + - additionalPrinterColumns: + - description: Indicates if the snapshot is ready to be used to restore a volume. + jsonPath: .status.readyToUse + name: ReadyToUse + type: boolean + - description: If a new snapshot needs to be created, this contains the name of the source PVC from which this snapshot was (or will be) created. + jsonPath: .spec.source.persistentVolumeClaimName + name: SourcePVC + type: string + - description: If a snapshot already exists, this contains the name of the existing VolumeSnapshotContent object representing the existing snapshot. + jsonPath: .spec.source.volumeSnapshotContentName + name: SourceSnapshotContent + type: string + - description: Represents the minimum size of volume required to rehydrate from this snapshot. + jsonPath: .status.restoreSize + name: RestoreSize + type: string + - description: The name of the VolumeSnapshotClass requested by the VolumeSnapshot. + jsonPath: .spec.volumeSnapshotClassName + name: SnapshotClass + type: string + - description: Name of the VolumeSnapshotContent object to which the VolumeSnapshot object intends to bind to. Please note that verification of binding actually requires checking both VolumeSnapshot and VolumeSnapshotContent to ensure both are pointing at each other. Binding MUST be verified prior to usage of this object. + jsonPath: .status.boundVolumeSnapshotContentName + name: SnapshotContent + type: string + - description: Timestamp when the point-in-time snapshot was taken by the underlying storage system. + jsonPath: .status.creationTime + name: CreationTime + type: date + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1beta1 + # This indicates the v1beta1 version of the custom resource is deprecated. + # API requests to this version receive a warning in the server response. + deprecated: true + # This overrides the default warning returned to clients making v1beta1 API requests. + deprecationWarning: "snapshot.storage.k8s.io/v1beta1 VolumeSnapshot is deprecated; use snapshot.storage.k8s.io/v1 VolumeSnapshot" + schema: + openAPIV3Schema: + description: VolumeSnapshot is a user's request for either creating a point-in-time snapshot of a persistent volume, or binding to a pre-existing snapshot. + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + spec: + description: 'spec defines the desired characteristics of a snapshot requested by a user. More info: https://kubernetes.io/docs/concepts/storage/volume-snapshots#volumesnapshots Required.' + properties: + source: + description: source specifies where a snapshot will be created from. This field is immutable after creation. Required. + properties: + persistentVolumeClaimName: + description: persistentVolumeClaimName specifies the name of the PersistentVolumeClaim object representing the volume from which a snapshot should be created. This PVC is assumed to be in the same namespace as the VolumeSnapshot object. This field should be set if the snapshot does not exists, and needs to be created. This field is immutable. + type: string + volumeSnapshotContentName: + description: volumeSnapshotContentName specifies the name of a pre-existing VolumeSnapshotContent object representing an existing volume snapshot. This field should be set if the snapshot already exists and only needs a representation in Kubernetes. This field is immutable. + type: string + type: object + volumeSnapshotClassName: + description: 'VolumeSnapshotClassName is the name of the VolumeSnapshotClass requested by the VolumeSnapshot. VolumeSnapshotClassName may be left nil to indicate that the default SnapshotClass should be used. A given cluster may have multiple default Volume SnapshotClasses: one default per CSI Driver. If a VolumeSnapshot does not specify a SnapshotClass, VolumeSnapshotSource will be checked to figure out what the associated CSI Driver is, and the default VolumeSnapshotClass associated with that CSI Driver will be used. If more than one VolumeSnapshotClass exist for a given CSI Driver and more than one have been marked as default, CreateSnapshot will fail and generate an event. Empty string is not allowed for this field.' + type: string + required: + - source + type: object + status: + description: status represents the current information of a snapshot. Consumers must verify binding between VolumeSnapshot and VolumeSnapshotContent objects is successful (by validating that both VolumeSnapshot and VolumeSnapshotContent point at each other) before using this object. + properties: + boundVolumeSnapshotContentName: + description: 'boundVolumeSnapshotContentName is the name of the VolumeSnapshotContent object to which this VolumeSnapshot object intends to bind to. If not specified, it indicates that the VolumeSnapshot object has not been successfully bound to a VolumeSnapshotContent object yet. NOTE: To avoid possible security issues, consumers must verify binding between VolumeSnapshot and VolumeSnapshotContent objects is successful (by validating that both VolumeSnapshot and VolumeSnapshotContent point at each other) before using this object.' + type: string + creationTime: + description: creationTime is the timestamp when the point-in-time snapshot is taken by the underlying storage system. In dynamic snapshot creation case, this field will be filled in by the snapshot controller with the "creation_time" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "creation_time" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it. If not specified, it may indicate that the creation time of the snapshot is unknown. + format: date-time + type: string + error: + description: error is the last observed error during snapshot creation, if any. This field could be helpful to upper level controllers(i.e., application controller) to decide whether they should continue on waiting for the snapshot to be created based on the type of error reported. The snapshot controller will keep retrying when an error occurs during the snapshot creation. Upon success, this error field will be cleared. + properties: + message: + description: 'message is a string detailing the encountered error during snapshot creation if specified. NOTE: message may be logged, and it should not contain sensitive information.' + type: string + time: + description: time is the timestamp when the error was encountered. + format: date-time + type: string + type: object + readyToUse: + description: readyToUse indicates if the snapshot is ready to be used to restore a volume. In dynamic snapshot creation case, this field will be filled in by the snapshot controller with the "ready_to_use" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "ready_to_use" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it, otherwise, this field will be set to "True". If not specified, it means the readiness of a snapshot is unknown. + type: boolean + restoreSize: + type: string + description: restoreSize represents the minimum size of volume required to create a volume from this snapshot. In dynamic snapshot creation case, this field will be filled in by the snapshot controller with the "size_bytes" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "size_bytes" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it. When restoring a volume from this snapshot, the size of the volume MUST NOT be smaller than the restoreSize if it is specified, otherwise the restoration will fail. If not specified, it indicates that the size is unknown. + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + required: + - spec + type: object + served: false + storage: false + subresources: + status: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.8.0 + api-approved.kubernetes.io: "https://github.com/kubernetes-csi/external-snapshotter/pull/665" + creationTimestamp: null + name: volumesnapshotclasses.snapshot.storage.k8s.io +spec: + group: snapshot.storage.k8s.io + names: + kind: VolumeSnapshotClass + listKind: VolumeSnapshotClassList + plural: volumesnapshotclasses + shortNames: + - vsclass + - vsclasses + singular: volumesnapshotclass + scope: Cluster + versions: + - additionalPrinterColumns: + - jsonPath: .driver + name: Driver + type: string + - description: Determines whether a VolumeSnapshotContent created through the + VolumeSnapshotClass should be deleted when its bound VolumeSnapshot is deleted. + jsonPath: .deletionPolicy + name: DeletionPolicy + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: VolumeSnapshotClass specifies parameters that a underlying storage + system uses when creating a volume snapshot. A specific VolumeSnapshotClass + is used by specifying its name in a VolumeSnapshot object. VolumeSnapshotClasses + are non-namespaced + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the latest + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + deletionPolicy: + description: deletionPolicy determines whether a VolumeSnapshotContent + created through the VolumeSnapshotClass should be deleted when its bound + VolumeSnapshot is deleted. Supported values are "Retain" and "Delete". + "Retain" means that the VolumeSnapshotContent and its physical snapshot + on underlying storage system are kept. "Delete" means that the VolumeSnapshotContent + and its physical snapshot on underlying storage system are deleted. + Required. + enum: + - Delete + - Retain + type: string + driver: + description: driver is the name of the storage driver that handles this + VolumeSnapshotClass. Required. + type: string + kind: + description: 'Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the client + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + parameters: + additionalProperties: + type: string + description: parameters is a key-value map with storage driver specific + parameters for creating snapshots. These values are opaque to Kubernetes. + type: object + required: + - deletionPolicy + - driver + type: object + served: true + storage: true + subresources: {} + - additionalPrinterColumns: + - jsonPath: .driver + name: Driver + type: string + - description: Determines whether a VolumeSnapshotContent created through the VolumeSnapshotClass should be deleted when its bound VolumeSnapshot is deleted. + jsonPath: .deletionPolicy + name: DeletionPolicy + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1beta1 + # This indicates the v1beta1 version of the custom resource is deprecated. + # API requests to this version receive a warning in the server response. + deprecated: true + # This overrides the default warning returned to clients making v1beta1 API requests. + deprecationWarning: "snapshot.storage.k8s.io/v1beta1 VolumeSnapshotClass is deprecated; use snapshot.storage.k8s.io/v1 VolumeSnapshotClass" + schema: + openAPIV3Schema: + description: VolumeSnapshotClass specifies parameters that a underlying storage system uses when creating a volume snapshot. A specific VolumeSnapshotClass is used by specifying its name in a VolumeSnapshot object. VolumeSnapshotClasses are non-namespaced + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + deletionPolicy: + description: deletionPolicy determines whether a VolumeSnapshotContent created through the VolumeSnapshotClass should be deleted when its bound VolumeSnapshot is deleted. Supported values are "Retain" and "Delete". "Retain" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are kept. "Delete" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are deleted. Required. + enum: + - Delete + - Retain + type: string + driver: + description: driver is the name of the storage driver that handles this VolumeSnapshotClass. Required. + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + parameters: + additionalProperties: + type: string + description: parameters is a key-value map with storage driver specific parameters for creating snapshots. These values are opaque to Kubernetes. + type: object + required: + - deletionPolicy + - driver + type: object + served: false + storage: false + subresources: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.8.0 + api-approved.kubernetes.io: "https://github.com/kubernetes-csi/external-snapshotter/pull/665" + creationTimestamp: null + name: volumesnapshotcontents.snapshot.storage.k8s.io +spec: + group: snapshot.storage.k8s.io + names: + kind: VolumeSnapshotContent + listKind: VolumeSnapshotContentList + plural: volumesnapshotcontents + shortNames: + - vsc + - vscs + singular: volumesnapshotcontent + scope: Cluster + versions: + - additionalPrinterColumns: + - description: Indicates if the snapshot is ready to be used to restore a volume. + jsonPath: .status.readyToUse + name: ReadyToUse + type: boolean + - description: Represents the complete size of the snapshot in bytes + jsonPath: .status.restoreSize + name: RestoreSize + type: integer + - description: Determines whether this VolumeSnapshotContent and its physical + snapshot on the underlying storage system should be deleted when its bound + VolumeSnapshot is deleted. + jsonPath: .spec.deletionPolicy + name: DeletionPolicy + type: string + - description: Name of the CSI driver used to create the physical snapshot on + the underlying storage system. + jsonPath: .spec.driver + name: Driver + type: string + - description: Name of the VolumeSnapshotClass to which this snapshot belongs. + jsonPath: .spec.volumeSnapshotClassName + name: VolumeSnapshotClass + type: string + - description: Name of the VolumeSnapshot object to which this VolumeSnapshotContent + object is bound. + jsonPath: .spec.volumeSnapshotRef.name + name: VolumeSnapshot + type: string + - description: Namespace of the VolumeSnapshot object to which this VolumeSnapshotContent object is bound. + jsonPath: .spec.volumeSnapshotRef.namespace + name: VolumeSnapshotNamespace + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: VolumeSnapshotContent represents the actual "on-disk" snapshot + object in the underlying storage system + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the latest + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the client + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + spec: + description: spec defines properties of a VolumeSnapshotContent created + by the underlying storage system. Required. + properties: + deletionPolicy: + description: deletionPolicy determines whether this VolumeSnapshotContent + and its physical snapshot on the underlying storage system should + be deleted when its bound VolumeSnapshot is deleted. Supported values + are "Retain" and "Delete". "Retain" means that the VolumeSnapshotContent + and its physical snapshot on underlying storage system are kept. + "Delete" means that the VolumeSnapshotContent and its physical snapshot + on underlying storage system are deleted. For dynamically provisioned + snapshots, this field will automatically be filled in by the CSI + snapshotter sidecar with the "DeletionPolicy" field defined in the + corresponding VolumeSnapshotClass. For pre-existing snapshots, users + MUST specify this field when creating the VolumeSnapshotContent + object. Required. + enum: + - Delete + - Retain + type: string + driver: + description: driver is the name of the CSI driver used to create the + physical snapshot on the underlying storage system. This MUST be + the same as the name returned by the CSI GetPluginName() call for + that driver. Required. + type: string + source: + description: source specifies whether the snapshot is (or should be) + dynamically provisioned or already exists, and just requires a Kubernetes + object representation. This field is immutable after creation. Required. + properties: + snapshotHandle: + description: snapshotHandle specifies the CSI "snapshot_id" of + a pre-existing snapshot on the underlying storage system for + which a Kubernetes object representation was (or should be) + created. This field is immutable. + type: string + volumeHandle: + description: volumeHandle specifies the CSI "volume_id" of the + volume from which a snapshot should be dynamically taken from. + This field is immutable. + type: string + type: object + oneOf: + - required: ["snapshotHandle"] + - required: ["volumeHandle"] + sourceVolumeMode: + description: SourceVolumeMode is the mode of the volume whose snapshot + is taken. Can be either “Filesystem” or “Block”. If not specified, + it indicates the source volume's mode is unknown. This field is + immutable. This field is an alpha field. + type: string + volumeSnapshotClassName: + description: name of the VolumeSnapshotClass from which this snapshot + was (or will be) created. Note that after provisioning, the VolumeSnapshotClass + may be deleted or recreated with different set of values, and as + such, should not be referenced post-snapshot creation. + type: string + volumeSnapshotRef: + description: volumeSnapshotRef specifies the VolumeSnapshot object + to which this VolumeSnapshotContent object is bound. VolumeSnapshot.Spec.VolumeSnapshotContentName + field must reference to this VolumeSnapshotContent's name for the + bidirectional binding to be valid. For a pre-existing VolumeSnapshotContent + object, name and namespace of the VolumeSnapshot object MUST be + provided for binding to happen. This field is immutable after creation. + Required. + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: 'If referring to a piece of an object instead of + an entire object, this string should contain a valid JSON/Go + field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container within + a pod, this would take on a value like: "spec.containers{name}" + (where "name" refers to the name of the container that triggered + the event) or if no container name is specified "spec.containers[2]" + (container with index 2 in this pod). This syntax is chosen + only to have some well-defined way of referencing a part of + an object. TODO: this design is not final and this field is + subject to change in the future.' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + type: string + resourceVersion: + description: 'Specific resourceVersion to which this reference + is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + type: string + uid: + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + type: string + type: object + required: + - deletionPolicy + - driver + - source + - volumeSnapshotRef + type: object + status: + description: status represents the current information of a snapshot. + properties: + creationTime: + description: creationTime is the timestamp when the point-in-time + snapshot is taken by the underlying storage system. In dynamic snapshot + creation case, this field will be filled in by the CSI snapshotter + sidecar with the "creation_time" value returned from CSI "CreateSnapshot" + gRPC call. For a pre-existing snapshot, this field will be filled + with the "creation_time" value returned from the CSI "ListSnapshots" + gRPC call if the driver supports it. If not specified, it indicates + the creation time is unknown. The format of this field is a Unix + nanoseconds time encoded as an int64. On Unix, the command `date + +%s%N` returns the current time in nanoseconds since 1970-01-01 + 00:00:00 UTC. + format: int64 + type: integer + error: + description: error is the last observed error during snapshot creation, + if any. Upon success after retry, this error field will be cleared. + properties: + message: + description: 'message is a string detailing the encountered error + during snapshot creation if specified. NOTE: message may be + logged, and it should not contain sensitive information.' + type: string + time: + description: time is the timestamp when the error was encountered. + format: date-time + type: string + type: object + readyToUse: + description: readyToUse indicates if a snapshot is ready to be used + to restore a volume. In dynamic snapshot creation case, this field + will be filled in by the CSI snapshotter sidecar with the "ready_to_use" + value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing + snapshot, this field will be filled with the "ready_to_use" value + returned from the CSI "ListSnapshots" gRPC call if the driver supports + it, otherwise, this field will be set to "True". If not specified, + it means the readiness of a snapshot is unknown. + type: boolean + restoreSize: + description: restoreSize represents the complete size of the snapshot + in bytes. In dynamic snapshot creation case, this field will be + filled in by the CSI snapshotter sidecar with the "size_bytes" value + returned from CSI "CreateSnapshot" gRPC call. For a pre-existing + snapshot, this field will be filled with the "size_bytes" value + returned from the CSI "ListSnapshots" gRPC call if the driver supports + it. When restoring a volume from this snapshot, the size of the + volume MUST NOT be smaller than the restoreSize if it is specified, + otherwise the restoration will fail. If not specified, it indicates + that the size is unknown. + format: int64 + minimum: 0 + type: integer + snapshotHandle: + description: snapshotHandle is the CSI "snapshot_id" of a snapshot + on the underlying storage system. If not specified, it indicates + that dynamic snapshot creation has either failed or it is still + in progress. + type: string + type: object + required: + - spec + type: object + served: true + storage: true + subresources: + status: {} + - additionalPrinterColumns: + - description: Indicates if the snapshot is ready to be used to restore a volume. + jsonPath: .status.readyToUse + name: ReadyToUse + type: boolean + - description: Represents the complete size of the snapshot in bytes + jsonPath: .status.restoreSize + name: RestoreSize + type: integer + - description: Determines whether this VolumeSnapshotContent and its physical snapshot on the underlying storage system should be deleted when its bound VolumeSnapshot is deleted. + jsonPath: .spec.deletionPolicy + name: DeletionPolicy + type: string + - description: Name of the CSI driver used to create the physical snapshot on the underlying storage system. + jsonPath: .spec.driver + name: Driver + type: string + - description: Name of the VolumeSnapshotClass to which this snapshot belongs. + jsonPath: .spec.volumeSnapshotClassName + name: VolumeSnapshotClass + type: string + - description: Name of the VolumeSnapshot object to which this VolumeSnapshotContent object is bound. + jsonPath: .spec.volumeSnapshotRef.name + name: VolumeSnapshot + type: string + - description: Namespace of the VolumeSnapshot object to which this VolumeSnapshotContent object is bound. + jsonPath: .spec.volumeSnapshotRef.namespace + name: VolumeSnapshotNamespace + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1beta1 + # This indicates the v1beta1 version of the custom resource is deprecated. + # API requests to this version receive a warning in the server response. + deprecated: true + # This overrides the default warning returned to clients making v1beta1 API requests. + deprecationWarning: "snapshot.storage.k8s.io/v1beta1 VolumeSnapshotContent is deprecated; use snapshot.storage.k8s.io/v1 VolumeSnapshotContent" + schema: + openAPIV3Schema: + description: VolumeSnapshotContent represents the actual "on-disk" snapshot object in the underlying storage system + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + spec: + description: spec defines properties of a VolumeSnapshotContent created by the underlying storage system. Required. + properties: + deletionPolicy: + description: deletionPolicy determines whether this VolumeSnapshotContent and its physical snapshot on the underlying storage system should be deleted when its bound VolumeSnapshot is deleted. Supported values are "Retain" and "Delete". "Retain" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are kept. "Delete" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are deleted. For dynamically provisioned snapshots, this field will automatically be filled in by the CSI snapshotter sidecar with the "DeletionPolicy" field defined in the corresponding VolumeSnapshotClass. For pre-existing snapshots, users MUST specify this field when creating the VolumeSnapshotContent object. Required. + enum: + - Delete + - Retain + type: string + driver: + description: driver is the name of the CSI driver used to create the physical snapshot on the underlying storage system. This MUST be the same as the name returned by the CSI GetPluginName() call for that driver. Required. + type: string + source: + description: source specifies whether the snapshot is (or should be) dynamically provisioned or already exists, and just requires a Kubernetes object representation. This field is immutable after creation. Required. + properties: + snapshotHandle: + description: snapshotHandle specifies the CSI "snapshot_id" of a pre-existing snapshot on the underlying storage system for which a Kubernetes object representation was (or should be) created. This field is immutable. + type: string + volumeHandle: + description: volumeHandle specifies the CSI "volume_id" of the volume from which a snapshot should be dynamically taken from. This field is immutable. + type: string + type: object + volumeSnapshotClassName: + description: name of the VolumeSnapshotClass from which this snapshot was (or will be) created. Note that after provisioning, the VolumeSnapshotClass may be deleted or recreated with different set of values, and as such, should not be referenced post-snapshot creation. + type: string + volumeSnapshotRef: + description: volumeSnapshotRef specifies the VolumeSnapshot object to which this VolumeSnapshotContent object is bound. VolumeSnapshot.Spec.VolumeSnapshotContentName field must reference to this VolumeSnapshotContent's name for the bidirectional binding to be valid. For a pre-existing VolumeSnapshotContent object, name and namespace of the VolumeSnapshot object MUST be provided for binding to happen. This field is immutable after creation. Required. + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. TODO: this design is not final and this field is subject to change in the future.' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + type: string + resourceVersion: + description: 'Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + type: string + uid: + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + type: string + type: object + required: + - deletionPolicy + - driver + - source + - volumeSnapshotRef + type: object + status: + description: status represents the current information of a snapshot. + properties: + creationTime: + description: creationTime is the timestamp when the point-in-time snapshot is taken by the underlying storage system. In dynamic snapshot creation case, this field will be filled in by the CSI snapshotter sidecar with the "creation_time" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "creation_time" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it. If not specified, it indicates the creation time is unknown. The format of this field is a Unix nanoseconds time encoded as an int64. On Unix, the command `date +%s%N` returns the current time in nanoseconds since 1970-01-01 00:00:00 UTC. + format: int64 + type: integer + error: + description: error is the last observed error during snapshot creation, if any. Upon success after retry, this error field will be cleared. + properties: + message: + description: 'message is a string detailing the encountered error during snapshot creation if specified. NOTE: message may be logged, and it should not contain sensitive information.' + type: string + time: + description: time is the timestamp when the error was encountered. + format: date-time + type: string + type: object + readyToUse: + description: readyToUse indicates if a snapshot is ready to be used to restore a volume. In dynamic snapshot creation case, this field will be filled in by the CSI snapshotter sidecar with the "ready_to_use" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "ready_to_use" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it, otherwise, this field will be set to "True". If not specified, it means the readiness of a snapshot is unknown. + type: boolean + restoreSize: + description: restoreSize represents the complete size of the snapshot in bytes. In dynamic snapshot creation case, this field will be filled in by the CSI snapshotter sidecar with the "size_bytes" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "size_bytes" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it. When restoring a volume from this snapshot, the size of the volume MUST NOT be smaller than the restoreSize if it is specified, otherwise the restoration will fail. If not specified, it indicates that the size is unknown. + format: int64 + minimum: 0 + type: integer + snapshotHandle: + description: snapshotHandle is the CSI "snapshot_id" of a snapshot on the underlying storage system. If not specified, it indicates that dynamic snapshot creation has either failed or it is still in progress. + type: string + type: object + required: + - spec + type: object + served: false + storage: false + subresources: + status: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] +{{- end -}} diff --git a/charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-controller.yaml b/charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-controller.yaml new file mode 100644 index 0000000000..a69383bf11 --- /dev/null +++ b/charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-controller.yaml @@ -0,0 +1,252 @@ +kind: Deployment +apiVersion: apps/v1 +metadata: + name: {{ .Values.controller.name }} + namespace: {{ .Release.Namespace }} + labels: + app: {{ .Values.controller.name }} + {{- include "azurefile.labels" . | nindent 4 }} +{{- with .Values.controller.labels }} +{{ . | toYaml | indent 4 }} +{{- end }} +{{- with .Values.controller.annotations }} + annotations: +{{ . | toYaml | indent 4 }} +{{- end }} +spec: + replicas: {{ .Values.controller.replicas }} + selector: + matchLabels: + {{- include "azurefile.selectorLabels" . | nindent 6 }} + app: {{ .Values.controller.name }} + template: + metadata: + labels: + {{- include "azurefile.labels" . | nindent 8 }} + 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: + 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 +{{- with .Values.controller.tolerations }} + tolerations: +{{ toYaml . | indent 8 }} +{{- end }} +{{- with .Values.controller.affinity }} + affinity: +{{ toYaml . | indent 8 }} +{{- end }} + {{- if .Values.imagePullSecrets }} + imagePullSecrets: +{{ toYaml .Values.imagePullSecrets | indent 8 }} + {{- end }} + 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: + - "-v=2" + - "--csi-address=$(ADDRESS)" + - "--leader-election" + - "--leader-election-namespace={{ .Release.Namespace }}" + - "--timeout=1200s" + - "--extra-create-metadata=true" + - "--kube-api-qps=50" + - "--kube-api-burst=100" + - "--feature-gates=HonorPVReclaimPolicy=true" + env: + - name: ADDRESS + value: /csi/csi.sock + imagePullPolicy: {{ .Values.image.csiProvisioner.pullPolicy }} + volumeMounts: + - mountPath: /csi + name: socket-dir + resources: {{- toYaml .Values.controller.resources.csiProvisioner | nindent 12 }} + - 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" + 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' + - '-timeout=120s' + - '-feature-gates=RecoverVolumeExpansionFailure=true' + env: + - name: ADDRESS + value: /csi/csi.sock + imagePullPolicy: {{ .Values.image.csiResizer.pullPolicy }} + 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 + imagePullPolicy: {{ .Values.image.livenessProbe.pullPolicy }} + volumeMounts: + - name: socket-dir + mountPath: /csi + resources: {{- toYaml .Values.controller.resources.livenessProbe | nindent 12 }} + securityContext: + capabilities: + drop: + - ALL + - name: azurefile +{{- if hasPrefix "/" .Values.image.azurefile.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.azurefile.repository }}:{{ .Values.image.azurefile.tag }}" +{{- else }} + image: "{{ .Values.image.azurefile.repository }}:{{ .Values.image.azurefile.tag }}" +{{- end }} + args: + - "--v={{ .Values.controller.logLevel }}" + - "--endpoint=$(CSI_ENDPOINT)" + - "--metrics-address=0.0.0.0:{{ .Values.controller.metricsPort }}" + - "--kubeconfig={{ .Values.controller.kubeconfig }}" + - "--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 }}" + 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 }} + - name: AZURE_GO_SDK_LOG_LEVEL + value: {{ .Values.driver.azureGoSDKLogLevel }} + imagePullPolicy: {{ .Values.image.azurefile.pullPolicy }} + volumeMounts: + - mountPath: /csi + name: socket-dir + - mountPath: /etc/kubernetes/ + name: azure-cred + {{- 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.azurefile | nindent 12 }} + securityContext: + capabilities: + drop: + - ALL + volumes: + - name: socket-dir + emptyDir: {} + - name: azure-cred + hostPath: + path: /etc/kubernetes/ + type: DirectoryOrCreate + {{- if eq .Values.linux.distro "fedora" }} + - name: ssl + hostPath: + path: /etc/ssl/certs + - name: ssl-pki + hostPath: + path: /etc/pki/ca-trust/extracted + {{- end }} diff --git a/charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-driver.yaml b/charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-driver.yaml new file mode 100644 index 0000000000..77df01e32d --- /dev/null +++ b/charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-driver.yaml @@ -0,0 +1,19 @@ +--- +apiVersion: storage.k8s.io/v1 +kind: CSIDriver +metadata: + name: {{ .Values.driver.name }} + labels: + {{- include "azurefile.labels" . | nindent 4 }} + annotations: + csiDriver: "{{ .Values.image.azurefile.tag }}" + snapshot: "{{ .Values.snapshot.image.csiSnapshotter.tag }}" +spec: + attachRequired: {{ .Values.controller.attachRequired }} + podInfoOnMount: true + volumeLifecycleModes: + - Persistent + - Ephemeral + fsGroupPolicy: {{ .Values.feature.fsGroupPolicy }} + tokenRequests: + - audience: api://AzureADTokenExchange diff --git a/charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-node-windows-hostprocess.yaml b/charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-node-windows-hostprocess.yaml new file mode 100644 index 0000000000..4d9bb739da --- /dev/null +++ b/charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-node-windows-hostprocess.yaml @@ -0,0 +1,164 @@ +{{- if and .Values.windows.enabled .Values.windows.useHostProcessContainers }} +kind: DaemonSet +apiVersion: apps/v1 +metadata: + name: {{ .Values.windows.dsName }} + namespace: {{ .Release.Namespace }} + labels: + app: {{ .Values.windows.dsName }} + {{- include "azurefile.labels" . | nindent 4 }} +{{- 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 }} + {{- include "azurefile.selectorLabels" . | nindent 6 }} + template: + metadata: + labels: + app: {{ .Values.windows.dsName }} + {{- include "azurefile.labels" . | nindent 8 }} +{{- 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 + {{- if .Values.imagePullSecrets }} + imagePullSecrets: +{{ toYaml .Values.imagePullSecrets | indent 8 }} + {{- end }} + securityContext: + seccompProfile: + type: RuntimeDefault + windowsOptions: + hostProcess: true + runAsUserName: "NT AUTHORITY\\SYSTEM" + hostNetwork: true + initContainers: + - name: init +{{- if hasPrefix "/" .Values.image.azurefile.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.azurefile.repository }}:{{ .Values.image.azurefile.tag }}-windows-hp" +{{- else }} + image: "{{ .Values.image.azurefile.repository }}:{{ .Values.image.azurefile.tag }}-windows-hp" +{{- end }} + imagePullPolicy: {{ .Values.image.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: azurefile +{{- if hasPrefix "/" .Values.image.azurefile.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.azurefile.repository }}:{{ .Values.image.azurefile.tag }}-windows-hp" +{{- else }} + image: "{{ .Values.image.azurefile.repository }}:{{ .Values.image.azurefile.tag }}-windows-hp" +{{- end }} + command: + - "azurefileplugin.exe" + args: + - "--v={{ .Values.node.logLevel }}" + - "--endpoint=$(CSI_ENDPOINT)" + - "--nodeid=$(KUBE_NODE_NAME)" + - "--kubeconfig={{ .Values.windows.kubeconfig }}" + - "--drivername={{ .Values.driver.name }}" + - "--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 }}" + - "--enable-get-volume-stats={{ .Values.feature.enableGetVolumeStats }}" + - "--enable-windows-host-process=true" + - "--metrics-address=0.0.0.0:{{ .Values.node.metricsPort }}" + env: + - name: AZURE_CREDENTIAL_FILE + valueFrom: + configMapKeyRef: + name: {{ .Values.azureCredentialFileConfigMap }} + key: path-windows + optional: true + - name: CSI_ENDPOINT + value: unix://{{ .Values.windows.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 }} + - name: KUBE_NODE_NAME + valueFrom: + fieldRef: + apiVersion: v1 + fieldPath: spec.nodeName + imagePullPolicy: {{ .Values.image.pullPolicy }} + resources: {{- toYaml .Values.windows.resources.azurefile | nindent 12 }} + securityContext: + capabilities: + drop: + - ALL +{{- end -}} diff --git a/charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-node-windows.yaml b/charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-node-windows.yaml new file mode 100644 index 0000000000..8e0a5c5499 --- /dev/null +++ b/charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-node-windows.yaml @@ -0,0 +1,239 @@ +{{- if and .Values.windows.enabled (not .Values.windows.useHostProcessContainers) }} +kind: DaemonSet +apiVersion: apps/v1 +metadata: + name: {{ .Values.windows.dsName }} + namespace: {{ .Release.Namespace }} + labels: + app: {{ .Values.windows.dsName }} + {{- include "azurefile.labels" . | nindent 4 }} +{{- 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 }} + {{- include "azurefile.selectorLabels" . | nindent 6 }} + template: + metadata: + labels: + app: {{ .Values.windows.dsName }} + {{- include "azurefile.labels" . | nindent 8 }} +{{- 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 + {{- if .Values.imagePullSecrets }} + imagePullSecrets: +{{ toYaml .Values.imagePullSecrets | indent 8 }} + {{- end }} + 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: + - "--csi-address=$(CSI_ENDPOINT)" + - "--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)" + - "--v=2" +{{- 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: azurefile +{{- if hasPrefix "/" .Values.image.azurefile.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.azurefile.repository }}:{{ .Values.image.azurefile.tag }}" +{{- else }} + image: "{{ .Values.image.azurefile.repository }}:{{ .Values.image.azurefile.tag }}" +{{- end }} + args: + - "--v={{ .Values.node.logLevel }}" + - "--endpoint=$(CSI_ENDPOINT)" + - "--nodeid=$(KUBE_NODE_NAME)" + - "--kubeconfig={{ .Values.windows.kubeconfig }}" + - "--drivername={{ .Values.driver.name }}" + - "--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 }}" + - "--enable-get-volume-stats={{ .Values.feature.enableGetVolumeStats }}" + - "--allow-inline-volume-key-access-with-identity={{ .Values.node.allowInlineVolumeKeyAccessWithIdentity }}" + - "--metrics-address=0.0.0.0:{{ .Values.node.metricsPort }}" + 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 }} + - name: KUBE_NODE_NAME + valueFrom: + fieldRef: + apiVersion: v1 + fieldPath: spec.nodeName + - name: AZURE_GO_SDK_LOG_LEVEL + value: {{ .Values.driver.azureGoSDKLogLevel }} + imagePullPolicy: {{ .Values.image.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-smb-pipe-v1 + mountPath: \\.\pipe\csi-proxy-smb-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-smb-pipe-v1beta1 + mountPath: \\.\pipe\csi-proxy-smb-v1beta1 + resources: {{- toYaml .Values.windows.resources.azurefile | nindent 12 }} + securityContext: + capabilities: + drop: + - ALL + volumes: + - name: csi-proxy-fs-pipe-v1 + hostPath: + path: \\.\pipe\csi-proxy-filesystem-v1 + - name: csi-proxy-smb-pipe-v1 + hostPath: + path: \\.\pipe\csi-proxy-smb-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-smb-pipe-v1beta1 + hostPath: + path: \\.\pipe\csi-proxy-smb-v1beta1 + - 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: Directory +{{- end -}} diff --git a/charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-node.yaml b/charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-node.yaml new file mode 100644 index 0000000000..cc293e7c9c --- /dev/null +++ b/charts/v1.29.9/azurefile-csi-driver/templates/csi-azurefile-node.yaml @@ -0,0 +1,234 @@ +{{- if .Values.linux.enabled}} +kind: DaemonSet +apiVersion: apps/v1 +metadata: + name: {{ .Values.linux.dsName }} + namespace: {{ .Release.Namespace }} + labels: + app: {{ .Values.linux.dsName }} + {{- include "azurefile.labels" . | nindent 4 }} +{{- 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 }} + {{- include "azurefile.selectorLabels" . | nindent 6 }} + template: + metadata: + labels: + app: {{ .Values.linux.dsName }} + {{- include "azurefile.labels" . | nindent 8 }} + {{- 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: + hostNetwork: true + dnsPolicy: {{ .Values.linux.dnsPolicy }} + 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 }} + {{- if .Values.imagePullSecrets }} + imagePullSecrets: +{{ toYaml .Values.imagePullSecrets | indent 8 }} + {{- end }} + 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 + imagePullPolicy: {{ .Values.image.livenessProbe.pullPolicy }} + 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 + imagePullPolicy: {{ .Values.image.nodeDriverRegistrar.pullPolicy }} + volumeMounts: + - name: socket-dir + mountPath: /csi + - name: registration-dir + mountPath: /registration + resources: {{- toYaml .Values.linux.resources.nodeDriverRegistrar | nindent 12 }} + securityContext: + capabilities: + drop: + - ALL + - name: azurefile +{{- if hasPrefix "/" .Values.image.azurefile.repository }} + image: "{{ .Values.image.baseRepo }}{{ .Values.image.azurefile.repository }}:{{ .Values.image.azurefile.tag }}" +{{- else }} + image: "{{ .Values.image.azurefile.repository }}:{{ .Values.image.azurefile.tag }}" +{{- end }} + args: + - "--v={{ .Values.node.logLevel }}" + - "--endpoint=$(CSI_ENDPOINT)" + - "--nodeid=$(KUBE_NODE_NAME)" + - "--kubeconfig={{ .Values.linux.kubeconfig }}" + - "--drivername={{ .Values.driver.name }}" + - "--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 }}" + - "--enable-volume-mount-group={{ .Values.feature.enableVolumeMountGroup }}" + - "--enable-get-volume-stats={{ .Values.feature.enableGetVolumeStats }}" + - "--mount-permissions={{ .Values.linux.mountPermissions }}" + - "--allow-inline-volume-key-access-with-identity={{ .Values.node.allowInlineVolumeKeyAccessWithIdentity }}" + - "--metrics-address=0.0.0.0:{{ .Values.node.metricsPort }}" + livenessProbe: + failureThreshold: 5 + httpGet: + host: localhost + path: /healthz + port: {{ .Values.controller.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 }} + - name: KUBE_NODE_NAME + valueFrom: + fieldRef: + apiVersion: v1 + fieldPath: spec.nodeName + - name: AZURE_GO_SDK_LOG_LEVEL + value: {{ .Values.driver.azureGoSDKLogLevel }} + imagePullPolicy: {{ .Values.image.azurefile.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 + {{- 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.azurefile | 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 + {{- if eq .Values.linux.distro "fedora" }} + - name: ssl + hostPath: + path: /etc/ssl/certs + - name: ssl-pki + hostPath: + path: /etc/pki/ca-trust/extracted + {{- end }} +{{- end -}} diff --git a/charts/v1.29.9/azurefile-csi-driver/templates/csi-snapshot-controller.yaml b/charts/v1.29.9/azurefile-csi-driver/templates/csi-snapshot-controller.yaml new file mode 100644 index 0000000000..d9e8e6f248 --- /dev/null +++ b/charts/v1.29.9/azurefile-csi-driver/templates/csi-snapshot-controller.yaml @@ -0,0 +1,78 @@ +{{- if .Values.snapshot.enabled -}} +kind: Deployment +apiVersion: apps/v1 +metadata: + name: {{ .Values.snapshot.snapshotController.name}} + namespace: {{ .Release.Namespace }} + labels: + app: {{ .Values.snapshot.snapshotController.name}} + {{- include "azurefile.labels" . | nindent 4 }} +{{- 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}} + {{- include "azurefile.selectorLabels" . | nindent 6 }} + # 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: {{ .Values.snapshot.snapshotController.name}} + {{- include "azurefile.labels" . | nindent 8 }} +{{- 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 +{{- with .Values.controller.tolerations }} + tolerations: +{{ toYaml . | indent 8 }} +{{- end }} +{{- with .Values.controller.affinity }} + affinity: +{{ toYaml . | indent 8 }} +{{- end }} + {{- if .Values.imagePullSecrets }} + imagePullSecrets: +{{ toYaml .Values.imagePullSecrets | indent 8 }} + {{- end }} + 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 +{{- end -}} diff --git a/charts/v1.29.9/azurefile-csi-driver/templates/rbac-csi-azurefile-controller.yaml b/charts/v1.29.9/azurefile-csi-driver/templates/rbac-csi-azurefile-controller.yaml new file mode 100644 index 0000000000..e0a2e14d95 --- /dev/null +++ b/charts/v1.29.9/azurefile-csi-driver/templates/rbac-csi-azurefile-controller.yaml @@ -0,0 +1,207 @@ +{{- if .Values.rbac.create -}} +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: {{ .Values.rbac.name }}-external-provisioner-role + labels: + {{- include "azurefile.labels" . | nindent 4 }} +rules: + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch", "create", "patch", "delete"] + - apiGroups: [""] + resources: ["persistentvolumeclaims"] + verbs: ["get", "list", "watch", "update"] + - apiGroups: ["storage.k8s.io"] + resources: ["storageclasses"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["events"] + verbs: ["get", "list", "watch", "create", "update", "patch"] + - apiGroups: ["storage.k8s.io"] + resources: ["csinodes"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["nodes"] + verbs: ["get", "list", "watch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshots"] + verbs: ["get", "list"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents"] + verbs: ["get", "list"] + - apiGroups: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "watch", "list", "delete", "update", "create", "patch"] +--- + +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: {{ .Values.rbac.name }}-csi-provisioner-binding + labels: + {{- include "azurefile.labels" . | nindent 4 }} +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 + labels: + {{- include "azurefile.labels" . | nindent 4 }} +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 + labels: + {{- include "azurefile.labels" . | nindent 4 }} +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 + labels: + {{- include "azurefile.labels" . | nindent 4 }} +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: {{ .Values.rbac.name }}-csi-snapshotter-binding + labels: + {{- include "azurefile.labels" . | nindent 4 }} +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 + labels: + {{- include "azurefile.labels" . | nindent 4 }} +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"] +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: {{ .Values.rbac.name }}-csi-resizer-role + labels: + {{- include "azurefile.labels" . | nindent 4 }} +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 + labels: + {{- include "azurefile.labels" . | nindent 4 }} +rules: + - apiGroups: [""] + resources: ["secrets"] + verbs: ["get", "create"] + +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-{{ .Values.rbac.name }}-controller-secret-binding + labels: + {{- include "azurefile.labels" . | nindent 4 }} +subjects: + - kind: ServiceAccount + name: {{ .Values.serviceAccount.controller }} + namespace: {{ .Release.Namespace }} +roleRef: + kind: ClusterRole + name: csi-{{ .Values.rbac.name }}-controller-secret-role + apiGroup: rbac.authorization.k8s.io +{{ end }} diff --git a/charts/v1.29.9/azurefile-csi-driver/templates/rbac-csi-azurefile-node.yaml b/charts/v1.29.9/azurefile-csi-driver/templates/rbac-csi-azurefile-node.yaml new file mode 100644 index 0000000000..4e1fbcde94 --- /dev/null +++ b/charts/v1.29.9/azurefile-csi-driver/templates/rbac-csi-azurefile-node.yaml @@ -0,0 +1,29 @@ +{{- if .Values.rbac.create -}} +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-{{ .Values.rbac.name }}-node-secret-role + labels: + {{- include "azurefile.labels" . | nindent 4 }} +rules: + - apiGroups: [""] + resources: ["secrets"] + verbs: ["get"] + +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-{{ .Values.rbac.name }}-node-secret-binding + labels: + {{- include "azurefile.labels" . | nindent 4 }} +subjects: + - kind: ServiceAccount + name: {{ .Values.serviceAccount.node }} + namespace: {{ .Release.Namespace }} +roleRef: + kind: ClusterRole + name: csi-{{ .Values.rbac.name }}-node-secret-role + apiGroup: rbac.authorization.k8s.io +{{ end }} diff --git a/charts/v1.29.9/azurefile-csi-driver/templates/rbac-csi-snapshot-controller.yaml b/charts/v1.29.9/azurefile-csi-driver/templates/rbac-csi-snapshot-controller.yaml new file mode 100644 index 0000000000..0cff1ff01f --- /dev/null +++ b/charts/v1.29.9/azurefile-csi-driver/templates/rbac-csi-snapshot-controller.yaml @@ -0,0 +1,80 @@ +{{- if and .Values.snapshot.enabled .Values.rbac.create -}} +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-snapshot-controller-role + labels: + {{- include "azurefile.labels" . | nindent 4 }} +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 + labels: + {{- include "azurefile.labels" . | nindent 4 }} +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 + labels: + {{- include "azurefile.labels" . | nindent 4 }} +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 + labels: + {{- include "azurefile.labels" . | nindent 4 }} +subjects: + - kind: ServiceAccount + name: {{ .Values.serviceAccount.snapshotController }} + namespace: {{ .Release.Namespace }} +roleRef: + kind: ClusterRole + name: csi-snapshot-controller-leaderelection-role + apiGroup: rbac.authorization.k8s.io +{{ end }} diff --git a/charts/v1.29.9/azurefile-csi-driver/templates/serviceaccount-csi-azurefile-controller.yaml b/charts/v1.29.9/azurefile-csi-driver/templates/serviceaccount-csi-azurefile-controller.yaml new file mode 100644 index 0000000000..71442b70dc --- /dev/null +++ b/charts/v1.29.9/azurefile-csi-driver/templates/serviceaccount-csi-azurefile-controller.yaml @@ -0,0 +1,17 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ .Values.serviceAccount.controller }} + namespace: {{ .Release.Namespace }} + labels: + {{- include "azurefile.labels" . | nindent 4 }} +{{- if .Values.workloadIdentity.clientID }} + azure.workload.identity/use: "true" + annotations: + azure.workload.identity/client-id: {{ .Values.workloadIdentity.clientID }} +{{- if .Values.workloadIdentity.tenantID }} + azure.workload.identity/tenant-id: {{ .Values.workloadIdentity.tenantID }} +{{- end }} +{{- end }} +{{- end -}} diff --git a/charts/v1.29.9/azurefile-csi-driver/templates/serviceaccount-csi-azurefile-node.yaml b/charts/v1.29.9/azurefile-csi-driver/templates/serviceaccount-csi-azurefile-node.yaml new file mode 100644 index 0000000000..ab2074429d --- /dev/null +++ b/charts/v1.29.9/azurefile-csi-driver/templates/serviceaccount-csi-azurefile-node.yaml @@ -0,0 +1,17 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ .Values.serviceAccount.node }} + namespace: {{ .Release.Namespace }} + labels: + {{- include "azurefile.labels" . | nindent 4 }} +{{- if .Values.workloadIdentity.clientID }} + azure.workload.identity/use: "true" + annotations: + azure.workload.identity/client-id: {{ .Values.workloadIdentity.clientID }} +{{- if .Values.workloadIdentity.tenantID }} + azure.workload.identity/tenant-id: {{ .Values.workloadIdentity.tenantID }} +{{- end }} +{{- end }} +{{- end -}} diff --git a/charts/v1.29.9/azurefile-csi-driver/templates/serviceaccount-csi-snapshot-controller.yaml b/charts/v1.29.9/azurefile-csi-driver/templates/serviceaccount-csi-snapshot-controller.yaml new file mode 100644 index 0000000000..e77ef8f991 --- /dev/null +++ b/charts/v1.29.9/azurefile-csi-driver/templates/serviceaccount-csi-snapshot-controller.yaml @@ -0,0 +1,9 @@ +{{- if and .Values.snapshot.enabled .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ .Values.serviceAccount.snapshotController }} + namespace: {{ .Release.Namespace }} + labels: + {{- include "azurefile.labels" . | nindent 4 }} +{{- end -}} diff --git a/charts/v1.29.9/azurefile-csi-driver/values.yaml b/charts/v1.29.9/azurefile-csi-driver/values.yaml new file mode 100644 index 0000000000..83259b3a1d --- /dev/null +++ b/charts/v1.29.9/azurefile-csi-driver/values.yaml @@ -0,0 +1,263 @@ +image: + baseRepo: mcr.microsoft.com + azurefile: + repository: /oss/kubernetes-csi/azurefile-csi + tag: v1.29.9 + pullPolicy: IfNotPresent + csiProvisioner: + repository: /oss/kubernetes-csi/csi-provisioner + tag: v3.5.0 + pullPolicy: IfNotPresent + csiResizer: + repository: /oss/kubernetes-csi/csi-resizer + tag: v1.8.0 + pullPolicy: IfNotPresent + livenessProbe: + repository: /oss/kubernetes-csi/livenessprobe + tag: v2.10.0 + pullPolicy: IfNotPresent + nodeDriverRegistrar: + repository: /oss/kubernetes-csi/csi-node-driver-registrar + tag: v2.8.0 + pullPolicy: IfNotPresent + +## 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: myRegistryKeySecretName + +# -- Custom labels to add into metadata +customLabels: {} + # k8s-app: azurefile-csi-driver + +serviceAccount: + create: true # When true, service accounts will be created for you. Set to false if you want to use your own. + controller: csi-azurefile-controller-sa # Name of Service Account to be created or used + node: csi-azurefile-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: azurefile + +controller: + name: csi-azurefile-controller + cloudConfigSecretName: azure-cloud-provider + cloudConfigSecretNamespace: kube-system + allowEmptyCloudConfig: true + replicas: 2 + hostNetwork: true # this setting could be disabled if controller does not depend on MSI setting + metricsPort: 29614 + livenessProbe: + healthPort: 29612 + runOnMaster: false + runOnControlPlane: false + attachRequired: false + logLevel: 5 + labels: {} + annotations: {} + podLabels: {} + podAnnotations: {} + resources: + csiProvisioner: + limits: + cpu: 1 + memory: 500Mi + requests: + cpu: 10m + memory: 20Mi + csiAttacher: + limits: + cpu: 1 + memory: 500Mi + requests: + cpu: 10m + memory: 20Mi + csiResizer: + limits: + cpu: 1 + memory: 500Mi + requests: + cpu: 10m + memory: 20Mi + csiSnapshotter: + limits: + cpu: 1 + memory: 200Mi + requests: + cpu: 10m + memory: 20Mi + livenessProbe: + limits: + cpu: 1 + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi + azurefile: + limits: + cpu: 1 + memory: 200Mi + requests: + cpu: 10m + memory: 20Mi + kubeconfig: "" + affinity: {} + nodeSelector: {} + 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" + +node: + cloudConfigSecretName: azure-cloud-provider + cloudConfigSecretNamespace: kube-system + allowEmptyCloudConfig: true + allowInlineVolumeKeyAccessWithIdentity: false + metricsPort: 29615 + livenessProbe: + healthPort: 29613 + logLevel: 5 + +snapshot: + enabled: false + image: + csiSnapshotter: + repository: /oss/kubernetes-csi/csi-snapshotter + tag: v6.3.1 + pullPolicy: IfNotPresent + csiSnapshotController: + repository: /oss/kubernetes-csi/snapshot-controller + tag: v6.3.1 + pullPolicy: IfNotPresent + snapshotController: + name: csi-snapshot-controller + replicas: 2 + labels: {} + annotations: {} + podLabels: {} + podAnnotations: {} + resources: + limits: + cpu: 1 + memory: 300Mi + requests: + cpu: 10m + memory: 20Mi + +feature: + enableGetVolumeStats: true + enableVolumeMountGroup: true + fsGroupPolicy: ReadWriteOnceWithFSType + +driver: + name: file.csi.azure.com + customUserAgent: "" + userAgentSuffix: "OSS-helm" + azureGoSDKLogLevel: "" # available values: ""(no logs), DEBUG, INFO, WARNING, ERROR + httpsProxy: "" + httpProxy: "" + +linux: + enabled: true + dsName: csi-azurefile-node # daemonset name + dnsPolicy: Default # available values: Default, ClusterFirst, ClusterFirstWithHostNet, None + kubelet: /var/lib/kubelet + kubeconfig: "" + distro: debian # available values: debian, fedora + mountPermissions: 0777 + enableRegistrationProbe: true + labels: {} + annotations: {} + podLabels: {} + podAnnotations: {} + resources: + livenessProbe: + limits: + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi + nodeDriverRegistrar: + limits: + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi + azurefile: + limits: + memory: 400Mi + requests: + cpu: 10m + memory: 20Mi + tolerations: + - operator: "Exists" + nodeSelector: {} + affinity: {} + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: type + operator: NotIn + values: + - virtual-kubelet + +windows: + enabled: true + useHostProcessContainers: false + dsName: csi-azurefile-node-win # daemonset name + kubelet: 'C:\var\lib\kubelet' + kubeconfig: "" + enableRegistrationProbe: true + labels: {} + annotations: {} + podLabels: {} + podAnnotations: {} + resources: + livenessProbe: + limits: + memory: 150Mi + requests: + cpu: 10m + memory: 40Mi + nodeDriverRegistrar: + limits: + memory: 150Mi + requests: + cpu: 30m + memory: 40Mi + azurefile: + limits: + memory: 200Mi + requests: + cpu: 10m + memory: 40Mi + tolerations: + - key: "node.kubernetes.io/os" + operator: "Exists" + effect: "NoSchedule" + nodeSelector: {} + affinity: {} + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: type + operator: NotIn + values: + - virtual-kubelet + +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-azurefile-controller.yaml b/deploy/csi-azurefile-controller.yaml index b6771d51b5..8f5e5a2384 100644 --- a/deploy/csi-azurefile-controller.yaml +++ b/deploy/csi-azurefile-controller.yaml @@ -128,7 +128,7 @@ spec: drop: - ALL - name: azurefile - image: mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.29.8 + image: mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.29.9 imagePullPolicy: IfNotPresent args: - "--v=5" diff --git a/deploy/csi-azurefile-node-windows-hostprocess.yaml b/deploy/csi-azurefile-node-windows-hostprocess.yaml index 2abd85ab94..458b207bc7 100644 --- a/deploy/csi-azurefile-node-windows-hostprocess.yaml +++ b/deploy/csi-azurefile-node-windows-hostprocess.yaml @@ -43,7 +43,7 @@ spec: hostNetwork: true initContainers: - name: init - image: mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.29.8-windows-hp + image: mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.29.9-windows-hp imagePullPolicy: IfNotPresent command: - "powershell.exe" @@ -86,7 +86,7 @@ spec: drop: - ALL - name: azurefile - image: mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.29.8-windows-hp + image: mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.29.9-windows-hp imagePullPolicy: IfNotPresent command: - "azurefileplugin.exe" diff --git a/deploy/csi-azurefile-node-windows.yaml b/deploy/csi-azurefile-node-windows.yaml index 46ab833573..f9c4ec8be3 100644 --- a/deploy/csi-azurefile-node-windows.yaml +++ b/deploy/csi-azurefile-node-windows.yaml @@ -102,7 +102,7 @@ spec: drop: - ALL - name: azurefile - image: mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.29.8 + image: mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.29.9 imagePullPolicy: IfNotPresent args: - --v=5 diff --git a/deploy/csi-azurefile-node.yaml b/deploy/csi-azurefile-node.yaml index d8a3e4d806..1ff8b8c560 100644 --- a/deploy/csi-azurefile-node.yaml +++ b/deploy/csi-azurefile-node.yaml @@ -93,7 +93,7 @@ spec: drop: - ALL - name: azurefile - image: mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.29.8 + image: mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.29.9 imagePullPolicy: IfNotPresent args: - "--v=5" diff --git a/deploy/v1.29.9/crd-csi-snapshot.yaml b/deploy/v1.29.9/crd-csi-snapshot.yaml new file mode 100644 index 0000000000..d4b90b266d --- /dev/null +++ b/deploy/v1.29.9/crd-csi-snapshot.yaml @@ -0,0 +1,838 @@ +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.8.0 + api-approved.kubernetes.io: "https://github.com/kubernetes-csi/external-snapshotter/pull/665" + creationTimestamp: null + name: volumesnapshots.snapshot.storage.k8s.io +spec: + group: snapshot.storage.k8s.io + names: + kind: VolumeSnapshot + listKind: VolumeSnapshotList + plural: volumesnapshots + shortNames: + - vs + singular: volumesnapshot + scope: Namespaced + versions: + - additionalPrinterColumns: + - description: Indicates if the snapshot is ready to be used to restore a volume. + jsonPath: .status.readyToUse + name: ReadyToUse + type: boolean + - description: If a new snapshot needs to be created, this contains the name of + the source PVC from which this snapshot was (or will be) created. + jsonPath: .spec.source.persistentVolumeClaimName + name: SourcePVC + type: string + - description: If a snapshot already exists, this contains the name of the existing + VolumeSnapshotContent object representing the existing snapshot. + jsonPath: .spec.source.volumeSnapshotContentName + name: SourceSnapshotContent + type: string + - description: Represents the minimum size of volume required to rehydrate from + this snapshot. + jsonPath: .status.restoreSize + name: RestoreSize + type: string + - description: The name of the VolumeSnapshotClass requested by the VolumeSnapshot. + jsonPath: .spec.volumeSnapshotClassName + name: SnapshotClass + type: string + - description: Name of the VolumeSnapshotContent object to which the VolumeSnapshot + object intends to bind to. Please note that verification of binding actually + requires checking both VolumeSnapshot and VolumeSnapshotContent to ensure + both are pointing at each other. Binding MUST be verified prior to usage of + this object. + jsonPath: .status.boundVolumeSnapshotContentName + name: SnapshotContent + type: string + - description: Timestamp when the point-in-time snapshot was taken by the underlying + storage system. + jsonPath: .status.creationTime + name: CreationTime + type: date + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: VolumeSnapshot is a user's request for either creating a point-in-time + snapshot of a persistent volume, or binding to a pre-existing snapshot. + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the latest + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the client + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + spec: + description: 'spec defines the desired characteristics of a snapshot requested + by a user. More info: https://kubernetes.io/docs/concepts/storage/volume-snapshots#volumesnapshots + Required.' + properties: + source: + description: source specifies where a snapshot will be created from. + This field is immutable after creation. Required. + properties: + persistentVolumeClaimName: + description: persistentVolumeClaimName specifies the name of the + PersistentVolumeClaim object representing the volume from which + a snapshot should be created. This PVC is assumed to be in the + same namespace as the VolumeSnapshot object. This field should + be set if the snapshot does not exists, and needs to be created. + This field is immutable. + type: string + volumeSnapshotContentName: + description: volumeSnapshotContentName specifies the name of a + pre-existing VolumeSnapshotContent object representing an existing + volume snapshot. This field should be set if the snapshot already + exists and only needs a representation in Kubernetes. This field + is immutable. + type: string + type: object + oneOf: + - required: ["persistentVolumeClaimName"] + - required: ["volumeSnapshotContentName"] + volumeSnapshotClassName: + description: 'VolumeSnapshotClassName is the name of the VolumeSnapshotClass + requested by the VolumeSnapshot. VolumeSnapshotClassName may be + left nil to indicate that the default SnapshotClass should be used. + A given cluster may have multiple default Volume SnapshotClasses: + one default per CSI Driver. If a VolumeSnapshot does not specify + a SnapshotClass, VolumeSnapshotSource will be checked to figure + out what the associated CSI Driver is, and the default VolumeSnapshotClass + associated with that CSI Driver will be used. If more than one VolumeSnapshotClass + exist for a given CSI Driver and more than one have been marked + as default, CreateSnapshot will fail and generate an event. Empty + string is not allowed for this field.' + type: string + required: + - source + type: object + status: + description: status represents the current information of a snapshot. + Consumers must verify binding between VolumeSnapshot and VolumeSnapshotContent + objects is successful (by validating that both VolumeSnapshot and VolumeSnapshotContent + point at each other) before using this object. + properties: + boundVolumeSnapshotContentName: + description: 'boundVolumeSnapshotContentName is the name of the VolumeSnapshotContent + object to which this VolumeSnapshot object intends to bind to. If + not specified, it indicates that the VolumeSnapshot object has not + been successfully bound to a VolumeSnapshotContent object yet. NOTE: + To avoid possible security issues, consumers must verify binding + between VolumeSnapshot and VolumeSnapshotContent objects is successful + (by validating that both VolumeSnapshot and VolumeSnapshotContent + point at each other) before using this object.' + type: string + creationTime: + description: creationTime is the timestamp when the point-in-time + snapshot is taken by the underlying storage system. In dynamic snapshot + creation case, this field will be filled in by the snapshot controller + with the "creation_time" value returned from CSI "CreateSnapshot" + gRPC call. For a pre-existing snapshot, this field will be filled + with the "creation_time" value returned from the CSI "ListSnapshots" + gRPC call if the driver supports it. If not specified, it may indicate + that the creation time of the snapshot is unknown. + format: date-time + type: string + error: + description: error is the last observed error during snapshot creation, + if any. This field could be helpful to upper level controllers(i.e., + application controller) to decide whether they should continue on + waiting for the snapshot to be created based on the type of error + reported. The snapshot controller will keep retrying when an error + occurs during the snapshot creation. Upon success, this error field + will be cleared. + properties: + message: + description: 'message is a string detailing the encountered error + during snapshot creation if specified. NOTE: message may be + logged, and it should not contain sensitive information.' + type: string + time: + description: time is the timestamp when the error was encountered. + format: date-time + type: string + type: object + readyToUse: + description: readyToUse indicates if the snapshot is ready to be used + to restore a volume. In dynamic snapshot creation case, this field + will be filled in by the snapshot controller with the "ready_to_use" + value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing + snapshot, this field will be filled with the "ready_to_use" value + returned from the CSI "ListSnapshots" gRPC call if the driver supports + it, otherwise, this field will be set to "True". If not specified, + it means the readiness of a snapshot is unknown. + type: boolean + restoreSize: + type: string + description: restoreSize represents the minimum size of volume required + to create a volume from this snapshot. In dynamic snapshot creation + case, this field will be filled in by the snapshot controller with + the "size_bytes" value returned from CSI "CreateSnapshot" gRPC call. + For a pre-existing snapshot, this field will be filled with the + "size_bytes" value returned from the CSI "ListSnapshots" gRPC call + if the driver supports it. When restoring a volume from this snapshot, + the size of the volume MUST NOT be smaller than the restoreSize + if it is specified, otherwise the restoration will fail. If not + specified, it indicates that the size is unknown. + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + required: + - spec + type: object + served: true + storage: true + subresources: + status: {} + - additionalPrinterColumns: + - description: Indicates if the snapshot is ready to be used to restore a volume. + jsonPath: .status.readyToUse + name: ReadyToUse + type: boolean + - description: If a new snapshot needs to be created, this contains the name of the source PVC from which this snapshot was (or will be) created. + jsonPath: .spec.source.persistentVolumeClaimName + name: SourcePVC + type: string + - description: If a snapshot already exists, this contains the name of the existing VolumeSnapshotContent object representing the existing snapshot. + jsonPath: .spec.source.volumeSnapshotContentName + name: SourceSnapshotContent + type: string + - description: Represents the minimum size of volume required to rehydrate from this snapshot. + jsonPath: .status.restoreSize + name: RestoreSize + type: string + - description: The name of the VolumeSnapshotClass requested by the VolumeSnapshot. + jsonPath: .spec.volumeSnapshotClassName + name: SnapshotClass + type: string + - description: Name of the VolumeSnapshotContent object to which the VolumeSnapshot object intends to bind to. Please note that verification of binding actually requires checking both VolumeSnapshot and VolumeSnapshotContent to ensure both are pointing at each other. Binding MUST be verified prior to usage of this object. + jsonPath: .status.boundVolumeSnapshotContentName + name: SnapshotContent + type: string + - description: Timestamp when the point-in-time snapshot was taken by the underlying storage system. + jsonPath: .status.creationTime + name: CreationTime + type: date + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1beta1 + # This indicates the v1beta1 version of the custom resource is deprecated. + # API requests to this version receive a warning in the server response. + deprecated: true + # This overrides the default warning returned to clients making v1beta1 API requests. + deprecationWarning: "snapshot.storage.k8s.io/v1beta1 VolumeSnapshot is deprecated; use snapshot.storage.k8s.io/v1 VolumeSnapshot" + schema: + openAPIV3Schema: + description: VolumeSnapshot is a user's request for either creating a point-in-time snapshot of a persistent volume, or binding to a pre-existing snapshot. + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + spec: + description: 'spec defines the desired characteristics of a snapshot requested by a user. More info: https://kubernetes.io/docs/concepts/storage/volume-snapshots#volumesnapshots Required.' + properties: + source: + description: source specifies where a snapshot will be created from. This field is immutable after creation. Required. + properties: + persistentVolumeClaimName: + description: persistentVolumeClaimName specifies the name of the PersistentVolumeClaim object representing the volume from which a snapshot should be created. This PVC is assumed to be in the same namespace as the VolumeSnapshot object. This field should be set if the snapshot does not exists, and needs to be created. This field is immutable. + type: string + volumeSnapshotContentName: + description: volumeSnapshotContentName specifies the name of a pre-existing VolumeSnapshotContent object representing an existing volume snapshot. This field should be set if the snapshot already exists and only needs a representation in Kubernetes. This field is immutable. + type: string + type: object + volumeSnapshotClassName: + description: 'VolumeSnapshotClassName is the name of the VolumeSnapshotClass requested by the VolumeSnapshot. VolumeSnapshotClassName may be left nil to indicate that the default SnapshotClass should be used. A given cluster may have multiple default Volume SnapshotClasses: one default per CSI Driver. If a VolumeSnapshot does not specify a SnapshotClass, VolumeSnapshotSource will be checked to figure out what the associated CSI Driver is, and the default VolumeSnapshotClass associated with that CSI Driver will be used. If more than one VolumeSnapshotClass exist for a given CSI Driver and more than one have been marked as default, CreateSnapshot will fail and generate an event. Empty string is not allowed for this field.' + type: string + required: + - source + type: object + status: + description: status represents the current information of a snapshot. Consumers must verify binding between VolumeSnapshot and VolumeSnapshotContent objects is successful (by validating that both VolumeSnapshot and VolumeSnapshotContent point at each other) before using this object. + properties: + boundVolumeSnapshotContentName: + description: 'boundVolumeSnapshotContentName is the name of the VolumeSnapshotContent object to which this VolumeSnapshot object intends to bind to. If not specified, it indicates that the VolumeSnapshot object has not been successfully bound to a VolumeSnapshotContent object yet. NOTE: To avoid possible security issues, consumers must verify binding between VolumeSnapshot and VolumeSnapshotContent objects is successful (by validating that both VolumeSnapshot and VolumeSnapshotContent point at each other) before using this object.' + type: string + creationTime: + description: creationTime is the timestamp when the point-in-time snapshot is taken by the underlying storage system. In dynamic snapshot creation case, this field will be filled in by the snapshot controller with the "creation_time" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "creation_time" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it. If not specified, it may indicate that the creation time of the snapshot is unknown. + format: date-time + type: string + error: + description: error is the last observed error during snapshot creation, if any. This field could be helpful to upper level controllers(i.e., application controller) to decide whether they should continue on waiting for the snapshot to be created based on the type of error reported. The snapshot controller will keep retrying when an error occurs during the snapshot creation. Upon success, this error field will be cleared. + properties: + message: + description: 'message is a string detailing the encountered error during snapshot creation if specified. NOTE: message may be logged, and it should not contain sensitive information.' + type: string + time: + description: time is the timestamp when the error was encountered. + format: date-time + type: string + type: object + readyToUse: + description: readyToUse indicates if the snapshot is ready to be used to restore a volume. In dynamic snapshot creation case, this field will be filled in by the snapshot controller with the "ready_to_use" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "ready_to_use" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it, otherwise, this field will be set to "True". If not specified, it means the readiness of a snapshot is unknown. + type: boolean + restoreSize: + type: string + description: restoreSize represents the minimum size of volume required to create a volume from this snapshot. In dynamic snapshot creation case, this field will be filled in by the snapshot controller with the "size_bytes" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "size_bytes" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it. When restoring a volume from this snapshot, the size of the volume MUST NOT be smaller than the restoreSize if it is specified, otherwise the restoration will fail. If not specified, it indicates that the size is unknown. + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + required: + - spec + type: object + served: false + storage: false + subresources: + status: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.8.0 + api-approved.kubernetes.io: "https://github.com/kubernetes-csi/external-snapshotter/pull/665" + creationTimestamp: null + name: volumesnapshotclasses.snapshot.storage.k8s.io +spec: + group: snapshot.storage.k8s.io + names: + kind: VolumeSnapshotClass + listKind: VolumeSnapshotClassList + plural: volumesnapshotclasses + shortNames: + - vsclass + - vsclasses + singular: volumesnapshotclass + scope: Cluster + versions: + - additionalPrinterColumns: + - jsonPath: .driver + name: Driver + type: string + - description: Determines whether a VolumeSnapshotContent created through the + VolumeSnapshotClass should be deleted when its bound VolumeSnapshot is deleted. + jsonPath: .deletionPolicy + name: DeletionPolicy + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: VolumeSnapshotClass specifies parameters that a underlying storage + system uses when creating a volume snapshot. A specific VolumeSnapshotClass + is used by specifying its name in a VolumeSnapshot object. VolumeSnapshotClasses + are non-namespaced + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the latest + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + deletionPolicy: + description: deletionPolicy determines whether a VolumeSnapshotContent + created through the VolumeSnapshotClass should be deleted when its bound + VolumeSnapshot is deleted. Supported values are "Retain" and "Delete". + "Retain" means that the VolumeSnapshotContent and its physical snapshot + on underlying storage system are kept. "Delete" means that the VolumeSnapshotContent + and its physical snapshot on underlying storage system are deleted. + Required. + enum: + - Delete + - Retain + type: string + driver: + description: driver is the name of the storage driver that handles this + VolumeSnapshotClass. Required. + type: string + kind: + description: 'Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the client + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + parameters: + additionalProperties: + type: string + description: parameters is a key-value map with storage driver specific + parameters for creating snapshots. These values are opaque to Kubernetes. + type: object + required: + - deletionPolicy + - driver + type: object + served: true + storage: true + subresources: {} + - additionalPrinterColumns: + - jsonPath: .driver + name: Driver + type: string + - description: Determines whether a VolumeSnapshotContent created through the VolumeSnapshotClass should be deleted when its bound VolumeSnapshot is deleted. + jsonPath: .deletionPolicy + name: DeletionPolicy + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1beta1 + # This indicates the v1beta1 version of the custom resource is deprecated. + # API requests to this version receive a warning in the server response. + deprecated: true + # This overrides the default warning returned to clients making v1beta1 API requests. + deprecationWarning: "snapshot.storage.k8s.io/v1beta1 VolumeSnapshotClass is deprecated; use snapshot.storage.k8s.io/v1 VolumeSnapshotClass" + schema: + openAPIV3Schema: + description: VolumeSnapshotClass specifies parameters that a underlying storage system uses when creating a volume snapshot. A specific VolumeSnapshotClass is used by specifying its name in a VolumeSnapshot object. VolumeSnapshotClasses are non-namespaced + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + deletionPolicy: + description: deletionPolicy determines whether a VolumeSnapshotContent created through the VolumeSnapshotClass should be deleted when its bound VolumeSnapshot is deleted. Supported values are "Retain" and "Delete". "Retain" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are kept. "Delete" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are deleted. Required. + enum: + - Delete + - Retain + type: string + driver: + description: driver is the name of the storage driver that handles this VolumeSnapshotClass. Required. + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + parameters: + additionalProperties: + type: string + description: parameters is a key-value map with storage driver specific parameters for creating snapshots. These values are opaque to Kubernetes. + type: object + required: + - deletionPolicy + - driver + type: object + served: false + storage: false + subresources: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.8.0 + api-approved.kubernetes.io: "https://github.com/kubernetes-csi/external-snapshotter/pull/665" + creationTimestamp: null + name: volumesnapshotcontents.snapshot.storage.k8s.io +spec: + group: snapshot.storage.k8s.io + names: + kind: VolumeSnapshotContent + listKind: VolumeSnapshotContentList + plural: volumesnapshotcontents + shortNames: + - vsc + - vscs + singular: volumesnapshotcontent + scope: Cluster + versions: + - additionalPrinterColumns: + - description: Indicates if the snapshot is ready to be used to restore a volume. + jsonPath: .status.readyToUse + name: ReadyToUse + type: boolean + - description: Represents the complete size of the snapshot in bytes + jsonPath: .status.restoreSize + name: RestoreSize + type: integer + - description: Determines whether this VolumeSnapshotContent and its physical + snapshot on the underlying storage system should be deleted when its bound + VolumeSnapshot is deleted. + jsonPath: .spec.deletionPolicy + name: DeletionPolicy + type: string + - description: Name of the CSI driver used to create the physical snapshot on + the underlying storage system. + jsonPath: .spec.driver + name: Driver + type: string + - description: Name of the VolumeSnapshotClass to which this snapshot belongs. + jsonPath: .spec.volumeSnapshotClassName + name: VolumeSnapshotClass + type: string + - description: Name of the VolumeSnapshot object to which this VolumeSnapshotContent + object is bound. + jsonPath: .spec.volumeSnapshotRef.name + name: VolumeSnapshot + type: string + - description: Namespace of the VolumeSnapshot object to which this VolumeSnapshotContent object is bound. + jsonPath: .spec.volumeSnapshotRef.namespace + name: VolumeSnapshotNamespace + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: VolumeSnapshotContent represents the actual "on-disk" snapshot + object in the underlying storage system + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the latest + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the client + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + spec: + description: spec defines properties of a VolumeSnapshotContent created + by the underlying storage system. Required. + properties: + deletionPolicy: + description: deletionPolicy determines whether this VolumeSnapshotContent + and its physical snapshot on the underlying storage system should + be deleted when its bound VolumeSnapshot is deleted. Supported values + are "Retain" and "Delete". "Retain" means that the VolumeSnapshotContent + and its physical snapshot on underlying storage system are kept. + "Delete" means that the VolumeSnapshotContent and its physical snapshot + on underlying storage system are deleted. For dynamically provisioned + snapshots, this field will automatically be filled in by the CSI + snapshotter sidecar with the "DeletionPolicy" field defined in the + corresponding VolumeSnapshotClass. For pre-existing snapshots, users + MUST specify this field when creating the VolumeSnapshotContent + object. Required. + enum: + - Delete + - Retain + type: string + driver: + description: driver is the name of the CSI driver used to create the + physical snapshot on the underlying storage system. This MUST be + the same as the name returned by the CSI GetPluginName() call for + that driver. Required. + type: string + source: + description: source specifies whether the snapshot is (or should be) + dynamically provisioned or already exists, and just requires a Kubernetes + object representation. This field is immutable after creation. Required. + properties: + snapshotHandle: + description: snapshotHandle specifies the CSI "snapshot_id" of + a pre-existing snapshot on the underlying storage system for + which a Kubernetes object representation was (or should be) + created. This field is immutable. + type: string + volumeHandle: + description: volumeHandle specifies the CSI "volume_id" of the + volume from which a snapshot should be dynamically taken from. + This field is immutable. + type: string + type: object + oneOf: + - required: ["snapshotHandle"] + - required: ["volumeHandle"] + sourceVolumeMode: + description: SourceVolumeMode is the mode of the volume whose snapshot + is taken. Can be either “Filesystem” or “Block”. If not specified, + it indicates the source volume's mode is unknown. This field is + immutable. This field is an alpha field. + type: string + volumeSnapshotClassName: + description: name of the VolumeSnapshotClass from which this snapshot + was (or will be) created. Note that after provisioning, the VolumeSnapshotClass + may be deleted or recreated with different set of values, and as + such, should not be referenced post-snapshot creation. + type: string + volumeSnapshotRef: + description: volumeSnapshotRef specifies the VolumeSnapshot object + to which this VolumeSnapshotContent object is bound. VolumeSnapshot.Spec.VolumeSnapshotContentName + field must reference to this VolumeSnapshotContent's name for the + bidirectional binding to be valid. For a pre-existing VolumeSnapshotContent + object, name and namespace of the VolumeSnapshot object MUST be + provided for binding to happen. This field is immutable after creation. + Required. + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: 'If referring to a piece of an object instead of + an entire object, this string should contain a valid JSON/Go + field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container within + a pod, this would take on a value like: "spec.containers{name}" + (where "name" refers to the name of the container that triggered + the event) or if no container name is specified "spec.containers[2]" + (container with index 2 in this pod). This syntax is chosen + only to have some well-defined way of referencing a part of + an object. TODO: this design is not final and this field is + subject to change in the future.' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + type: string + resourceVersion: + description: 'Specific resourceVersion to which this reference + is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + type: string + uid: + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + type: string + type: object + required: + - deletionPolicy + - driver + - source + - volumeSnapshotRef + type: object + status: + description: status represents the current information of a snapshot. + properties: + creationTime: + description: creationTime is the timestamp when the point-in-time + snapshot is taken by the underlying storage system. In dynamic snapshot + creation case, this field will be filled in by the CSI snapshotter + sidecar with the "creation_time" value returned from CSI "CreateSnapshot" + gRPC call. For a pre-existing snapshot, this field will be filled + with the "creation_time" value returned from the CSI "ListSnapshots" + gRPC call if the driver supports it. If not specified, it indicates + the creation time is unknown. The format of this field is a Unix + nanoseconds time encoded as an int64. On Unix, the command `date + +%s%N` returns the current time in nanoseconds since 1970-01-01 + 00:00:00 UTC. + format: int64 + type: integer + error: + description: error is the last observed error during snapshot creation, + if any. Upon success after retry, this error field will be cleared. + properties: + message: + description: 'message is a string detailing the encountered error + during snapshot creation if specified. NOTE: message may be + logged, and it should not contain sensitive information.' + type: string + time: + description: time is the timestamp when the error was encountered. + format: date-time + type: string + type: object + readyToUse: + description: readyToUse indicates if a snapshot is ready to be used + to restore a volume. In dynamic snapshot creation case, this field + will be filled in by the CSI snapshotter sidecar with the "ready_to_use" + value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing + snapshot, this field will be filled with the "ready_to_use" value + returned from the CSI "ListSnapshots" gRPC call if the driver supports + it, otherwise, this field will be set to "True". If not specified, + it means the readiness of a snapshot is unknown. + type: boolean + restoreSize: + description: restoreSize represents the complete size of the snapshot + in bytes. In dynamic snapshot creation case, this field will be + filled in by the CSI snapshotter sidecar with the "size_bytes" value + returned from CSI "CreateSnapshot" gRPC call. For a pre-existing + snapshot, this field will be filled with the "size_bytes" value + returned from the CSI "ListSnapshots" gRPC call if the driver supports + it. When restoring a volume from this snapshot, the size of the + volume MUST NOT be smaller than the restoreSize if it is specified, + otherwise the restoration will fail. If not specified, it indicates + that the size is unknown. + format: int64 + minimum: 0 + type: integer + snapshotHandle: + description: snapshotHandle is the CSI "snapshot_id" of a snapshot + on the underlying storage system. If not specified, it indicates + that dynamic snapshot creation has either failed or it is still + in progress. + type: string + type: object + required: + - spec + type: object + served: true + storage: true + subresources: + status: {} + - additionalPrinterColumns: + - description: Indicates if the snapshot is ready to be used to restore a volume. + jsonPath: .status.readyToUse + name: ReadyToUse + type: boolean + - description: Represents the complete size of the snapshot in bytes + jsonPath: .status.restoreSize + name: RestoreSize + type: integer + - description: Determines whether this VolumeSnapshotContent and its physical snapshot on the underlying storage system should be deleted when its bound VolumeSnapshot is deleted. + jsonPath: .spec.deletionPolicy + name: DeletionPolicy + type: string + - description: Name of the CSI driver used to create the physical snapshot on the underlying storage system. + jsonPath: .spec.driver + name: Driver + type: string + - description: Name of the VolumeSnapshotClass to which this snapshot belongs. + jsonPath: .spec.volumeSnapshotClassName + name: VolumeSnapshotClass + type: string + - description: Name of the VolumeSnapshot object to which this VolumeSnapshotContent object is bound. + jsonPath: .spec.volumeSnapshotRef.name + name: VolumeSnapshot + type: string + - description: Namespace of the VolumeSnapshot object to which this VolumeSnapshotContent object is bound. + jsonPath: .spec.volumeSnapshotRef.namespace + name: VolumeSnapshotNamespace + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1beta1 + # This indicates the v1beta1 version of the custom resource is deprecated. + # API requests to this version receive a warning in the server response. + deprecated: true + # This overrides the default warning returned to clients making v1beta1 API requests. + deprecationWarning: "snapshot.storage.k8s.io/v1beta1 VolumeSnapshotContent is deprecated; use snapshot.storage.k8s.io/v1 VolumeSnapshotContent" + schema: + openAPIV3Schema: + description: VolumeSnapshotContent represents the actual "on-disk" snapshot object in the underlying storage system + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + spec: + description: spec defines properties of a VolumeSnapshotContent created by the underlying storage system. Required. + properties: + deletionPolicy: + description: deletionPolicy determines whether this VolumeSnapshotContent and its physical snapshot on the underlying storage system should be deleted when its bound VolumeSnapshot is deleted. Supported values are "Retain" and "Delete". "Retain" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are kept. "Delete" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are deleted. For dynamically provisioned snapshots, this field will automatically be filled in by the CSI snapshotter sidecar with the "DeletionPolicy" field defined in the corresponding VolumeSnapshotClass. For pre-existing snapshots, users MUST specify this field when creating the VolumeSnapshotContent object. Required. + enum: + - Delete + - Retain + type: string + driver: + description: driver is the name of the CSI driver used to create the physical snapshot on the underlying storage system. This MUST be the same as the name returned by the CSI GetPluginName() call for that driver. Required. + type: string + source: + description: source specifies whether the snapshot is (or should be) dynamically provisioned or already exists, and just requires a Kubernetes object representation. This field is immutable after creation. Required. + properties: + snapshotHandle: + description: snapshotHandle specifies the CSI "snapshot_id" of a pre-existing snapshot on the underlying storage system for which a Kubernetes object representation was (or should be) created. This field is immutable. + type: string + volumeHandle: + description: volumeHandle specifies the CSI "volume_id" of the volume from which a snapshot should be dynamically taken from. This field is immutable. + type: string + type: object + volumeSnapshotClassName: + description: name of the VolumeSnapshotClass from which this snapshot was (or will be) created. Note that after provisioning, the VolumeSnapshotClass may be deleted or recreated with different set of values, and as such, should not be referenced post-snapshot creation. + type: string + volumeSnapshotRef: + description: volumeSnapshotRef specifies the VolumeSnapshot object to which this VolumeSnapshotContent object is bound. VolumeSnapshot.Spec.VolumeSnapshotContentName field must reference to this VolumeSnapshotContent's name for the bidirectional binding to be valid. For a pre-existing VolumeSnapshotContent object, name and namespace of the VolumeSnapshot object MUST be provided for binding to happen. This field is immutable after creation. Required. + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. TODO: this design is not final and this field is subject to change in the future.' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + type: string + resourceVersion: + description: 'Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + type: string + uid: + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + type: string + type: object + required: + - deletionPolicy + - driver + - source + - volumeSnapshotRef + type: object + status: + description: status represents the current information of a snapshot. + properties: + creationTime: + description: creationTime is the timestamp when the point-in-time snapshot is taken by the underlying storage system. In dynamic snapshot creation case, this field will be filled in by the CSI snapshotter sidecar with the "creation_time" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "creation_time" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it. If not specified, it indicates the creation time is unknown. The format of this field is a Unix nanoseconds time encoded as an int64. On Unix, the command `date +%s%N` returns the current time in nanoseconds since 1970-01-01 00:00:00 UTC. + format: int64 + type: integer + error: + description: error is the last observed error during snapshot creation, if any. Upon success after retry, this error field will be cleared. + properties: + message: + description: 'message is a string detailing the encountered error during snapshot creation if specified. NOTE: message may be logged, and it should not contain sensitive information.' + type: string + time: + description: time is the timestamp when the error was encountered. + format: date-time + type: string + type: object + readyToUse: + description: readyToUse indicates if a snapshot is ready to be used to restore a volume. In dynamic snapshot creation case, this field will be filled in by the CSI snapshotter sidecar with the "ready_to_use" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "ready_to_use" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it, otherwise, this field will be set to "True". If not specified, it means the readiness of a snapshot is unknown. + type: boolean + restoreSize: + description: restoreSize represents the complete size of the snapshot in bytes. In dynamic snapshot creation case, this field will be filled in by the CSI snapshotter sidecar with the "size_bytes" value returned from CSI "CreateSnapshot" gRPC call. For a pre-existing snapshot, this field will be filled with the "size_bytes" value returned from the CSI "ListSnapshots" gRPC call if the driver supports it. When restoring a volume from this snapshot, the size of the volume MUST NOT be smaller than the restoreSize if it is specified, otherwise the restoration will fail. If not specified, it indicates that the size is unknown. + format: int64 + minimum: 0 + type: integer + snapshotHandle: + description: snapshotHandle is the CSI "snapshot_id" of a snapshot on the underlying storage system. If not specified, it indicates that dynamic snapshot creation has either failed or it is still in progress. + type: string + type: object + required: + - spec + type: object + served: false + storage: false + subresources: + status: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] diff --git a/deploy/v1.29.9/csi-azurefile-controller.yaml b/deploy/v1.29.9/csi-azurefile-controller.yaml new file mode 100644 index 0000000000..8f5e5a2384 --- /dev/null +++ b/deploy/v1.29.9/csi-azurefile-controller.yaml @@ -0,0 +1,181 @@ +--- +kind: Deployment +apiVersion: apps/v1 +metadata: + name: csi-azurefile-controller + namespace: kube-system +spec: + replicas: 2 + selector: + matchLabels: + app: csi-azurefile-controller + template: + metadata: + labels: + app: csi-azurefile-controller + spec: + hostNetwork: true # only required for MSI enabled cluster + serviceAccountName: csi-azurefile-controller-sa + nodeSelector: + kubernetes.io/os: linux # add "kubernetes.io/role: master" to run controller on master node + priorityClassName: system-cluster-critical + 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:v3.5.0 + args: + - "-v=2" + - "--csi-address=$(ADDRESS)" + - "--leader-election" + - "--leader-election-namespace=kube-system" + - "--timeout=1200s" + - "--extra-create-metadata=true" + - "--kube-api-qps=50" + - "--kube-api-burst=100" + - "--feature-gates=HonorPVReclaimPolicy=true" + 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:v6.3.1 + args: + - "-v=2" + - "-csi-address=$(ADDRESS)" + - "--leader-election" + - "--leader-election-namespace=kube-system" + 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.8.0 + args: + - "-csi-address=$(ADDRESS)" + - "-v=2" + - "--leader-election" + - "--leader-election-namespace=kube-system" + - '-handle-volume-inuse-error=false' + - '-feature-gates=RecoverVolumeExpansionFailure=true' + - '-timeout=120s' + 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.10.0 + args: + - --csi-address=/csi/csi.sock + - --probe-timeout=3s + - --http-endpoint=localhost:29612 + - --v=2 + volumeMounts: + - name: socket-dir + mountPath: /csi + resources: + limits: + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi + securityContext: + capabilities: + drop: + - ALL + - name: azurefile + image: mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.29.9 + imagePullPolicy: IfNotPresent + args: + - "--v=5" + - "--endpoint=$(CSI_ENDPOINT)" + - "--metrics-address=0.0.0.0:29614" + - "--user-agent-suffix=OSS-kubectl" + ports: + - containerPort: 29614 + name: metrics + protocol: TCP + livenessProbe: + failureThreshold: 5 + httpGet: + host: localhost + path: /healthz + port: 29612 + 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: 200Mi + requests: + cpu: 10m + memory: 20Mi + securityContext: + capabilities: + drop: + - ALL + volumes: + - name: socket-dir + emptyDir: {} + - name: azure-cred + hostPath: + path: /etc/kubernetes/ + type: DirectoryOrCreate diff --git a/deploy/v1.29.9/csi-azurefile-driver.yaml b/deploy/v1.29.9/csi-azurefile-driver.yaml new file mode 100644 index 0000000000..983a2f5fdf --- /dev/null +++ b/deploy/v1.29.9/csi-azurefile-driver.yaml @@ -0,0 +1,15 @@ +--- +apiVersion: storage.k8s.io/v1 +kind: CSIDriver +metadata: + name: file.csi.azure.com + annotations: + csiDriver: v1.29.0 + snapshot: v6.2.2 +spec: + attachRequired: false + podInfoOnMount: true + volumeLifecycleModes: + - Persistent + - Ephemeral + fsGroupPolicy: ReadWriteOnceWithFSType diff --git a/deploy/v1.29.9/csi-azurefile-node-windows-hostprocess.yaml b/deploy/v1.29.9/csi-azurefile-node-windows-hostprocess.yaml new file mode 100644 index 0000000000..458b207bc7 --- /dev/null +++ b/deploy/v1.29.9/csi-azurefile-node-windows-hostprocess.yaml @@ -0,0 +1,122 @@ +--- +kind: DaemonSet +apiVersion: apps/v1 +metadata: + name: csi-azurefile-node-win + namespace: kube-system +spec: + updateStrategy: + rollingUpdate: + maxUnavailable: 1 + type: RollingUpdate + selector: + matchLabels: + app: csi-azurefile-node-win + template: + metadata: + labels: + app: csi-azurefile-node-win + spec: + serviceAccountName: csi-azurefile-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 + windowsOptions: + hostProcess: true + runAsUserName: "NT AUTHORITY\\SYSTEM" + hostNetwork: true + initContainers: + - name: init + image: mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.29.9-windows-hp + imagePullPolicy: IfNotPresent + command: + - "powershell.exe" + - "-c" + - "New-Item -ItemType Directory -Path C:\\var\\lib\\kubelet\\plugins\\file.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.8.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\\file.csi.azure.com\\csi.sock + - name: DRIVER_REG_SOCK_PATH + value: C:\\var\\lib\\kubelet\\plugins\\file.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: azurefile + image: mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.29.9-windows-hp + imagePullPolicy: IfNotPresent + command: + - "azurefileplugin.exe" + args: + - --v=5 + - --endpoint=$(CSI_ENDPOINT) + - --nodeid=$(KUBE_NODE_NAME) + - --enable-windows-host-process=true + - --metrics-address="0.0.0.0:29615" + 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\\file.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.29.9/csi-azurefile-node-windows.yaml b/deploy/v1.29.9/csi-azurefile-node-windows.yaml new file mode 100644 index 0000000000..f9c4ec8be3 --- /dev/null +++ b/deploy/v1.29.9/csi-azurefile-node-windows.yaml @@ -0,0 +1,195 @@ +--- +kind: DaemonSet +apiVersion: apps/v1 +metadata: + name: csi-azurefile-node-win + namespace: kube-system +spec: + updateStrategy: + rollingUpdate: + maxUnavailable: 1 + type: RollingUpdate + selector: + matchLabels: + app: csi-azurefile-node-win + template: + metadata: + labels: + app: csi-azurefile-node-win + spec: + serviceAccountName: csi-azurefile-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.10.0 + args: + - --csi-address=$(CSI_ENDPOINT) + - --probe-timeout=3s + - --health-port=29613 + - --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.8.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\\file.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: azurefile + image: mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.29.9 + imagePullPolicy: IfNotPresent + args: + - --v=5 + - --endpoint=$(CSI_ENDPOINT) + - --nodeid=$(KUBE_NODE_NAME) + - --metrics-address="0.0.0.0:29615" + ports: + - containerPort: 29613 + 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-smb-pipe-v1 + mountPath: \\.\pipe\csi-proxy-smb-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-smb-pipe-v1beta1 + mountPath: \\.\pipe\csi-proxy-smb-v1beta1 + 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-smb-pipe-v1 + hostPath: + path: \\.\pipe\csi-proxy-smb-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-smb-pipe-v1beta1 + hostPath: + path: \\.\pipe\csi-proxy-smb-v1beta1 + - 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\file.csi.azure.com\ + type: DirectoryOrCreate + - name: azure-config + hostPath: + path: C:\k + type: DirectoryOrCreate diff --git a/deploy/v1.29.9/csi-azurefile-node.yaml b/deploy/v1.29.9/csi-azurefile-node.yaml new file mode 100644 index 0000000000..1ff8b8c560 --- /dev/null +++ b/deploy/v1.29.9/csi-azurefile-node.yaml @@ -0,0 +1,168 @@ +--- +kind: DaemonSet +apiVersion: apps/v1 +metadata: + name: csi-azurefile-node + namespace: kube-system +spec: + updateStrategy: + rollingUpdate: + maxUnavailable: 1 + type: RollingUpdate + selector: + matchLabels: + app: csi-azurefile-node + template: + metadata: + labels: + app: csi-azurefile-node + spec: + hostNetwork: true + dnsPolicy: Default + serviceAccountName: csi-azurefile-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.10.0 + args: + - --csi-address=/csi/csi.sock + - --probe-timeout=3s + - --health-port=29613 + - --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.8.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/file.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: azurefile + image: mcr.microsoft.com/oss/kubernetes-csi/azurefile-csi:v1.29.9 + imagePullPolicy: IfNotPresent + args: + - "--v=5" + - "--endpoint=$(CSI_ENDPOINT)" + - "--nodeid=$(KUBE_NODE_NAME)" + - "--metrics-address=0.0.0.0:29615" + livenessProbe: + failureThreshold: 5 + httpGet: + host: localhost + path: /healthz + port: 29613 + 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 + resources: + limits: + memory: 400Mi + requests: + cpu: 10m + memory: 20Mi + volumes: + - hostPath: + path: /var/lib/kubelet/plugins/file.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 +--- diff --git a/deploy/v1.29.9/csi-snapshot-controller.yaml b/deploy/v1.29.9/csi-snapshot-controller.yaml new file mode 100644 index 0000000000..023a25a127 --- /dev/null +++ b/deploy/v1.29.9/csi-snapshot-controller.yaml @@ -0,0 +1,59 @@ +--- +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 + 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:v6.3.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.29.9/rbac-csi-azurefile-controller.yaml b/deploy/v1.29.9/rbac-csi-azurefile-controller.yaml new file mode 100644 index 0000000000..59a0f8c2af --- /dev/null +++ b/deploy/v1.29.9/rbac-csi-azurefile-controller.yaml @@ -0,0 +1,194 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: csi-azurefile-controller-sa + namespace: kube-system + +--- + +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: azurefile-external-provisioner-role +rules: + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch", "create", "patch", "delete"] + - apiGroups: [""] + resources: ["persistentvolumeclaims"] + verbs: ["get", "list", "watch", "update"] + - apiGroups: ["storage.k8s.io"] + resources: ["storageclasses"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["events"] + verbs: ["get", "list", "watch", "create", "update", "patch"] + - apiGroups: ["storage.k8s.io"] + resources: ["csinodes"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["nodes"] + verbs: ["get", "list", "watch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshots"] + verbs: ["get", "list"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents"] + verbs: ["get", "list"] + - apiGroups: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "watch", "list", "delete", "update", "create", "patch"] +--- + +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: azurefile-csi-provisioner-binding +subjects: + - kind: ServiceAccount + name: csi-azurefile-controller-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: azurefile-external-provisioner-role + apiGroup: rbac.authorization.k8s.io + +--- + +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: azurefile-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: azurefile-csi-attacher-binding +subjects: + - kind: ServiceAccount + name: csi-azurefile-controller-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: azurefile-external-attacher-role + apiGroup: rbac.authorization.k8s.io + +--- + +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: azurefile-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: azurefile-csi-snapshotter-binding +subjects: + - kind: ServiceAccount + name: csi-azurefile-controller-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: azurefile-external-snapshotter-role + apiGroup: rbac.authorization.k8s.io + +--- + +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: azurefile-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"] + +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: azurefile-csi-resizer-role +subjects: + - kind: ServiceAccount + name: csi-azurefile-controller-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: azurefile-external-resizer-role + apiGroup: rbac.authorization.k8s.io + +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-azurefile-controller-secret-role +rules: + - apiGroups: [""] + resources: ["secrets"] + verbs: ["get", "create"] + +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-azurefile-controller-secret-binding +subjects: + - kind: ServiceAccount + name: csi-azurefile-controller-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: csi-azurefile-controller-secret-role + apiGroup: rbac.authorization.k8s.io diff --git a/deploy/v1.29.9/rbac-csi-azurefile-node.yaml b/deploy/v1.29.9/rbac-csi-azurefile-node.yaml new file mode 100644 index 0000000000..3752f36aa4 --- /dev/null +++ b/deploy/v1.29.9/rbac-csi-azurefile-node.yaml @@ -0,0 +1,30 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: csi-azurefile-node-sa + namespace: kube-system + +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-azurefile-node-secret-role +rules: + - apiGroups: [""] + resources: ["secrets"] + verbs: ["get"] + +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: csi-azurefile-node-secret-binding +subjects: + - kind: ServiceAccount + name: csi-azurefile-node-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: csi-azurefile-node-secret-role + apiGroup: rbac.authorization.k8s.io diff --git a/deploy/v1.29.9/rbac-csi-snapshot-controller.yaml b/deploy/v1.29.9/rbac-csi-snapshot-controller.yaml new file mode 100644 index 0000000000..03af765424 --- /dev/null +++ b/deploy/v1.29.9/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-csi-driver-v1.29.9.md b/docs/install-csi-driver-v1.29.9.md new file mode 100644 index 0000000000..803db13134 --- /dev/null +++ b/docs/install-csi-driver-v1.29.9.md @@ -0,0 +1,45 @@ +## Install azurefile CSI driver v1.29.9 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/azurefile-csi-driver/v1.29.9/deploy/install-driver.sh | bash -s v1.29.9 -- +``` + + - Option#2. local install +```console +git clone https://github.com/kubernetes-sigs/azurefile-csi-driver.git +cd azurefile-csi-driver +git checkout v1.29.9 +./deploy/install-driver.sh v1.29.9 local +``` + + - check pods status: +```console +kubectl -n kube-system get pod -o wide --watch -l app=csi-azurefile-controller +kubectl -n kube-system get pod -o wide --watch -l app=csi-azurefile-node +``` + +example output: + +``` +NAME READY STATUS RESTARTS AGE IP NODE +csi-azurefile-controller-56bfddd689-dh5tk 6/6 Running 0 35s 10.240.0.19 k8s-agentpool-22533604-0 +csi-azurefile-node-cvgbs 3/3 Running 0 7m4s 10.240.0.35 k8s-agentpool-22533604-1 +csi-azurefile-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/azurefile-csi-driver/v1.29.9/deploy/uninstall-driver.sh | bash -s -- +``` + + - Option#2. local uninstall +```console +git clone https://github.com/kubernetes-sigs/azurefile-csi-driver.git +cd azurefile-csi-driver +git checkout v1.29.9 +./deploy/install-driver.sh v1.29.9 local +```