Skip to content

Commit

Permalink
Upgrade go-irodsclient to cap max connections
Browse files Browse the repository at this point in the history
  • Loading branch information
iychoi committed Aug 16, 2022
1 parent 0d2438a commit 7f5d34d
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,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.8.3
VERSION=v0.8.4
GIT_COMMIT?=$(shell git rev-parse HEAD)
BUILD_DATE?=$(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
LDFLAGS?="-X ${PKG}/pkg/driver.driverVersion=${VERSION} -X ${PKG}/pkg/driver.gitCommit=${GIT_COMMIT} -X ${PKG}/pkg/driver.buildDate=${BUILD_DATE}"
Expand Down
2 changes: 1 addition & 1 deletion deploy/image/irods_csi_driver_pool_build.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ LABEL description="iRODS FUSE Lite Pool Server Build Image"
WORKDIR /opt/
RUN git clone https://github.com/cyverse/irodsfs-pool.git
WORKDIR /opt/irodsfs-pool
RUN git checkout tags/v0.5.10
RUN git checkout tags/v0.5.11

# Build
RUN make build
2 changes: 1 addition & 1 deletion deploy/image/irods_fuse_build.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ LABEL description="iRODS FUSE Lite Build Image"
WORKDIR /opt/
RUN git clone https://github.com/cyverse/irodsfs.git
WORKDIR /opt/irodsfs
RUN git checkout tags/v0.7.6
RUN git checkout tags/v0.7.7

# Build
RUN make build
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.8.3
newTag: v0.8.4
- name: cyverse/irods-csi-driver-pool
newTag: v0.8.3
newTag: v0.8.4
- name: quay.io/k8scsi/csi-provisioner
newTag: v1.6.0
- name: quay.io/k8scsi/livenessprobe
Expand Down
2 changes: 1 addition & 1 deletion 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.9.5
github.com/cyverse/go-irodsclient v0.9.6
github.com/rs/xid v1.3.0
google.golang.org/grpc v1.40.0
gopkg.in/yaml.v2 v2.4.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,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.9.5 h1:1RZFGu/EiT7XBjgMAbt3WbGZ+0tVFj11qtT/rItGWYQ=
github.com/cyverse/go-irodsclient v0.9.5/go.mod h1:UaBJ8f9cRQYx3kkmbfWMDlZGQ4AF5k5oV2X27BGiO4o=
github.com/cyverse/go-irodsclient v0.9.6 h1:WVnnQD1WwGozQj+GO2Alt0y/ec/VWbznPB/bETHlR84=
github.com/cyverse/go-irodsclient v0.9.6/go.mod h1:UaBJ8f9cRQYx3kkmbfWMDlZGQ4AF5k5oV2X27BGiO4o=
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
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.8.3"
appVersion: "0.8.4"
name: irods-csi-driver
description: A Helm chart for iRODS CSI Driver
version: 0.8.3
version: 0.8.4
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.8.3 \
--version 0.8.4 \
--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.8.3
tag: v0.8.4
pullPolicy: Always

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

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

extraArgs:
Expand Down

0 comments on commit 7f5d34d

Please sign in to comment.