Skip to content

Commit

Permalink
Bump up version to v0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
iychoi committed Jun 6, 2023
1 parent 85f2128 commit 99f7e8e
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 18 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CSI_DRIVER_IMAGE?=cyverse/irods-csi-driver
CSI_DRIVER_DOCKERFILE=deploy/image/irods_csi_driver_image.dockerfile
CSI_DRIVER_POOL_IMAGE?=cyverse/irods-csi-driver-pool
CSI_DRIVER_POOL_DOCKERFILE=deploy/image/irods_csi_driver_pool_image.dockerfile
VERSION=v0.9.4
VERSION=v0.9.5
GIT_COMMIT?=$(shell git rev-parse HEAD)
BUILD_DATE?=$(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
LDFLAGS?="-X ${PKG}/pkg/common.driverVersion=${VERSION} -X ${PKG}/pkg/common.gitCommit=${GIT_COMMIT} -X ${PKG}/pkg/common.buildDate=${BUILD_DATE}"
Expand Down
2 changes: 1 addition & 1 deletion deploy/image/irods_csi_driver_image.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ARG CSI_DRIVER_SRC_DIR="/go/src/github.com/cyverse/irods-csi-driver"
ARG IRODS_FUSE_DIR="/opt/irodsfs"
ARG FUSE_NFS_DIR="/opt/fuse-nfs"
ARG DEBIAN_FRONTEND=noninteractive
ARG IRODSFS_VER=v0.8.11
ARG IRODSFS_VER=v0.8.13

# Setup Utility Packages
RUN apt-get update && \
Expand Down
2 changes: 1 addition & 1 deletion deploy/image/irods_csi_driver_pool_image.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ LABEL version="0.1"
LABEL description="iRODS CSI Driver Pool Image"

ARG DEBIAN_FRONTEND=noninteractive
ARG IRODSFS_POOL_VER=v0.6.10
ARG IRODSFS_POOL_VER=v0.6.12

# Setup Utility Packages
RUN apt-get update && \
Expand Down
4 changes: 2 additions & 2 deletions deploy/kubernetes/overlays/stable/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ bases:
- ../../base
images:
- name: cyverse/irods-csi-driver
newTag: v0.9.4
newTag: v0.9.5
- name: cyverse/irods-csi-driver-pool
newTag: v0.9.4
newTag: v0.9.5
- name: quay.io/k8scsi/csi-provisioner
newTag: v1.6.0
- name: quay.io/k8scsi/livenessprobe
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.18

require (
github.com/container-storage-interface/spec v1.2.0
github.com/cyverse/go-irodsclient v0.10.4
github.com/cyverse/go-irodsclient v0.12.2
github.com/prometheus/client_golang v1.13.0
github.com/rs/xid v1.3.0
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2
Expand All @@ -28,7 +28,7 @@ require (
github.com/prometheus/procfs v0.8.0 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/text v0.7.0 // indirect
google.golang.org/genproto v0.0.0-20200825200019-8632dd797987 // indirect
google.golang.org/protobuf v1.28.1 // indirect
Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnht
github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=
github.com/container-storage-interface/spec v1.2.0 h1:bD9KIVgaVKKkQ/UbVUY9kCaH/CJbhNxe0eeB4JeJV2s=
github.com/container-storage-interface/spec v1.2.0/go.mod h1:6URME8mwIBbpVyZV93Ce5St17xBiQJQY67NDsuohiy4=
github.com/cyverse/go-irodsclient v0.10.4 h1:nj+R5n4dI9Jh1wlfjWnFzGeQltGKMxPfmLAsN08fwNU=
github.com/cyverse/go-irodsclient v0.10.4/go.mod h1:UaBJ8f9cRQYx3kkmbfWMDlZGQ4AF5k5oV2X27BGiO4o=
github.com/cyverse/go-irodsclient v0.12.2 h1:5EuoJtBY3IZtWz9FwhqBFCuUZ4V+LsASTK2fFdXYHrU=
github.com/cyverse/go-irodsclient v0.12.2/go.mod h1:SOMr0JtAmbtYp06ZdYhxBYi47GYpV9ImW7sqKVypQhU=
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=
Expand Down Expand Up @@ -355,8 +355,8 @@ golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBc
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.5.0 h1:MUK/U/4lj1t1oPg0HfuXDN/Z1wv31ZJ/YcPiGccS4DU=
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU=
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
Expand Down
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
appVersion: "0.9.4"
appVersion: "0.9.5"
name: irods-csi-driver
description: A Helm chart for iRODS CSI Driver
version: 0.9.4
version: 0.9.5
kubeVersion: ">=1.14.0-0"
home: https://github.com/cyverse/irods-csi-driver
sources:
Expand Down
2 changes: 1 addition & 1 deletion helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ helm install irods-csi-driver -f user_values.yaml --namespace kube-system .
```shell script
helm upgrade irods-csi-driver \
--install . \
--version 0.9.4 \
--version 0.9.5 \
--namespace kube-system \
-f values.yaml
```
Expand Down
6 changes: 3 additions & 3 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ controllerService:
irodsPlugin:
image:
repository: cyverse/irods-csi-driver
tag: v0.9.4
tag: v0.9.5
pullPolicy: Always

extraArgs:
Expand Down Expand Up @@ -53,7 +53,7 @@ nodeService:
irodsPlugin:
image:
repository: cyverse/irods-csi-driver
tag: v0.9.4
tag: v0.9.5
pullPolicy: Always

extraArgs:
Expand All @@ -68,7 +68,7 @@ nodeService:
irodsPool:
image:
repository: cyverse/irods-csi-driver-pool
tag: v0.9.4
tag: v0.9.5
pullPolicy: Always

extraArgs:
Expand Down
3 changes: 2 additions & 1 deletion pkg/client/irods/operations.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ func TestConnection(conn *IRODSFSConnectionInfo) error {

oneMin := 1 * time.Minute
oneHour := 1 * time.Hour
fsConfig := irodsclient_fs.NewFileSystemConfig(applicationName, oneHour, oneMin, oneMin, 1, oneMin, oneMin, nil, true, false)
fourMB := 4 * 1024 * 1024
fsConfig := irodsclient_fs.NewFileSystemConfig(applicationName, oneHour, oneMin, oneMin, 1, fourMB, oneMin, oneMin, nil, true, false)
filesystem, err := irodsclient_fs.NewFileSystem(account, fsConfig)
if err != nil {
return err
Expand Down

0 comments on commit 99f7e8e

Please sign in to comment.