Skip to content

Commit

Permalink
Merge pull request #17 from dell/prep_for_rel_1.0.0
Browse files Browse the repository at this point in the history
updates to release 1.0.0
  • Loading branch information
nb950 authored Dec 3, 2021
2 parents 41635c4 + f6fe36e commit 7571b3e
Show file tree
Hide file tree
Showing 6 changed files with 338 additions and 122 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ LABEL vendor="Dell Inc." \
name="dellcsi-vg-snapshotter" \
summary="CSI VG Snapshotter for Dell EMC Powerflex" \
description="Dell Storage VolumeGroup Snapshot Controller for CSI" \
version="0.3.0" \
version="1.0.0" \
license="Apache-2.0"

#COPY licenses /licenses
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ vgsnapshotter:
```
To deploy CSM Volume Group Snapshotter with the driver, the following changes are required:
1. Enable CSM Volume Group Snapshotter by changing the vgsnapshotter.enabled boolean to true.
2. In the vgsnapshotter.image field, put the location of the image you created following the steps in the build section, or link to one already built (such as the one on DockerHub, `dellemc/csi-volumegroup-snapshotter:v0.3.0`).
2. In the vgsnapshotter.image field, put the location of the image you created following the steps in the build section, or link to one already built (such as the one on DockerHub, `dellemc/csi-volumegroup-snapshotter:v1.0.0`).
3. Install/upgrade the driver normally. You should now have VGS successfully deployed with the driver!

## Volume Group Snapshot CRD Create
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ replace github.com/dell/csi-volumegroup-snapshotter => ./
go 1.16

require (
github.com/dell/dell-csi-extensions/volumeGroupSnapshot v0.0.0-20211105191151-ab8304dcb6ad
github.com/dell/dell-csi-extensions/volumeGroupSnapshot v1.0.0
github.com/go-chi/chi v1.5.4
github.com/go-logr/logr v0.4.0
github.com/google/uuid v1.3.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ github.com/creack/pty v1.1.11/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/dell/dell-csi-extensions/volumeGroupSnapshot v0.0.0-20211105191151-ab8304dcb6ad h1:Z1sOHPjWErOGxTBWSii6pgoukz3N929VpUFVeiEgYkA=
github.com/dell/dell-csi-extensions/volumeGroupSnapshot v0.0.0-20211105191151-ab8304dcb6ad/go.mod h1:5yDbA4Whm93zqgYSEdf2dgntm0JZLW60Eu7ABeZEhE4=
github.com/dell/dell-csi-extensions/volumeGroupSnapshot v1.0.0 h1:a/feoPax/F05B991FIQXhFBWPi6YIK3U2dxKotJo3DY=
github.com/dell/dell-csi-extensions/volumeGroupSnapshot v1.0.0/go.mod h1:5yDbA4Whm93zqgYSEdf2dgntm0JZLW60Eu7ABeZEhE4=
github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=
github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no=
github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM=
Expand Down
35 changes: 32 additions & 3 deletions test/integration-test/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ go 1.16
require (
github.com/container-storage-interface/spec v1.5.0
github.com/cucumber/godog v0.12.2
github.com/dell/csi-volumegroup-snapshotter v0.3.0
github.com/dell/csi-vxflexos/v2 v2.0.0-20211014194653-b2cf36dab234
github.com/dell/gocsi v1.4.0
github.com/dell/csi-volumegroup-snapshotter v1.0.0
github.com/dell/csi-vxflexos/v2 v2.1.0
github.com/dell/gocsi v1.5.0
github.com/golang/protobuf v1.5.2
github.com/kubernetes-csi/external-snapshotter/client/v4 v4.2.0
go.uber.org/zap v1.19.1
Expand All @@ -25,3 +25,32 @@ require (
k8s.io/client-go v0.22.3
sigs.k8s.io/controller-runtime v0.10.2
)

replace (
k8s.io/api => k8s.io/api v0.20.2
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.20.2
k8s.io/apimachinery => k8s.io/apimachinery v0.22.2
k8s.io/apiserver => k8s.io/apiserver v0.20.2
k8s.io/cli-runtime => k8s.io/cli-runtime v0.20.2
k8s.io/client-go => k8s.io/client-go v0.20.2
k8s.io/cloud-provider => k8s.io/cloud-provider v0.20.2
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.20.2
k8s.io/code-generator => k8s.io/code-generator v0.20.2
k8s.io/component-base => k8s.io/component-base v0.20.2
k8s.io/component-helpers => k8s.io/component-helpers v0.22.2
k8s.io/controller-manager => k8s.io/controller-manager v0.20.2
k8s.io/cri-api => k8s.io/cri-api v0.20.2
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.20.2
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.20.2
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.20.2
k8s.io/kube-proxy => k8s.io/kube-proxy v0.20.2
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.20.2
k8s.io/kubectl => k8s.io/kubectl v0.20.2
k8s.io/kubelet => k8s.io/kubelet v0.20.2
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.20.2
k8s.io/metrics => k8s.io/metrics v0.20.2
k8s.io/mount-utils => k8s.io/mount-utils v0.20.2
k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.22.2
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.20.2
k8s.io/scheduler => k8s.io/schduler v0.20.2
)
Loading

0 comments on commit 7571b3e

Please sign in to comment.