Skip to content

Commit 6c3e1fd

Browse files
authored
Merge pull request #24 from wozniakjan/test_before_release
Changes from testing before first release
2 parents 45e57bf + 748602f commit 6c3e1fd

File tree

5 files changed

+11
-102
lines changed

5 files changed

+11
-102
lines changed

deploy/kubernetes/csi-attacher-nfsplugin.yaml

Lines changed: 0 additions & 63 deletions
This file was deleted.

deploy/kubernetes/csi-attacher-rbac.yaml

Lines changed: 0 additions & 37 deletions
This file was deleted.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
apiVersion: storage.k8s.io/v1beta1
2+
kind: CSIDriver
3+
metadata:
4+
name: csi-nfsplugin
5+
spec:
6+
attachRequired: false
7+
volumeLifecycleModes:
8+
- Persistent
9+
podInfoOnMount: true

deploy/kubernetes/csi-nodeplugin-nfsplugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This YAML file contains driver-registrar & csi driver nodeplugin API objects
22
# that are necessary to run CSI nodeplugin for nfs
33
kind: DaemonSet
4-
apiVersion: apps/v1beta2
4+
apiVersion: apps/v1
55
metadata:
66
name: csi-nodeplugin-nfsplugin
77
spec:

pkg/nfs/nfs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const (
4040
)
4141

4242
var (
43-
version = "1.0.0-rc2"
43+
version = "1.0.0"
4444
)
4545

4646
func NewNFSdriver(nodeID, endpoint string) *nfsDriver {

0 commit comments

Comments
 (0)