From 0914c4bf4db54b254f75b7fa48edd826a1d0d633 Mon Sep 17 00:00:00 2001 From: Illyoung Choi Date: Wed, 26 Jan 2022 17:18:24 -0700 Subject: [PATCH] Allow duration values without units --- Makefile | 2 +- deploy/image/irods_csi_driver_pool_build.dockerfile | 2 +- deploy/image/irods_fuse_build.dockerfile | 2 +- deploy/kubernetes/overlays/stable/kustomization.yaml | 4 ++-- helm/Chart.yaml | 4 ++-- helm/README.md | 2 +- helm/values.yaml | 6 +++--- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index e10c589..67f7d8c 100644 --- a/Makefile +++ b/Makefile @@ -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.5.0 +VERSION=v0.5.1 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}" diff --git a/deploy/image/irods_csi_driver_pool_build.dockerfile b/deploy/image/irods_csi_driver_pool_build.dockerfile index 1db87c6..0e80eb9 100644 --- a/deploy/image/irods_csi_driver_pool_build.dockerfile +++ b/deploy/image/irods_csi_driver_pool_build.dockerfile @@ -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.2.3 +RUN git checkout tags/v0.2.4 # Build RUN make build \ No newline at end of file diff --git a/deploy/image/irods_fuse_build.dockerfile b/deploy/image/irods_fuse_build.dockerfile index 4c84e6c..044352c 100644 --- a/deploy/image/irods_fuse_build.dockerfile +++ b/deploy/image/irods_fuse_build.dockerfile @@ -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.4.3 +RUN git checkout tags/v0.4.4 # Build RUN make build \ No newline at end of file diff --git a/deploy/kubernetes/overlays/stable/kustomization.yaml b/deploy/kubernetes/overlays/stable/kustomization.yaml index bf7a18e..29d188b 100644 --- a/deploy/kubernetes/overlays/stable/kustomization.yaml +++ b/deploy/kubernetes/overlays/stable/kustomization.yaml @@ -4,9 +4,9 @@ bases: - ../../base images: - name: cyverse/irods-csi-driver - newTag: v0.5.0 + newTag: v0.5.1 - name: cyverse/irods-csi-driver-pool - newTag: v0.5.0 + newTag: v0.5.1 - name: quay.io/k8scsi/csi-provisioner newTag: v1.6.0 - name: quay.io/k8scsi/livenessprobe diff --git a/helm/Chart.yaml b/helm/Chart.yaml index be09077..a3ca6c9 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 -appVersion: "0.5.0" +appVersion: "0.5.1" name: irods-csi-driver description: A Helm chart for iRODS CSI Driver -version: 0.5.0 +version: 0.5.1 kubeVersion: ">=1.14.0-0" home: https://github.com/cyverse/irods-csi-driver sources: diff --git a/helm/README.md b/helm/README.md index 6b81fdf..38ab100 100644 --- a/helm/README.md +++ b/helm/README.md @@ -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.5.0 \ + --version 0.5.1 \ --namespace kube-system \ -f values.yaml ``` diff --git a/helm/values.yaml b/helm/values.yaml index b9e544b..092a840 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -13,7 +13,7 @@ controllerService: irodsPlugin: image: repository: cyverse/irods-csi-driver - tag: v0.5.0 + tag: v0.5.1 pullPolicy: Always extraArgs: @@ -53,7 +53,7 @@ nodeService: irodsPlugin: image: repository: cyverse/irods-csi-driver - tag: v0.5.0 + tag: v0.5.1 pullPolicy: Always extraArgs: @@ -68,7 +68,7 @@ nodeService: irodsPool: image: repository: cyverse/irods-csi-driver-pool - tag: v0.5.0 + tag: v0.5.1 pullPolicy: Always extraArgs: []