From 03f87416d42d2cb65a383a127cef48ff2103d59d Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Mon, 29 May 2023 07:04:00 +0000 Subject: [PATCH 1/2] doc: cut v4.3.0 release --- Makefile | 2 +- README.md | 2 +- charts/README.md | 2 +- charts/index.yaml | 41 +- charts/latest/csi-driver-nfs-v0.0.0.tgz | Bin 10682 -> 0 bytes charts/latest/csi-driver-nfs-v4.3.0.tgz | Bin 0 -> 10653 bytes charts/latest/csi-driver-nfs/Chart.yaml | 4 +- charts/latest/csi-driver-nfs/values.yaml | 4 +- charts/v4.3.0/csi-driver-nfs-v4.3.0.tgz | Bin 0 -> 10653 bytes charts/v4.3.0/csi-driver-nfs/.helmignore | 22 + charts/v4.3.0/csi-driver-nfs/Chart.yaml | 5 + .../v4.3.0/csi-driver-nfs/templates/NOTES.txt | 5 + .../csi-driver-nfs/templates/_helpers.tpl | 19 + .../templates/crd-csi-snapshot.yaml | 840 ++++++++++++++++++ .../templates/csi-nfs-controller.yaml | 152 ++++ .../templates/csi-nfs-driverinfo.yaml | 15 + .../templates/csi-nfs-node.yaml | 141 +++ .../templates/csi-snapshot-controller.yaml | 67 ++ .../templates/rbac-csi-nfs.yaml | 75 ++ .../templates/rbac-snapshot-controller.yaml | 93 ++ charts/v4.3.0/csi-driver-nfs/values.yaml | 131 +++ deploy/csi-nfs-controller.yaml | 2 +- deploy/csi-nfs-node.yaml | 2 +- deploy/v4.3.0/crd-csi-snapshot.yaml | 838 +++++++++++++++++ deploy/v4.3.0/csi-nfs-controller.yaml | 136 +++ deploy/v4.3.0/csi-nfs-driverinfo.yaml | 10 + deploy/v4.3.0/csi-nfs-node.yaml | 135 +++ deploy/v4.3.0/csi-snapshot-controller.yaml | 65 ++ deploy/v4.3.0/rbac-csi-nfs.yaml | 66 ++ deploy/v4.3.0/rbac-snapshot-controller.yaml | 82 ++ docs/install-csi-driver-v4.3.0.md | 45 + docs/install-nfs-csi-driver.md | 2 +- 32 files changed, 2977 insertions(+), 26 deletions(-) delete mode 100644 charts/latest/csi-driver-nfs-v0.0.0.tgz create mode 100644 charts/latest/csi-driver-nfs-v4.3.0.tgz create mode 100644 charts/v4.3.0/csi-driver-nfs-v4.3.0.tgz create mode 100644 charts/v4.3.0/csi-driver-nfs/.helmignore create mode 100644 charts/v4.3.0/csi-driver-nfs/Chart.yaml create mode 100644 charts/v4.3.0/csi-driver-nfs/templates/NOTES.txt create mode 100644 charts/v4.3.0/csi-driver-nfs/templates/_helpers.tpl create mode 100644 charts/v4.3.0/csi-driver-nfs/templates/crd-csi-snapshot.yaml create mode 100644 charts/v4.3.0/csi-driver-nfs/templates/csi-nfs-controller.yaml create mode 100644 charts/v4.3.0/csi-driver-nfs/templates/csi-nfs-driverinfo.yaml create mode 100644 charts/v4.3.0/csi-driver-nfs/templates/csi-nfs-node.yaml create mode 100644 charts/v4.3.0/csi-driver-nfs/templates/csi-snapshot-controller.yaml create mode 100644 charts/v4.3.0/csi-driver-nfs/templates/rbac-csi-nfs.yaml create mode 100644 charts/v4.3.0/csi-driver-nfs/templates/rbac-snapshot-controller.yaml create mode 100644 charts/v4.3.0/csi-driver-nfs/values.yaml create mode 100644 deploy/v4.3.0/crd-csi-snapshot.yaml create mode 100644 deploy/v4.3.0/csi-nfs-controller.yaml create mode 100644 deploy/v4.3.0/csi-nfs-driverinfo.yaml create mode 100644 deploy/v4.3.0/csi-nfs-node.yaml create mode 100644 deploy/v4.3.0/csi-snapshot-controller.yaml create mode 100644 deploy/v4.3.0/rbac-csi-nfs.yaml create mode 100644 deploy/v4.3.0/rbac-snapshot-controller.yaml create mode 100644 docs/install-csi-driver-v4.3.0.md diff --git a/Makefile b/Makefile index fceb5315f..0d7b6b6bd 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ include release-tools/build.make GIT_COMMIT = $(shell git rev-parse HEAD) BUILD_DATE = $(shell date -u +"%Y-%m-%dT%H:%M:%SZ") -IMAGE_VERSION ?= v4.2.0 +IMAGE_VERSION ?= v4.3.0 LDFLAGS = -X ${PKG}/pkg/nfs.driverVersion=${IMAGE_VERSION} -X ${PKG}/pkg/nfs.gitCommit=${GIT_COMMIT} -X ${PKG}/pkg/nfs.buildDate=${BUILD_DATE} EXT_LDFLAGS = -s -w -extldflags "-static" # Use a custom version for E2E tests if we are testing in CI diff --git a/README.md b/README.md index 09767dee3..637cf2f36 100644 --- a/README.md +++ b/README.md @@ -12,9 +12,9 @@ This is a repository for [NFS](https://en.wikipedia.org/wiki/Network_File_System |driver version | supported k8s version | status | |----------------|-----------------------|--------| |master branch | 1.21+ | GA | +|v4.3.0 | 1.21+ | GA | |v4.2.0 | 1.21+ | GA | |v4.1.0 | 1.20+ | GA | -|v4.0.0 | 1.20+ | GA | ### Install driver on a Kubernetes cluster > [install NFS CSI driver on microk8s](https://microk8s.io/docs/nfs) diff --git a/charts/README.md b/charts/README.md index d2cc15980..9be149a98 100644 --- a/charts/README.md +++ b/charts/README.md @@ -15,7 +15,7 @@ ### install a specific version ```console helm repo add csi-driver-nfs https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts -helm install csi-driver-nfs csi-driver-nfs/csi-driver-nfs --namespace kube-system --version v4.2.0 +helm install csi-driver-nfs csi-driver-nfs/csi-driver-nfs --namespace kube-system --version v4.3.0 ``` ### install driver with customized driver name, deployment name diff --git a/charts/index.yaml b/charts/index.yaml index ce4fbc4f8..6f42b1d84 100644 --- a/charts/index.yaml +++ b/charts/index.yaml @@ -1,9 +1,27 @@ apiVersion: v1 entries: csi-driver-nfs: + - apiVersion: v1 + appVersion: v4.3.0 + created: "2023-05-29T07:03:28.292263808Z" + description: CSI NFS Driver for Kubernetes + digest: 1aef5dec52a6c433dbed2e361bed0ab1fdd6792f845eccb99b7dc7f193c2a71e + name: csi-driver-nfs + urls: + - https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts/latest/csi-driver-nfs-v4.3.0.tgz + version: v4.3.0 + - apiVersion: v1 + appVersion: v4.3.0 + created: "2023-05-29T07:03:28.295295628Z" + description: CSI NFS Driver for Kubernetes + digest: 1aef5dec52a6c433dbed2e361bed0ab1fdd6792f845eccb99b7dc7f193c2a71e + name: csi-driver-nfs + urls: + - https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts/v4.3.0/csi-driver-nfs-v4.3.0.tgz + version: v4.3.0 - apiVersion: v1 appVersion: v4.2.0 - created: "2023-02-19T03:06:17.779651726Z" + created: "2023-05-29T07:03:28.294619093Z" description: CSI NFS Driver for Kubernetes digest: e702f6c9be35f2649f5736ca5fcdc40ab1c6a235f41e7fb2472d208e8a5ebf47 name: csi-driver-nfs @@ -12,7 +30,7 @@ entries: version: v4.2.0 - apiVersion: v1 appVersion: v4.1.0 - created: "2023-02-19T03:06:17.779230713Z" + created: "2023-05-29T07:03:28.294176013Z" description: CSI NFS Driver for Kubernetes digest: b2baa2f129976cf2981c8873290aac509aa3c5937ffc319fbf69fbe3271c23eb name: csi-driver-nfs @@ -21,7 +39,7 @@ entries: version: v4.1.0 - apiVersion: v1 appVersion: v4.0.0 - created: "2023-02-19T03:06:17.778817545Z" + created: "2023-05-29T07:03:28.293742076Z" description: CSI NFS Driver for Kubernetes digest: 3145fd12225a639908b14675c8ae1f272bc0e57ffa2895b6f17411486a24229d name: csi-driver-nfs @@ -30,7 +48,7 @@ entries: version: v4.0.0 - apiVersion: v1 appVersion: v3.1.0 - created: "2023-02-19T03:06:17.778410591Z" + created: "2023-05-29T07:03:28.293317486Z" description: CSI NFS Driver for Kubernetes digest: 7e51bb9188b013195cafc265102fa365de9ec5513780e1dfc5363289f811a4d9 name: csi-driver-nfs @@ -39,7 +57,7 @@ entries: version: v3.1.0 - apiVersion: v1 appVersion: v3.0.0 - created: "2023-02-19T03:06:17.778027388Z" + created: "2023-05-29T07:03:28.292906256Z" description: CSI NFS Driver for Kubernetes digest: 44406231cd5cdada1c62a0541b93b4f5d5a70ccc8c50b33553a8692fe6cfae96 name: csi-driver-nfs @@ -48,20 +66,11 @@ entries: version: v3.0.0 - apiVersion: v1 appVersion: v2.0.0 - created: "2023-02-19T03:06:17.777605366Z" + created: "2023-05-29T07:03:28.292501761Z" description: CSI NFS Driver for Kubernetes digest: 1a32c6fc016526fe19a0c9e0dfbe83d0ddde67ced533bb5f5d24d713f706c613 name: csi-driver-nfs urls: - https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts/v2.0.0/csi-driver-nfs-v2.0.0.tgz version: v2.0.0 - - apiVersion: v1 - appVersion: latest - created: "2023-02-19T03:06:17.777385954Z" - description: CSI NFS Driver for Kubernetes - digest: 16549e803dcdcf624e6dffeaff63cea7cfde0447651cc188060d5f2801f21c9f - name: csi-driver-nfs - urls: - - https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts/latest/csi-driver-nfs-v0.0.0.tgz - version: v0.0.0 -generated: "2023-02-19T03:06:17.776802428Z" +generated: "2023-05-29T07:03:28.291443041Z" diff --git a/charts/latest/csi-driver-nfs-v0.0.0.tgz b/charts/latest/csi-driver-nfs-v0.0.0.tgz deleted file mode 100644 index 1ed21a00a8d8a6c96cdfc82a8fca65e5b2f30355..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10682 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 diff --git a/charts/latest/csi-driver-nfs-v4.3.0.tgz b/charts/latest/csi-driver-nfs-v4.3.0.tgz new file mode 100644 index 0000000000000000000000000000000000000000..227d99724b57319fe75e4148d5195acae93a0689 GIT binary patch literal 10653 zcmV;ODPqDc zVQyr3R8em|NM&qo0PKBha~n67Xg>2-;8L>{JEJD4hm{@Pa!omslhK`6R*8zIrn0_X zu=|k2s2k`7(3Ba+x8{fJ{<--jxA5pE(R?-ave~sek=f{j1K{Aiao`K$1)NNQdvqka zrxVO&XNIHjo9#WlUaxm@e60W5>-DPt?H!yPesgeqeDtDs{QZIY{ouHFc<>GCZ4rms zClM0!Z+eaUst)dnJUAxrfD6KCA59NhIF9pw9(Rs9y;cCi=OmW;x6{Eny7+N`&NRuO z5##8u$q+aN38F=D1btK{sn)at@1aM$dx}qG|4(t4fY>qvShD|54v**d|KZ8;ZvWrM z<0nG0=x02HQ1sEK&n*(+G4xvqAw);Q{GlEWF%v{GKIIS|bmz+(BVjIBMM?uka zoCByJa@2XT1|kEBV=-Y;Zi;;?hj zTXjAt3&3#xE7Kd^a8eYYl}nY z%J*49rNYGLfF<;iqXT(=O46#Prz5fN%G$a(>u`p2`=&5M6ZjvE{AkPTzqwW;*Zb*h*`(vwBn2HRu`6+2>Ithu7 zMIRls5Kd1WXmY%6ugtXH@|I6KndAE-^NUXU(9*qbk za;C+KVIBhr!IzBNpCk)`W2tFD&y0s|VAe-%%^x@mp>vaImukO8dfwZ153*Q&t)R7E zegy&Z_30{VsaFs_}qycGQHT1tZ`{e*czgYN(2*Zy^FEgO|BjBouh{=DUL5sy z_Wyl6=z0QGuO1O-3{on-5I`KV83c-PXamDHQmfNyT{GlQz`v<}9kW0nA+b!vK8i!Y z0+fE-Z?zCo{KS_b@;tTQMT~uT`RNntT!C)axk!ISpFb-c3^30VR)D>1<2bHpQ-lhM zsRI!D{JD)h?-omc^3c=#XrJ2s|6u}Q3|w?%+|(7gWd9!=9##E+C&vdzyZwJ3&!uYk9OV}kF#p|b_$%60MPGB7ot8oInsZUXpoFXr%>O(Hl{4RF8pbW;aYo7yvJEyJ;^A5a5`2 zIF31+LQrOoebi2E*)frmWZ3apR4{85iFeaM7h^TrlI@6uYT4-Ncb# zq)=G!MKr9beL#Mz5^?qSWtd-AmZq{2Ar>NaWW;`x}_pR?8^j);j9o< z)(b6+4@5N?GC8TBfRwr9#$Pf7R3tnP$LsGg2NW}6HUgFius=aePJnmN4;Gg`ZO9TDII*l>%eA&nCN_=FSuK?wqerMGNd#r~C-Du? zlnfIZ01szHMq-5}5;GwosvlNSXqN_YI{(6qATSYLg?|BDs;hM7w15)SSK}IBRz)~4 z;?w4SThE1q61+ z3^UM*fn~#bDN2Bm9uH0FT_-jG7fRPj!a#|tDR3ogd^V=!w+yys393_V_{a)Ot;bLt zn#kV1-qI1CAr6|WB(wm}X3wEFN=+ej#PUeWn8;K;_E{7ql*pM01e0MR85i9ErV#3k z6wLhzk>JaOLs#jx8g;5w$u1C8O137!jFKy3lOLj(Jt3Nis=rpI#ZsD@ z93|(3k{(+9&&5SGSBkT!GY1r*YfW?nLQUu-iV~@V^>`#Rj>%{zAIBVw`l0Bzb?UdP zab=XX-xda5QLddp5xR6is@1Tq!kSwmHBbxFZ5e4k;TQ))1^ERDpaJhakzi@R+WKGK&xMtn-vN0OY?AqaqDxe51KZ;Q7 zyasH;#WXL?OwGMy6yA>J*VN1G!#?`8UAyz!@0Wa8OA2#e));6@IPbR(6H!wdnK$$u zO&ycD%)WGi(LE~7Vd!EbA&exVBvhN2SXYv<;fw$^p{BBxn^R#T+#CKC8j~r|G|a8L zpWrE=C7#B;0?_~_j>}%Jyz~z4TDl~fW)s>H!gdi0J!q}H1XQo;5P+fx^P4#x%AlQ&bKe+^`5I}AN0@{f@)#&+M~`BX zN>S{f*HJ88D`$0VVpbT3A-lCn-ZEoY6*USiVnrESDE;bL<;kI(&T%YbE-z3|O@o47 zZ?yG=92VS*j@p?OXjRr-Ol1`=UCEwjwd9D=-6i?ON$#c6v8HLoJ^eGp=l zgy`9DrmPtfV5|0Ext^P*(u=WGN^Y6wXb2-kScx!Q%sE`_r?m>?V)x53PQCc+6&SX2 zp!t**J#0j{RWzq-?R?~bnR7J)!9F4~W8EU>-R?dnSZ^5zP`!!sRS#!oN{#Dcp@K65 z*+Ca?uV1^^_BBIz%1D4>CInIDf&f3^M9vTqA_1|F{6!?~#B@C(cayaP@U{sZtxfD} zu&i=CZ3%%Fo2Jw(m-rK1Y`5S&t8p+^9gFCkqF_dGM0_NwKIQqbARi0ZFL3cps*Ok( zLZI|h+h>N1uHF~wEYnNqI+W~WYb$N<>9EKhAqZX7- z&)$MjG{sZeY{T}?M936Vu@KeNS}<7(NF;I0xY`p^s|xch#W63|dx(YN1OoUJ0{bdRcyYzDvFtkrOhyRP zS;-vpQ$2VBVXP#jWGIQ1avH)E!UAE6XQTri7g!wY+;cF#8UMFhT3=@h3 zP(dV_LQ(s4h#<7wBO{$6Xl}yfV)0{^^%jfbw7H!M%X!CAtQWW*^2~=N942pAP{CG6 z#BfcaBQ?V%JnKc}f~~NM@GOWRjqV4@J|qHMQe{=yxmZ#zP%sv005xbDq@0{<1<|=w zP`V_7+&2o{EveC2ggI>7zUB$E9dgzQ6h(k-Du@~&p&+Uui$zj(J{zYv6eGp}7p7s=~Yu=G-hsptfai?=#SLqu3FjP^U3 zol(u-sh~>qE-9$A*-kBdZ}@2Dg-Um*i!m)TxAg!P?aLTT37q!P|9$o!fBfBh{^w`U ze(iaGdjH2~|IyKZeE0m%&wo$<@yF-SpFR8auWx?3zI^?jJpcVynnX9|U%x;56<)tz z5yZY>z828M+&yG(PR>vhK=lx}#o}yOmS4QtHz_)f{@t0&+IV+pF z)y#?8U23E|OYo~qiTvtQA$KW|_ml#;)zruBr95sk)$vP8aeT6=jYE*whipp`(>6p1;oJzGF4*l7IUiOYG&@W%;pMo z%&4&9Fb7@`-4b*I8-;MObfvbZkXD%iR%1|7PIyQM=~IM>hpC zpX-@p{l9gYr+NsLkB#~Ja0#bhP@3s>5=(cfr1hz!TS^|?rHihTE_x3MqK_*j^h-+s zZJO%YFsZX)`ex%q&8M4^xrOA*=4qCV6Dsd8b@D;-6`N)!ZX*}5dFEl`Jj140gUwBsAR&v;yXRI~PPuoH^+BR~}9(Sf$lbo_$_Sj?29@|2$*j6&b z9!5$mN1=g`XqwUWh39W=BU@{0wAe5ct2re$&a&E4PF2$ks;2o;yX>fKWk;pgofOie z3O_B*kIKCe*!Llp5L{I2-?dFNGc9SS|LHSoa;i)fdDAll@6wWV>c?HZ!sYb}ed9p9 z^Qwh;_DfyqLfv9X{X&bap({rfLqF>!`xh)OZJ2&x>l@m8Io2+2Sjej|T(OixaaR0k zSvJWTNZ^qU@1+(=owp=4Ipl=1WL!?Gb$LN^x3jsg$KC@$q_CbDR|bM^=txJ=ZwRC2 zhLrMnU9TMDe!PXY?0jW`oEUQ)sfDr90XsY&Mc1nKfhet4m?FP|%Gy;0Eo+q8Hcq#7%1w>a zK%jUs6U4`1-N9c*>)oCjw;PCMCqrtb&MRHiqO!d63d2qxcX9*JB&r6G4BC|+uhM(n zmJ?)l5nvr5X7`NDC4}42*cN)mCYT1HW*c)Q=Nwd5m&CEFj`vv8opQliUWlT?Rp*SX zbsdybY;w`9m+}T?o>|8T$HpwK5MC;dE8P_UjaVV|F)#g%t|uU%$fj6~|0~fKauu>E zHZ#SX`j&oC)GoJhhGo@LE00F!{aSV1UFP-OWL_HrYLb4fA#5uLdlOq^n-<8{?T*K3 zZS3;A(>c9si{d_b_&Qd@w(NvEu?)6h3w#mU|D)FTcSjhWh))0HwfNOzExYK-!$(&P z55I@-O2Lg(8(=YQmW5a>%Jngp{I4aUl?eL-ZI1IQ$?H|Od78^^$!fJB zUBO7-uexAFYYfI5hif{bW+Tx!EEvv3rOnfd$=VsJei7@rQ#7l4$&ksty1xR`fb){5J$6~9 zH!cv8p6DvM37#>YTc*z)2-j?5#Q0p9p4F^;9c~;w9R2Nx! z!i&va({0|{$*y4tdACa|z7%QPoawE*K@n~BBE05zr z^RIvY&&mb4%h@27IU3}?6$azN*_QGOyC7z3ULgid5f0-Cwlyr)Ve6Y!d|6h}rLLN+ zV^FpAWzj`e8`E&$Obie@-mmN0(Stpin(FBK6mS~<*2-BxMkCM_H3aB#c}68Sk_Ed! zio~Dn7Z0}%m4wzne9(mwq&I&mc=L6+0>_qIPz&h_Miu_$bceYVg$*2J)p|XH82rw% za-YS=5OQQ>xSho;=gA4^Tbub}PlCIwG7=CDzKLoS3mp!@RFQC=<6BSF-8V?+LRqW% zAM3R~P2GVlNK-&}g5wxg*G?ReH`Q0_oNeh-qQ6&{=hZYfyOd6AajE3iBh_Be<$Zs9 zJ~Ey0yp|;avlN-{4iPFO;9!B8L=jL)IAp79c$e{D70MA{oo}Uy2>qYI+l%f`tOlf6 zFRaS|=p%O!0hRljf0&9!x^mz^z3D`lk`V~mv3&p+zaGA?QwJ3B!bcp%A?&AtxJ(60 z_Ye_gIx>iw;W-Q{I|C?YY0>aoJzOOom7a*L2QMTy&_`|U0MF6%tH9JTp}S z+p1C9AeXsEi-IIa(l`$|8IQqz_XDzKlCJOcT(NYbBys@+wZ(ce5j}_WuZQnzF)q)S zlH>3Z9U2pz2sKO3?T!>PD)C3vldrUmx|!95-t=ysDn&pkClH2SYWv^fnVN-k;cPiq z%;iFA%}V^eJ$u_Xm??r9)3nCbh$!A?3VtnCEs$}GrZEzKg6TM`H#kaU!eO%#4fCGj z^l^BMtBm8pe6A}Fj;>ax@Y`afZQx%f*WQieHrWmR#`{&K8 z<&MzK16>JRul#-G_k*4e&WnzG7rJw<{oNg*Yt>H693wUE?{XEjvX2C86{akFpSwZO zFO+&qm8!>HE0nX(vZ(bA5sVS~nC2q0yWNR1pQEx59YFRvg zQ7oU-2k{F$!!?sjvr9Ic#`--zQNrECMb$c)2%24UN!&NSQl+qsIS8>v&}(;L=jkNL#Qt}@FVRc5gy)2KF!fw8sfENh-hdO~NBb`?>~ zvnw0%w9gbh32Ev zyPWx5&iv!M|9iQM?5n*4yc|?)lC|DAN4;rA`V-AR|KhUEceihUnHl7FdiVC4+2OnU zw;$8}+gr)uZkn;ZmHh18J=#z99_=TZA>BA1x@q?Fq}P9c`s5*?0rEb7Zhf-A2KkM)0hyTQ3x^G_lq=HK)h_f;L-6L~z(v)8knK^(GK1XNb;bcscG zdQiHg#pJkt`h+^~OtM~qNVHe|^XFF44XK-6K?qntCwDl0{@nWX2@&dtNdTx#N1_wr zA%vohI_P)pXr~e#s&;8&7>76{J{EPor|%600z&X*YWzi5`jek^2PqfAalCvSLUJr& zY*V}p3v_>zw!EIj_SS0H1>tIrQoq zjh$qF$5B}Sb%y4@=YUdfoBc3hLSBHpW&FmZ7bCP+xX=gTP%uOR0v*wworn*wd~MfVRH?T7x&X^ire_pAM^|{H?=C9zl>SnhyUHZZ zO%G)O3`!)bC0@zf%0wT9geG}afy%lTi9exl=^HF0@B-jpqkC1rmv5bo~8c3Bba|vT^Gf09Zb(T<#E=wC^yoqnKz2V z%`JfDxaQo8!l8np!Cv77(#sh!Dg@)S9QLZhq9l)P!wS0ScSJ2U9~_nuuHAUZ`pDkW zaCXI*%q!#;&aR+&rj=gkHpqPm9iVuqY^g%e#l7OLzO!hr6oD__E5+8U?v*WXmd&=p zf*tn&^k1CDP3V6Cg{!A-d(5%k99BrCKtTw_ZA(=MYH26^;!=IEjC9J4SEHOViPX)v zX{oW+o^6)Mmq%i*!31z9Ctl3BeCbxh$|#!lmyFBusu*a~mxpUDc^URSuJ}eAuY~QL zGQ4zLbRhTxI$Vu&^6ize;<5!b@t}` zqEet8hatPYOo6`^J`S-B>{NSMX|h%!G&TG>@~Y*|HT!{$e}*Z9ZhopXS`xhc!?TOG zXRkk;pSc)!dfMydAD*2K&Of}qIJd}~vjWyobbO}C-iv`pL}=%k z<7=}u@+NLbX%>iq7!Y1FE4H29q-TV?f!QOc9-}5L*^BjZ)PS_D-%@jwBwM?Y0t$ab&JS^l8^mvw~lk`fI)RsnK7VPZ=J=w zDyvRaLDS;5%Db2|$$S>}(e>$N;av%O8NU%GVZz~h!a+<}81&JL())>&@lPPDa~m7R zT!V%lsOz1+W*CQO5aQXuBp>wAQ8|!cMPBy$p!_-pPFUdnc)7TVSs?NqQ7>`|tEBAa z5bW0IDge&UIE(Sva>Moy#ia1+cG_6guYA1fc6N3kqqw;tK}VuSnA*FC=gr^R1(+}) z=d-utHCMyf{bzde8K2E{@0?eNVmUh_+!lN(e=$E%rRH1o|1S0ao0o)+*d6)*d%YLE zUe*79d~&e!|KG<`y~2I2bV7Q0`{3MGWmy;qD61No+a61a{mE5!BTpI|G&}ZZG6H|* zhx$65tiaKwLP^-`FDfSe2(Zp$H)i}f4GFb3@>pizq1W*QBH-GeSM+Nxg!JR!C(e@C z=nlI1NECkQBc)ZA06z5kHGP)uf2F)^yz|YoB>s1B(yPS(4!%D;{(iUr@8c=N|1d<1 z4q$`upQe$!4g8t<6@yYJPN@cjj(^dwQV|~EkH1hn#UxZ4dLGU4`&4kQ}cR zK~f(Y{rW2XY^jUZ@yR?9F7U#@$7-=9l%D8tRcJ99;gSL7L}hK}td)*ADa-ohAD*3E zoxgj1_2KIEPag(vPyhPi^40ZU=C5T{P$Cwp5D;U^J3|SE$@zXH*u3`sP$I5 zK6LvI>zx?7v`nVvn}5~~!}R*sUw(M~K|4w>UcGsJZ?4i6y!DQqaIah`|G2cwi$N5d zZpz^tBd_Ii?jX^Z6w=vhtV=Niv@FhJMD5oR;n~Gb*3+zZQIkbclV&m4JLcjK9k5wX z2CN?saZb)=u@ILUu_!q5mYeffk0(acWZWOD5TC8o7phYd9?<`{(EppJ!8JStvLya< zd^~slCv9S8b|b-vZdT9wF-G-CxMB2?c^Q+Dx)l>$eDgexnuR})G)SP&|z z3-uUCVQJacUAS_5XUUhT#Q03vkG(gf;{GwW8O-^q<3u%&Y5*OU;Vd^cU9(&^ zKEKeTEi?*B15H_C@!+UF)VuPacoG`^?;#u$oku77=-0N51{AzpzqaEn+s}Hf zY@;dgp>8k++1^L(kO=+XTcr)FKg_hKzsw;4{oMu~`XMIK%DtL&Bv)VM1WH%WwuP@$ zsTIfhem-$=>8ZvlUhd1WTnO3~upgv&?xV_!)luIXDyC%lx~sI0+VP#?(lzC4YEW`v zP*Octpj2JKdV~G2%IKF4+80D|yp7k|1+x)ApD`W~TI6f4J~S`Bn@Mx-X_Fr3>hFEQ zV^d(+KbT7Scfq+Ur~N%!lz;V{OH)1EvTmo$L}(M~zM9NbGR8&+=LOy7QVV6PxL~5c zR5ic$S*-tWCjhWS|9|oQ_eWL#|M!Qzo&J9x&)WX~s~=vS8rOg7n|62^Nd2l4g0MctNU+=5|vJfRf$BeF~$*a}%)k8G$wHnl1qiwTjBdbu%S4b6uzE4JU^ zqcEoGhCAQq>hkI=<@gX}Zxv%+)$CfwN-3Ch_n_=AWQ6NDXx38n*9d~#g_gep_g_uJ zFRai#2`3XtNdqZc7P)nzY#VlRw)azd&pBVdGcD(QU!BbyL$A?FUJNxfGo;`Gl6n|-~B&r#&NTw00960{h77e08Rk_ D?PR`{ literal 0 HcmV?d00001 diff --git a/charts/latest/csi-driver-nfs/Chart.yaml b/charts/latest/csi-driver-nfs/Chart.yaml index c73b9f8ef..0a0991c97 100755 --- a/charts/latest/csi-driver-nfs/Chart.yaml +++ b/charts/latest/csi-driver-nfs/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v1 -appVersion: latest +appVersion: v4.3.0 description: CSI NFS Driver for Kubernetes name: csi-driver-nfs -version: v0.0.0 +version: v4.3.0 diff --git a/charts/latest/csi-driver-nfs/values.yaml b/charts/latest/csi-driver-nfs/values.yaml index 1fe58710a..187a726e3 100755 --- a/charts/latest/csi-driver-nfs/values.yaml +++ b/charts/latest/csi-driver-nfs/values.yaml @@ -1,8 +1,8 @@ customLabels: {} image: nfs: - repository: gcr.io/k8s-staging-sig-storage/nfsplugin - tag: canary + repository: registry.k8s.io/sig-storage/nfsplugin + tag: v4.3.0 pullPolicy: IfNotPresent csiProvisioner: repository: registry.k8s.io/sig-storage/csi-provisioner diff --git a/charts/v4.3.0/csi-driver-nfs-v4.3.0.tgz b/charts/v4.3.0/csi-driver-nfs-v4.3.0.tgz new file mode 100644 index 0000000000000000000000000000000000000000..227d99724b57319fe75e4148d5195acae93a0689 GIT binary patch literal 10653 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 D?PR`{ literal 0 HcmV?d00001 diff --git a/charts/v4.3.0/csi-driver-nfs/.helmignore b/charts/v4.3.0/csi-driver-nfs/.helmignore new file mode 100644 index 000000000..50af03172 --- /dev/null +++ b/charts/v4.3.0/csi-driver-nfs/.helmignore @@ -0,0 +1,22 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/charts/v4.3.0/csi-driver-nfs/Chart.yaml b/charts/v4.3.0/csi-driver-nfs/Chart.yaml new file mode 100644 index 000000000..0a0991c97 --- /dev/null +++ b/charts/v4.3.0/csi-driver-nfs/Chart.yaml @@ -0,0 +1,5 @@ +apiVersion: v1 +appVersion: v4.3.0 +description: CSI NFS Driver for Kubernetes +name: csi-driver-nfs +version: v4.3.0 diff --git a/charts/v4.3.0/csi-driver-nfs/templates/NOTES.txt b/charts/v4.3.0/csi-driver-nfs/templates/NOTES.txt new file mode 100644 index 000000000..cecf3b9ef --- /dev/null +++ b/charts/v4.3.0/csi-driver-nfs/templates/NOTES.txt @@ -0,0 +1,5 @@ + The CSI NFS Driver is getting deployed to your cluster. + +To check CSI NFS Driver pods status, please run: + + kubectl --namespace={{ .Release.Namespace }} get pods --selector="app.kubernetes.io/instance={{ .Release.Name }}" --watch \ No newline at end of file diff --git a/charts/v4.3.0/csi-driver-nfs/templates/_helpers.tpl b/charts/v4.3.0/csi-driver-nfs/templates/_helpers.tpl new file mode 100644 index 000000000..901a53f19 --- /dev/null +++ b/charts/v4.3.0/csi-driver-nfs/templates/_helpers.tpl @@ -0,0 +1,19 @@ +{{/* vim: set filetype=mustache: */}} + +{{/* Expand the name of the chart.*/}} +{{- define "nfs.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{/* labels for helm resources */}} +{{- define "nfs.labels" -}} +labels: + app.kubernetes.io/instance: "{{ .Release.Name }}" + app.kubernetes.io/managed-by: "{{ .Release.Service }}" + app.kubernetes.io/name: "{{ template "nfs.name" . }}" + app.kubernetes.io/version: "{{ .Chart.AppVersion }}" + helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" + {{- if .Values.customLabels }} +{{ toYaml .Values.customLabels | indent 2 -}} + {{- end }} +{{- end -}} diff --git a/charts/v4.3.0/csi-driver-nfs/templates/crd-csi-snapshot.yaml b/charts/v4.3.0/csi-driver-nfs/templates/crd-csi-snapshot.yaml new file mode 100644 index 000000000..8b34e09ad --- /dev/null +++ b/charts/v4.3.0/csi-driver-nfs/templates/crd-csi-snapshot.yaml @@ -0,0 +1,840 @@ +{{- if .Values.externalSnapshotter.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/v4.3.0/csi-driver-nfs/templates/csi-nfs-controller.yaml b/charts/v4.3.0/csi-driver-nfs/templates/csi-nfs-controller.yaml new file mode 100644 index 000000000..c433b5423 --- /dev/null +++ b/charts/v4.3.0/csi-driver-nfs/templates/csi-nfs-controller.yaml @@ -0,0 +1,152 @@ +--- +kind: Deployment +apiVersion: apps/v1 +metadata: + name: {{ .Values.controller.name }} + namespace: {{ .Release.Namespace }} +{{ include "nfs.labels" . | indent 2 }} +spec: + replicas: {{ .Values.controller.replicas }} + selector: + matchLabels: + app: {{ .Values.controller.name }} + strategy: + type: {{ .Values.controller.strategyType }} + template: + metadata: +{{ include "nfs.labels" . | indent 6 }} + app: {{ .Values.controller.name }} + spec: + {{- if .Values.imagePullSecrets }} + imagePullSecrets: +{{ toYaml .Values.imagePullSecrets | indent 8 }} + {{- end }} + hostNetwork: true # controller also needs to mount nfs to create dir + dnsPolicy: {{ .Values.controller.dnsPolicy }} + serviceAccountName: {{ .Values.serviceAccount.controller }} +{{- with .Values.controller.affinity }} + affinity: +{{ toYaml . | indent 8 }} +{{- end }} + nodeSelector: + kubernetes.io/os: linux + {{- if .Values.controller.runOnMaster}} + node-role.kubernetes.io/master: "" + {{- end}} + {{- if .Values.controller.runOnControlPlane}} + node-role.kubernetes.io/control-plane: "" + {{- end}} +{{- with .Values.controller.nodeSelector }} +{{ toYaml . | indent 8 }} +{{- end }} + priorityClassName: system-cluster-critical + securityContext: + seccompProfile: + type: RuntimeDefault +{{- with .Values.controller.tolerations }} + tolerations: +{{ toYaml . | indent 8 }} +{{- end }} + containers: + - name: csi-provisioner + image: "{{ .Values.image.csiProvisioner.repository }}:{{ .Values.image.csiProvisioner.tag }}" + args: + - "-v=2" + - "--csi-address=$(ADDRESS)" + - "--leader-election" + - "--leader-election-namespace={{ .Release.Namespace }}" + - "--extra-create-metadata=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 }} + securityContext: + readOnlyRootFilesystem: true + {{- if .Values.externalSnapshotter.enabled }} + - name: csi-snapshotter + image: "{{ .Values.image.csiSnapshotter.repository }}:{{ .Values.image.csiSnapshotter.tag }}" + args: + - "--v=2" + - "--csi-address=$(ADDRESS)" + - "--leader-election-namespace={{ .Release.Namespace }}" + - "--leader-election" + env: + - name: ADDRESS + value: /csi/csi.sock + imagePullPolicy: {{ .Values.image.csiSnapshotter.pullPolicy }} + volumeMounts: + - name: socket-dir + mountPath: /csi + {{- end }} + - name: liveness-probe + image: "{{ .Values.image.livenessProbe.repository }}:{{ .Values.image.livenessProbe.tag }}" + args: + - --csi-address=/csi/csi.sock + - --probe-timeout=3s + - --health-port={{ .Values.controller.livenessProbe.healthPort }} + - --v=2 + imagePullPolicy: {{ .Values.image.livenessProbe.pullPolicy }} + volumeMounts: + - name: socket-dir + mountPath: /csi + resources: {{- toYaml .Values.controller.resources.livenessProbe | nindent 12 }} + securityContext: + readOnlyRootFilesystem: true + - name: nfs + image: "{{ .Values.image.nfs.repository }}:{{ .Values.image.nfs.tag }}" + securityContext: + privileged: true + capabilities: + add: ["SYS_ADMIN"] + allowPrivilegeEscalation: true + readOnlyRootFilesystem: true + imagePullPolicy: {{ .Values.image.nfs.pullPolicy }} + args: + - "--v={{ .Values.controller.logLevel }}" + - "--nodeid=$(NODE_ID)" + - "--endpoint=$(CSI_ENDPOINT)" + - "--drivername={{ .Values.driver.name }}" + - "--mount-permissions={{ .Values.driver.mountPermissions }}" + - "--working-mount-dir={{ .Values.controller.workingMountDir }}" + - "--default-ondelete-policy={{ .Values.controller.defaultOnDeletePolicy }}" + env: + - name: NODE_ID + valueFrom: + fieldRef: + fieldPath: spec.nodeName + - name: CSI_ENDPOINT + value: unix:///csi/csi.sock + ports: + - containerPort: {{ .Values.controller.livenessProbe.healthPort }} + name: healthz + protocol: TCP + livenessProbe: + failureThreshold: 5 + httpGet: + path: /healthz + port: healthz + initialDelaySeconds: 30 + timeoutSeconds: 10 + periodSeconds: 30 + volumeMounts: + - name: pods-mount-dir + mountPath: {{ .Values.kubeletDir }}/pods + mountPropagation: "Bidirectional" + - mountPath: /csi + name: socket-dir + - mountPath: {{ .Values.controller.workingMountDir }} + name: tmp-dir + resources: {{- toYaml .Values.controller.resources.nfs | nindent 12 }} + volumes: + - name: pods-mount-dir + hostPath: + path: {{ .Values.kubeletDir }}/pods + type: Directory + - name: socket-dir + emptyDir: {} + - name: tmp-dir + emptyDir: {} diff --git a/charts/v4.3.0/csi-driver-nfs/templates/csi-nfs-driverinfo.yaml b/charts/v4.3.0/csi-driver-nfs/templates/csi-nfs-driverinfo.yaml new file mode 100644 index 000000000..a6afd8960 --- /dev/null +++ b/charts/v4.3.0/csi-driver-nfs/templates/csi-nfs-driverinfo.yaml @@ -0,0 +1,15 @@ +--- +apiVersion: storage.k8s.io/v1 +kind: CSIDriver +metadata: + name: {{ .Values.driver.name }} +spec: + attachRequired: false + volumeLifecycleModes: + - Persistent + {{- if .Values.feature.enableInlineVolume}} + - Ephemeral + {{- end}} + {{- if .Values.feature.enableFSGroupPolicy}} + fsGroupPolicy: File + {{- end}} diff --git a/charts/v4.3.0/csi-driver-nfs/templates/csi-nfs-node.yaml b/charts/v4.3.0/csi-driver-nfs/templates/csi-nfs-node.yaml new file mode 100644 index 000000000..651b3f85e --- /dev/null +++ b/charts/v4.3.0/csi-driver-nfs/templates/csi-nfs-node.yaml @@ -0,0 +1,141 @@ +--- +kind: DaemonSet +apiVersion: apps/v1 +metadata: + name: {{ .Values.node.name }} + namespace: {{ .Release.Namespace }} +{{ include "nfs.labels" . | indent 2 }} +spec: + updateStrategy: + rollingUpdate: + maxUnavailable: {{ .Values.node.maxUnavailable }} + type: RollingUpdate + selector: + matchLabels: + app: {{ .Values.node.name }} + template: + metadata: +{{ include "nfs.labels" . | indent 6 }} + app: {{ .Values.node.name }} + spec: + {{- if .Values.imagePullSecrets }} + imagePullSecrets: +{{ toYaml .Values.imagePullSecrets | indent 8 }} + {{- end }} + hostNetwork: true # original nfs connection would be broken without hostNetwork setting + dnsPolicy: {{ .Values.controller.dnsPolicy }} + serviceAccountName: csi-nfs-node-sa + priorityClassName: system-node-critical + securityContext: + seccompProfile: + type: RuntimeDefault +{{- with .Values.node.affinity }} + affinity: +{{ toYaml . | indent 8 }} +{{- end }} + nodeSelector: + kubernetes.io/os: linux +{{- with .Values.node.nodeSelector }} +{{ toYaml . | indent 8 }} +{{- end }} +{{- with .Values.node.tolerations }} + tolerations: +{{ toYaml . | indent 8 }} +{{- end }} + containers: + - name: liveness-probe + image: "{{ .Values.image.livenessProbe.repository }}:{{ .Values.image.livenessProbe.tag }}" + args: + - --csi-address=/csi/csi.sock + - --probe-timeout=3s + - --health-port={{ .Values.node.livenessProbe.healthPort }} + - --v=2 + imagePullPolicy: {{ .Values.image.livenessProbe.pullPolicy }} + volumeMounts: + - name: socket-dir + mountPath: /csi + resources: {{- toYaml .Values.node.resources.livenessProbe | nindent 12 }} + securityContext: + readOnlyRootFilesystem: true + - name: node-driver-registrar + image: "{{ .Values.image.nodeDriverRegistrar.repository }}:{{ .Values.image.nodeDriverRegistrar.tag }}" + livenessProbe: + exec: + command: + - /csi-node-driver-registrar + - --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH) + - --mode=kubelet-registration-probe + initialDelaySeconds: 30 + timeoutSeconds: 15 + args: + - --v=2 + - --csi-address=/csi/csi.sock + - --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH) + env: + - name: DRIVER_REG_SOCK_PATH + value: {{ .Values.kubeletDir }}/plugins/csi-nfsplugin/csi.sock + - name: KUBE_NODE_NAME + valueFrom: + fieldRef: + fieldPath: spec.nodeName + imagePullPolicy: {{ .Values.image.nodeDriverRegistrar.pullPolicy }} + volumeMounts: + - name: socket-dir + mountPath: /csi + - name: registration-dir + mountPath: /registration + resources: {{- toYaml .Values.node.resources.nodeDriverRegistrar | nindent 12 }} + - name: nfs + securityContext: + privileged: true + capabilities: + add: ["SYS_ADMIN"] + allowPrivilegeEscalation: true + readOnlyRootFilesystem: true + image: "{{ .Values.image.nfs.repository }}:{{ .Values.image.nfs.tag }}" + args : + - "--v={{ .Values.node.logLevel }}" + - "--nodeid=$(NODE_ID)" + - "--endpoint=$(CSI_ENDPOINT)" + - "--drivername={{ .Values.driver.name }}" + - "--mount-permissions={{ .Values.driver.mountPermissions }}" + env: + - name: NODE_ID + valueFrom: + fieldRef: + fieldPath: spec.nodeName + - name: CSI_ENDPOINT + value: unix:///csi/csi.sock + ports: + - containerPort: {{ .Values.node.livenessProbe.healthPort }} + name: healthz + protocol: TCP + livenessProbe: + failureThreshold: 5 + httpGet: + path: /healthz + port: healthz + initialDelaySeconds: 30 + timeoutSeconds: 10 + periodSeconds: 30 + imagePullPolicy: {{ .Values.image.nfs.pullPolicy }} + volumeMounts: + - name: socket-dir + mountPath: /csi + - name: pods-mount-dir + mountPath: {{ .Values.kubeletDir }}/pods + mountPropagation: "Bidirectional" + resources: {{- toYaml .Values.node.resources.nfs | nindent 12 }} + volumes: + - name: socket-dir + hostPath: + path: {{ .Values.kubeletDir }}/plugins/csi-nfsplugin + type: DirectoryOrCreate + - name: pods-mount-dir + hostPath: + path: {{ .Values.kubeletDir }}/pods + type: Directory + - hostPath: + path: {{ .Values.kubeletDir }}/plugins_registry + type: Directory + name: registration-dir diff --git a/charts/v4.3.0/csi-driver-nfs/templates/csi-snapshot-controller.yaml b/charts/v4.3.0/csi-driver-nfs/templates/csi-snapshot-controller.yaml new file mode 100644 index 000000000..07d0154c4 --- /dev/null +++ b/charts/v4.3.0/csi-driver-nfs/templates/csi-snapshot-controller.yaml @@ -0,0 +1,67 @@ +{{- if .Values.externalSnapshotter.enabled -}} +# This YAML file shows how to deploy the snapshot controller + +# The snapshot controller implements the control loop for CSI snapshot functionality. +# It should be installed as part of the base Kubernetes distribution in an appropriate +# namespace for components implementing base system functionality. For installing with +# Vanilla Kubernetes, kube-system makes sense for the namespace. +--- +kind: Deployment +apiVersion: apps/v1 +metadata: + name: {{ .Values.externalSnapshotter.name }} + namespace: {{ .Release.Namespace }} +{{ include "nfs.labels" . | indent 2 }} + app: {{ .Values.externalSnapshotter.name }} +{{- with .Values.externalSnapshotter.labels }} +{{ . | toYaml | indent 4 }} +{{- end }} +{{- with .Values.externalSnapshotter.annotations }} + annotations: +{{ . | toYaml | indent 4 }} +{{- end }} +spec: + replicas: {{ .Values.externalSnapshotter.controller.replicas }} + selector: + matchLabels: + app: {{ .Values.externalSnapshotter.name }} + # the snapshot controller won't be marked as ready if the v1 CRDs are unavailable + # in #504 the snapshot-controller will exit after around 7.5 seconds if it + # can't find the v1 CRDs so this value should be greater than that + minReadySeconds: 15 + strategy: + rollingUpdate: + maxSurge: 0 + maxUnavailable: 1 + type: RollingUpdate + template: + metadata: + labels: + app: {{ .Values.externalSnapshotter.name }} + spec: + serviceAccountName: {{ .Values.externalSnapshotter.name }} + nodeSelector: + kubernetes.io/os: linux + priorityClassName: system-cluster-critical + securityContext: + seccompProfile: + type: RuntimeDefault +{{- with .Values.controller.tolerations }} + tolerations: +{{ toYaml . | indent 8 }} +{{- end }} + containers: + - name: {{ .Values.externalSnapshotter.name }} + image: {{ .Values.image.externalSnapshotter.repository }}:{{ .Values.image.externalSnapshotter.tag }} + args: + - "--v=2" + - "--leader-election=true" + - "--leader-election-namespace={{ .Release.Namespace }}" + resources: + limits: + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi + imagePullPolicy: {{ .Values.image.externalSnapshotter.pullPolicy }} +{{- end -}} diff --git a/charts/v4.3.0/csi-driver-nfs/templates/rbac-csi-nfs.yaml b/charts/v4.3.0/csi-driver-nfs/templates/rbac-csi-nfs.yaml new file mode 100644 index 000000000..66c76ff72 --- /dev/null +++ b/charts/v4.3.0/csi-driver-nfs/templates/rbac-csi-nfs.yaml @@ -0,0 +1,75 @@ +{{- if .Values.serviceAccount.create -}} +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: csi-{{ .Values.rbac.name }}-controller-sa + namespace: {{ .Release.Namespace }} +{{ include "nfs.labels" . | indent 2 }} +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: csi-{{ .Values.rbac.name }}-node-sa + namespace: {{ .Release.Namespace }} +{{ include "nfs.labels" . | indent 2 }} +--- +{{- end }} + +{{ if .Values.rbac.create -}} +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: {{ .Values.rbac.name }}-external-provisioner-role +{{ include "nfs.labels" . | indent 2 }} +rules: + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch", "create", "delete"] + - apiGroups: [""] + resources: ["persistentvolumeclaims"] + verbs: ["get", "list", "watch", "update"] + - apiGroups: ["storage.k8s.io"] + resources: ["storageclasses"] + verbs: ["get", "list", "watch"] + {{- if .Values.externalSnapshotter.enabled }} + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotclasses", "volumesnapshots"] + verbs: ["get", "list", "watch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents"] + verbs: ["get", "list", "watch", "update", "patch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents/status"] + verbs: ["get", "update", "patch"] + {{- end }} + - 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: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "list", "watch", "create", "update", "patch"] + - apiGroups: [""] + resources: ["secrets"] + verbs: ["get"] +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: {{ .Values.rbac.name }}-csi-provisioner-binding +{{ include "nfs.labels" . | indent 2 }} +subjects: + - kind: ServiceAccount + name: csi-{{ .Values.rbac.name }}-controller-sa + namespace: {{ .Release.Namespace }} +roleRef: + kind: ClusterRole + name: {{ .Values.rbac.name }}-external-provisioner-role + apiGroup: rbac.authorization.k8s.io +{{- end -}} diff --git a/charts/v4.3.0/csi-driver-nfs/templates/rbac-snapshot-controller.yaml b/charts/v4.3.0/csi-driver-nfs/templates/rbac-snapshot-controller.yaml new file mode 100644 index 000000000..f4fb5181b --- /dev/null +++ b/charts/v4.3.0/csi-driver-nfs/templates/rbac-snapshot-controller.yaml @@ -0,0 +1,93 @@ +{{- if .Values.externalSnapshotter.enabled -}} +# RBAC file for the snapshot controller. +# +# The snapshot controller implements the control loop for CSI snapshot functionality. +# It should be installed as part of the base Kubernetes distribution in an appropriate +# namespace for components implementing base system functionality. For installing with +# Vanilla Kubernetes, kube-system makes sense for the namespace. +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ .Values.externalSnapshotter.name }} + namespace: {{ .Release.Namespace }} +{{ include "nfs.labels" . | indent 2 }} + +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: {{ .Values.externalSnapshotter.name }}-runner +{{ include "nfs.labels" . | indent 2 }} +rules: + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["persistentvolumeclaims"] + verbs: ["get", "list", "watch", "update"] + - 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"] +{{- if .Values.externalSnapshotter.enabledDistributedSnapshotting }} + - apiGroups: [""] + resources: ["nodes"] + verbs: ["get", "list", "watch"] +{{- end }} +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: {{ .Values.externalSnapshotter.name }}-role +{{ include "nfs.labels" . | indent 2 }} +subjects: + - kind: ServiceAccount + name: {{ .Values.externalSnapshotter.name }} + namespace: {{ .Release.Namespace }} +roleRef: + kind: ClusterRole + name: {{ .Values.externalSnapshotter.name }}-runner + apiGroup: rbac.authorization.k8s.io + +--- +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: {{ .Values.externalSnapshotter.name }}-leaderelection + namespace: {{ .Release.Namespace }} +{{ include "nfs.labels" . | indent 2 }} +rules: + - apiGroups: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "watch", "list", "delete", "update", "create"] + +--- +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: {{ .Values.externalSnapshotter.name }}-leaderelection + namespace: {{ .Release.Namespace }} +{{ include "nfs.labels" . | indent 2 }} +subjects: + - kind: ServiceAccount + name: {{ .Values.externalSnapshotter.name }} +roleRef: + kind: Role + name: {{ .Values.externalSnapshotter.name }}-leaderelection + apiGroup: rbac.authorization.k8s.io +{{- end -}} diff --git a/charts/v4.3.0/csi-driver-nfs/values.yaml b/charts/v4.3.0/csi-driver-nfs/values.yaml new file mode 100644 index 000000000..187a726e3 --- /dev/null +++ b/charts/v4.3.0/csi-driver-nfs/values.yaml @@ -0,0 +1,131 @@ +customLabels: {} +image: + nfs: + repository: registry.k8s.io/sig-storage/nfsplugin + tag: v4.3.0 + pullPolicy: IfNotPresent + csiProvisioner: + repository: registry.k8s.io/sig-storage/csi-provisioner + tag: v3.5.0 + pullPolicy: IfNotPresent + csiSnapshotter: + repository: registry.k8s.io/sig-storage/csi-snapshotter + tag: v6.2.2 + pullPolicy: IfNotPresent + livenessProbe: + repository: registry.k8s.io/sig-storage/livenessprobe + tag: v2.10.0 + pullPolicy: IfNotPresent + nodeDriverRegistrar: + repository: registry.k8s.io/sig-storage/csi-node-driver-registrar + tag: v2.8.0 + pullPolicy: IfNotPresent + externalSnapshotter: + repository: registry.k8s.io/sig-storage/snapshot-controller + tag: v6.2.2 + pullPolicy: IfNotPresent + +serviceAccount: + create: true # When true, service accounts will be created for you. Set to false if you want to use your own. + controller: csi-nfs-controller-sa # Name of Service Account to be created or used + +rbac: + create: true + name: nfs + +driver: + name: nfs.csi.k8s.io + mountPermissions: 0 + +feature: + enableFSGroupPolicy: true + enableInlineVolume: false + +kubeletDir: /var/lib/kubelet + +controller: + name: csi-nfs-controller + replicas: 1 + strategyType: Recreate + runOnMaster: false + runOnControlPlane: false + livenessProbe: + healthPort: 29652 + logLevel: 5 + workingMountDir: /tmp + dnsPolicy: ClusterFirstWithHostNet # available values: Default, ClusterFirstWithHostNet, ClusterFirst + defaultOnDeletePolicy: delete # available values: delete, retain + 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" + resources: + csiProvisioner: + limits: + memory: 400Mi + requests: + cpu: 10m + memory: 20Mi + livenessProbe: + limits: + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi + nfs: + limits: + memory: 200Mi + requests: + cpu: 10m + memory: 20Mi + +node: + name: csi-nfs-node + dnsPolicy: ClusterFirstWithHostNet # available values: Default, ClusterFirstWithHostNet, ClusterFirst + maxUnavailable: 1 + logLevel: 5 + livenessProbe: + healthPort: 29653 + affinity: {} + nodeSelector: {} + tolerations: + - operator: "Exists" + resources: + livenessProbe: + limits: + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi + nodeDriverRegistrar: + limits: + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi + nfs: + limits: + memory: 300Mi + requests: + cpu: 10m + memory: 20Mi + +externalSnapshotter: + enabled: true + name: snapshot-controller + controller: + replicas: 1 + +## Reference to one or more secrets to be used when pulling images +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ +## +imagePullSecrets: [] +# - name: "image-pull-secret" diff --git a/deploy/csi-nfs-controller.yaml b/deploy/csi-nfs-controller.yaml index dbb0b4b78..e8feb5062 100644 --- a/deploy/csi-nfs-controller.yaml +++ b/deploy/csi-nfs-controller.yaml @@ -85,7 +85,7 @@ spec: cpu: 10m memory: 20Mi - name: nfs - image: gcr.io/k8s-staging-sig-storage/nfsplugin:canary + image: registry.k8s.io/sig-storage/nfsplugin:v4.3.0 securityContext: privileged: true capabilities: diff --git a/deploy/csi-nfs-node.yaml b/deploy/csi-nfs-node.yaml index 2f596ae50..6b5e5428d 100644 --- a/deploy/csi-nfs-node.yaml +++ b/deploy/csi-nfs-node.yaml @@ -83,7 +83,7 @@ spec: capabilities: add: ["SYS_ADMIN"] allowPrivilegeEscalation: true - image: gcr.io/k8s-staging-sig-storage/nfsplugin:canary + image: registry.k8s.io/sig-storage/nfsplugin:v4.3.0 args: - "-v=5" - "--nodeid=$(NODE_ID)" diff --git a/deploy/v4.3.0/crd-csi-snapshot.yaml b/deploy/v4.3.0/crd-csi-snapshot.yaml new file mode 100644 index 000000000..d4b90b266 --- /dev/null +++ b/deploy/v4.3.0/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/v4.3.0/csi-nfs-controller.yaml b/deploy/v4.3.0/csi-nfs-controller.yaml new file mode 100644 index 000000000..e8feb5062 --- /dev/null +++ b/deploy/v4.3.0/csi-nfs-controller.yaml @@ -0,0 +1,136 @@ +--- +kind: Deployment +apiVersion: apps/v1 +metadata: + name: csi-nfs-controller + namespace: kube-system +spec: + replicas: 1 + selector: + matchLabels: + app: csi-nfs-controller + template: + metadata: + labels: + app: csi-nfs-controller + spec: + hostNetwork: true # controller also needs to mount nfs to create dir + dnsPolicy: ClusterFirstWithHostNet # available values: Default, ClusterFirstWithHostNet, ClusterFirst + serviceAccountName: csi-nfs-controller-sa + nodeSelector: + kubernetes.io/os: linux # add "kubernetes.io/role: master" to run controller on master node + priorityClassName: system-cluster-critical + securityContext: + seccompProfile: + type: RuntimeDefault + tolerations: + - key: "node-role.kubernetes.io/master" + operator: "Exists" + effect: "NoSchedule" + - key: "node-role.kubernetes.io/controlplane" + operator: "Exists" + effect: "NoSchedule" + - key: "node-role.kubernetes.io/control-plane" + operator: "Exists" + effect: "NoSchedule" + containers: + - name: csi-provisioner + image: registry.k8s.io/sig-storage/csi-provisioner:v3.5.0 + args: + - "-v=2" + - "--csi-address=$(ADDRESS)" + - "--leader-election" + - "--leader-election-namespace=kube-system" + - "--extra-create-metadata=true" + env: + - name: ADDRESS + value: /csi/csi.sock + volumeMounts: + - mountPath: /csi + name: socket-dir + resources: + limits: + memory: 400Mi + requests: + cpu: 10m + memory: 20Mi + - name: csi-snapshotter + image: registry.k8s.io/sig-storage/csi-snapshotter:v6.2.2 + args: + - "--v=2" + - "--csi-address=$(ADDRESS)" + - "--leader-election-namespace=kube-system" + - "--leader-election" + env: + - name: ADDRESS + value: /csi/csi.sock + imagePullPolicy: IfNotPresent + volumeMounts: + - name: socket-dir + mountPath: /csi + - name: liveness-probe + image: registry.k8s.io/sig-storage/livenessprobe:v2.10.0 + args: + - --csi-address=/csi/csi.sock + - --probe-timeout=3s + - --health-port=29652 + - --v=2 + volumeMounts: + - name: socket-dir + mountPath: /csi + resources: + limits: + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi + - name: nfs + image: registry.k8s.io/sig-storage/nfsplugin:v4.3.0 + securityContext: + privileged: true + capabilities: + add: ["SYS_ADMIN"] + allowPrivilegeEscalation: true + imagePullPolicy: IfNotPresent + args: + - "-v=5" + - "--nodeid=$(NODE_ID)" + - "--endpoint=$(CSI_ENDPOINT)" + env: + - name: NODE_ID + valueFrom: + fieldRef: + fieldPath: spec.nodeName + - name: CSI_ENDPOINT + value: unix:///csi/csi.sock + ports: + - containerPort: 29652 + name: healthz + protocol: TCP + livenessProbe: + failureThreshold: 5 + httpGet: + path: /healthz + port: healthz + initialDelaySeconds: 30 + timeoutSeconds: 10 + periodSeconds: 30 + volumeMounts: + - name: pods-mount-dir + mountPath: /var/lib/kubelet/pods + mountPropagation: "Bidirectional" + - mountPath: /csi + name: socket-dir + resources: + limits: + memory: 200Mi + requests: + cpu: 10m + memory: 20Mi + volumes: + - name: pods-mount-dir + hostPath: + path: /var/lib/kubelet/pods + type: Directory + - name: socket-dir + emptyDir: {} diff --git a/deploy/v4.3.0/csi-nfs-driverinfo.yaml b/deploy/v4.3.0/csi-nfs-driverinfo.yaml new file mode 100644 index 000000000..ce1f04ffa --- /dev/null +++ b/deploy/v4.3.0/csi-nfs-driverinfo.yaml @@ -0,0 +1,10 @@ +--- +apiVersion: storage.k8s.io/v1 +kind: CSIDriver +metadata: + name: nfs.csi.k8s.io +spec: + attachRequired: false + volumeLifecycleModes: + - Persistent + fsGroupPolicy: File diff --git a/deploy/v4.3.0/csi-nfs-node.yaml b/deploy/v4.3.0/csi-nfs-node.yaml new file mode 100644 index 000000000..6b5e5428d --- /dev/null +++ b/deploy/v4.3.0/csi-nfs-node.yaml @@ -0,0 +1,135 @@ +--- +kind: DaemonSet +apiVersion: apps/v1 +metadata: + name: csi-nfs-node + namespace: kube-system +spec: + updateStrategy: + rollingUpdate: + maxUnavailable: 1 + type: RollingUpdate + selector: + matchLabels: + app: csi-nfs-node + template: + metadata: + labels: + app: csi-nfs-node + spec: + hostNetwork: true # original nfs connection would be broken without hostNetwork setting + dnsPolicy: ClusterFirstWithHostNet # available values: Default, ClusterFirstWithHostNet, ClusterFirst + serviceAccountName: csi-nfs-node-sa + priorityClassName: system-node-critical + securityContext: + seccompProfile: + type: RuntimeDefault + nodeSelector: + kubernetes.io/os: linux + tolerations: + - operator: "Exists" + containers: + - name: liveness-probe + image: registry.k8s.io/sig-storage/livenessprobe:v2.10.0 + args: + - --csi-address=/csi/csi.sock + - --probe-timeout=3s + - --health-port=29653 + - --v=2 + volumeMounts: + - name: socket-dir + mountPath: /csi + resources: + limits: + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi + - name: node-driver-registrar + image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.8.0 + args: + - --v=2 + - --csi-address=/csi/csi.sock + - --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH) + livenessProbe: + exec: + command: + - /csi-node-driver-registrar + - --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH) + - --mode=kubelet-registration-probe + initialDelaySeconds: 30 + timeoutSeconds: 15 + env: + - name: DRIVER_REG_SOCK_PATH + value: /var/lib/kubelet/plugins/csi-nfsplugin/csi.sock + - name: KUBE_NODE_NAME + valueFrom: + fieldRef: + fieldPath: spec.nodeName + volumeMounts: + - name: socket-dir + mountPath: /csi + - name: registration-dir + mountPath: /registration + resources: + limits: + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi + - name: nfs + securityContext: + privileged: true + capabilities: + add: ["SYS_ADMIN"] + allowPrivilegeEscalation: true + image: registry.k8s.io/sig-storage/nfsplugin:v4.3.0 + args: + - "-v=5" + - "--nodeid=$(NODE_ID)" + - "--endpoint=$(CSI_ENDPOINT)" + env: + - name: NODE_ID + valueFrom: + fieldRef: + fieldPath: spec.nodeName + - name: CSI_ENDPOINT + value: unix:///csi/csi.sock + ports: + - containerPort: 29653 + name: healthz + protocol: TCP + livenessProbe: + failureThreshold: 5 + httpGet: + path: /healthz + port: healthz + initialDelaySeconds: 30 + timeoutSeconds: 10 + periodSeconds: 30 + imagePullPolicy: "IfNotPresent" + volumeMounts: + - name: socket-dir + mountPath: /csi + - name: pods-mount-dir + mountPath: /var/lib/kubelet/pods + mountPropagation: "Bidirectional" + resources: + limits: + memory: 300Mi + requests: + cpu: 10m + memory: 20Mi + volumes: + - name: socket-dir + hostPath: + path: /var/lib/kubelet/plugins/csi-nfsplugin + type: DirectoryOrCreate + - name: pods-mount-dir + hostPath: + path: /var/lib/kubelet/pods + type: Directory + - hostPath: + path: /var/lib/kubelet/plugins_registry + type: Directory + name: registration-dir diff --git a/deploy/v4.3.0/csi-snapshot-controller.yaml b/deploy/v4.3.0/csi-snapshot-controller.yaml new file mode 100644 index 000000000..8e7c21dfc --- /dev/null +++ b/deploy/v4.3.0/csi-snapshot-controller.yaml @@ -0,0 +1,65 @@ +# This YAML file shows how to deploy the snapshot controller + +# The snapshot controller implements the control loop for CSI snapshot functionality. +# It should be installed as part of the base Kubernetes distribution in an appropriate +# namespace for components implementing base system functionality. For installing with +# Vanilla Kubernetes, kube-system makes sense for the namespace. + +--- +kind: Deployment +apiVersion: apps/v1 +metadata: + name: snapshot-controller + namespace: kube-system +spec: + replicas: 2 + selector: + matchLabels: + app: 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: snapshot-controller + spec: + serviceAccountName: snapshot-controller + nodeSelector: + kubernetes.io/os: linux + priorityClassName: system-cluster-critical + securityContext: + seccompProfile: + type: RuntimeDefault + tolerations: + - key: "node-role.kubernetes.io/master" + operator: "Equal" + value: "true" + effect: "NoSchedule" + - key: "node-role.kubernetes.io/controlplane" + operator: "Equal" + value: "true" + effect: "NoSchedule" + - key: "node-role.kubernetes.io/control-plane" + operator: "Equal" + value: "true" + effect: "NoSchedule" + containers: + - name: snapshot-controller + image: registry.k8s.io/sig-storage/snapshot-controller:v6.2.2 + args: + - "--v=2" + - "--leader-election=true" + - "--leader-election-namespace=kube-system" + resources: + limits: + memory: 100Mi + requests: + cpu: 10m + memory: 20Mi diff --git a/deploy/v4.3.0/rbac-csi-nfs.yaml b/deploy/v4.3.0/rbac-csi-nfs.yaml new file mode 100644 index 000000000..081d76e5d --- /dev/null +++ b/deploy/v4.3.0/rbac-csi-nfs.yaml @@ -0,0 +1,66 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: csi-nfs-controller-sa + namespace: kube-system +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: csi-nfs-node-sa + namespace: kube-system +--- + +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: nfs-external-provisioner-role +rules: + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch", "create", "delete"] + - apiGroups: [""] + resources: ["persistentvolumeclaims"] + verbs: ["get", "list", "watch", "update"] + - apiGroups: ["storage.k8s.io"] + resources: ["storageclasses"] + verbs: ["get", "list", "watch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotclasses", "volumesnapshots"] + verbs: ["get", "list", "watch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents"] + verbs: ["get", "list", "watch", "update", "patch"] + - apiGroups: ["snapshot.storage.k8s.io"] + resources: ["volumesnapshotcontents/status"] + verbs: ["get", "update", "patch"] + - 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: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "list", "watch", "create", "update", "patch"] + - apiGroups: [""] + resources: ["secrets"] + verbs: ["get"] +--- + +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: nfs-csi-provisioner-binding +subjects: + - kind: ServiceAccount + name: csi-nfs-controller-sa + namespace: kube-system +roleRef: + kind: ClusterRole + name: nfs-external-provisioner-role + apiGroup: rbac.authorization.k8s.io diff --git a/deploy/v4.3.0/rbac-snapshot-controller.yaml b/deploy/v4.3.0/rbac-snapshot-controller.yaml new file mode 100644 index 000000000..2e6431bd3 --- /dev/null +++ b/deploy/v4.3.0/rbac-snapshot-controller.yaml @@ -0,0 +1,82 @@ +# RBAC file for the snapshot controller. +# +# The snapshot controller implements the control loop for CSI snapshot functionality. +# It should be installed as part of the base Kubernetes distribution in an appropriate +# namespace for components implementing base system functionality. For installing with +# Vanilla Kubernetes, kube-system makes sense for the namespace. +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: snapshot-controller + namespace: kube-system + +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: snapshot-controller-runner +rules: + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["persistentvolumeclaims"] + verbs: ["get", "list", "watch", "update"] + - 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: snapshot-controller-role +subjects: + - kind: ServiceAccount + name: snapshot-controller + namespace: kube-system +roleRef: + kind: ClusterRole + name: snapshot-controller-runner + apiGroup: rbac.authorization.k8s.io + +--- +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: snapshot-controller-leaderelection + namespace: kube-system +rules: + - apiGroups: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "watch", "list", "delete", "update", "create"] + +--- +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: snapshot-controller-leaderelection + namespace: kube-system +subjects: + - kind: ServiceAccount + name: snapshot-controller +roleRef: + kind: Role + name: snapshot-controller-leaderelection + apiGroup: rbac.authorization.k8s.io diff --git a/docs/install-csi-driver-v4.3.0.md b/docs/install-csi-driver-v4.3.0.md new file mode 100644 index 000000000..25bd698eb --- /dev/null +++ b/docs/install-csi-driver-v4.3.0.md @@ -0,0 +1,45 @@ +# Install NFS CSI driver v4.3.0 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 with kubectl + - Option#1. remote install +```console +curl -skSL https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/v4.3.0/deploy/install-driver.sh | bash -s v4.3.0 -- +``` + + - Option#2. local install +```console +git clone https://github.com/kubernetes-csi/csi-driver-nfs.git +cd csi-driver-nfs +./deploy/install-driver.sh v4.3.0 local +``` + +- check pods status: +```console +kubectl -n kube-system get pod -o wide -l app=csi-nfs-controller +kubectl -n kube-system get pod -o wide -l app=csi-nfs-node +``` + +example output: + +```console +NAME READY STATUS RESTARTS AGE IP NODE +csi-nfs-controller-56bfddd689-dh5tk 4/4 Running 0 35s 10.240.0.19 k8s-agentpool-22533604-0 +csi-nfs-node-cvgbs 3/3 Running 0 35s 10.240.0.35 k8s-agentpool-22533604-1 +csi-nfs-node-dr4s4 3/3 Running 0 35s 10.240.0.4 k8s-agentpool-22533604-0 +``` + +### clean up NFS CSI driver + - Option#1. remote uninstall +```console +curl -skSL https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/v4.3.0/deploy/uninstall-driver.sh | bash -s v4.3.0 -- +``` + + - Option#2. local uninstall +```console +git clone https://github.com/kubernetes-csi/csi-driver-nfs.git +cd csi-driver-nfs +git checkout v4.3.0 +./deploy/uninstall-driver.sh v4.3.0 local +``` diff --git a/docs/install-nfs-csi-driver.md b/docs/install-nfs-csi-driver.md index ea3ada03d..a1bd4c795 100644 --- a/docs/install-nfs-csi-driver.md +++ b/docs/install-nfs-csi-driver.md @@ -1,6 +1,6 @@ ## Install NFS CSI driver on a Kubernetes cluster - [install CSI driver master version](./install-csi-driver-master.md)(only for testing purpose) + - [install CSI driver v4.3.0 version](./install-csi-driver-v4.3.0.md) - [install CSI driver v4.2.0 version](./install-csi-driver-v4.2.0.md) - [install CSI driver v4.1.0 version](./install-csi-driver-v4.1.0.md) - - [install CSI driver v4.0.0 version](./install-csi-driver-v4.0.0.md) From b6576e9fb73145fa4863f975f2aeb5eacc948a67 Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Mon, 29 May 2023 07:04:24 +0000 Subject: [PATCH 2/2] doc: use latest version for master branch --- charts/index.yaml | 34 +++++++++++------------ charts/latest/csi-driver-nfs-v0.0.0.tgz | Bin 0 -> 10683 bytes charts/latest/csi-driver-nfs-v4.3.0.tgz | Bin 10653 -> 0 bytes charts/latest/csi-driver-nfs/Chart.yaml | 4 +-- charts/latest/csi-driver-nfs/values.yaml | 4 +-- deploy/csi-nfs-controller.yaml | 2 +- deploy/csi-nfs-node.yaml | 2 +- 7 files changed, 23 insertions(+), 23 deletions(-) create mode 100644 charts/latest/csi-driver-nfs-v0.0.0.tgz delete mode 100644 charts/latest/csi-driver-nfs-v4.3.0.tgz diff --git a/charts/index.yaml b/charts/index.yaml index 6f42b1d84..ff632b300 100644 --- a/charts/index.yaml +++ b/charts/index.yaml @@ -3,16 +3,7 @@ entries: csi-driver-nfs: - apiVersion: v1 appVersion: v4.3.0 - created: "2023-05-29T07:03:28.292263808Z" - description: CSI NFS Driver for Kubernetes - digest: 1aef5dec52a6c433dbed2e361bed0ab1fdd6792f845eccb99b7dc7f193c2a71e - name: csi-driver-nfs - urls: - - https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts/latest/csi-driver-nfs-v4.3.0.tgz - version: v4.3.0 - - apiVersion: v1 - appVersion: v4.3.0 - created: "2023-05-29T07:03:28.295295628Z" + created: "2023-05-29T07:04:20.551457199Z" description: CSI NFS Driver for Kubernetes digest: 1aef5dec52a6c433dbed2e361bed0ab1fdd6792f845eccb99b7dc7f193c2a71e name: csi-driver-nfs @@ -21,7 +12,7 @@ entries: version: v4.3.0 - apiVersion: v1 appVersion: v4.2.0 - created: "2023-05-29T07:03:28.294619093Z" + created: "2023-05-29T07:04:20.550788947Z" description: CSI NFS Driver for Kubernetes digest: e702f6c9be35f2649f5736ca5fcdc40ab1c6a235f41e7fb2472d208e8a5ebf47 name: csi-driver-nfs @@ -30,7 +21,7 @@ entries: version: v4.2.0 - apiVersion: v1 appVersion: v4.1.0 - created: "2023-05-29T07:03:28.294176013Z" + created: "2023-05-29T07:04:20.550341904Z" description: CSI NFS Driver for Kubernetes digest: b2baa2f129976cf2981c8873290aac509aa3c5937ffc319fbf69fbe3271c23eb name: csi-driver-nfs @@ -39,7 +30,7 @@ entries: version: v4.1.0 - apiVersion: v1 appVersion: v4.0.0 - created: "2023-05-29T07:03:28.293742076Z" + created: "2023-05-29T07:04:20.549896146Z" description: CSI NFS Driver for Kubernetes digest: 3145fd12225a639908b14675c8ae1f272bc0e57ffa2895b6f17411486a24229d name: csi-driver-nfs @@ -48,7 +39,7 @@ entries: version: v4.0.0 - apiVersion: v1 appVersion: v3.1.0 - created: "2023-05-29T07:03:28.293317486Z" + created: "2023-05-29T07:04:20.549440946Z" description: CSI NFS Driver for Kubernetes digest: 7e51bb9188b013195cafc265102fa365de9ec5513780e1dfc5363289f811a4d9 name: csi-driver-nfs @@ -57,7 +48,7 @@ entries: version: v3.1.0 - apiVersion: v1 appVersion: v3.0.0 - created: "2023-05-29T07:03:28.292906256Z" + created: "2023-05-29T07:04:20.549039666Z" description: CSI NFS Driver for Kubernetes digest: 44406231cd5cdada1c62a0541b93b4f5d5a70ccc8c50b33553a8692fe6cfae96 name: csi-driver-nfs @@ -66,11 +57,20 @@ entries: version: v3.0.0 - apiVersion: v1 appVersion: v2.0.0 - created: "2023-05-29T07:03:28.292501761Z" + created: "2023-05-29T07:04:20.548603194Z" description: CSI NFS Driver for Kubernetes digest: 1a32c6fc016526fe19a0c9e0dfbe83d0ddde67ced533bb5f5d24d713f706c613 name: csi-driver-nfs urls: - https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts/v2.0.0/csi-driver-nfs-v2.0.0.tgz version: v2.0.0 -generated: "2023-05-29T07:03:28.291443041Z" + - apiVersion: v1 + appVersion: latest + created: "2023-05-29T07:04:20.548019366Z" + description: CSI NFS Driver for Kubernetes + digest: 016dd3073a6a1f3a5340e79f9a59d95212734e96bacc297472a4636c9b93ff55 + name: csi-driver-nfs + urls: + - https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts/latest/csi-driver-nfs-v0.0.0.tgz + version: v0.0.0 +generated: "2023-05-29T07:04:20.546769915Z" diff --git a/charts/latest/csi-driver-nfs-v0.0.0.tgz b/charts/latest/csi-driver-nfs-v0.0.0.tgz new file mode 100644 index 0000000000000000000000000000000000000000..0d78d5df9a5ac5cc973d4008619a4c9dfd10f079 GIT binary patch literal 10683 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 literal 0 HcmV?d00001 diff --git a/charts/latest/csi-driver-nfs-v4.3.0.tgz b/charts/latest/csi-driver-nfs-v4.3.0.tgz deleted file mode 100644 index 227d99724b57319fe75e4148d5195acae93a0689..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10653 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 D?PR`{ diff --git a/charts/latest/csi-driver-nfs/Chart.yaml b/charts/latest/csi-driver-nfs/Chart.yaml index 0a0991c97..c73b9f8ef 100755 --- a/charts/latest/csi-driver-nfs/Chart.yaml +++ b/charts/latest/csi-driver-nfs/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v1 -appVersion: v4.3.0 +appVersion: latest description: CSI NFS Driver for Kubernetes name: csi-driver-nfs -version: v4.3.0 +version: v0.0.0 diff --git a/charts/latest/csi-driver-nfs/values.yaml b/charts/latest/csi-driver-nfs/values.yaml index 187a726e3..1fe58710a 100755 --- a/charts/latest/csi-driver-nfs/values.yaml +++ b/charts/latest/csi-driver-nfs/values.yaml @@ -1,8 +1,8 @@ customLabels: {} image: nfs: - repository: registry.k8s.io/sig-storage/nfsplugin - tag: v4.3.0 + repository: gcr.io/k8s-staging-sig-storage/nfsplugin + tag: canary pullPolicy: IfNotPresent csiProvisioner: repository: registry.k8s.io/sig-storage/csi-provisioner diff --git a/deploy/csi-nfs-controller.yaml b/deploy/csi-nfs-controller.yaml index e8feb5062..dbb0b4b78 100644 --- a/deploy/csi-nfs-controller.yaml +++ b/deploy/csi-nfs-controller.yaml @@ -85,7 +85,7 @@ spec: cpu: 10m memory: 20Mi - name: nfs - image: registry.k8s.io/sig-storage/nfsplugin:v4.3.0 + image: gcr.io/k8s-staging-sig-storage/nfsplugin:canary securityContext: privileged: true capabilities: diff --git a/deploy/csi-nfs-node.yaml b/deploy/csi-nfs-node.yaml index 6b5e5428d..2f596ae50 100644 --- a/deploy/csi-nfs-node.yaml +++ b/deploy/csi-nfs-node.yaml @@ -83,7 +83,7 @@ spec: capabilities: add: ["SYS_ADMIN"] allowPrivilegeEscalation: true - image: registry.k8s.io/sig-storage/nfsplugin:v4.3.0 + image: gcr.io/k8s-staging-sig-storage/nfsplugin:canary args: - "-v=5" - "--nodeid=$(NODE_ID)"