diff --git a/build/Dockerfile b/build/Dockerfile index 713ecdf6..9e3fda15 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -20,7 +20,7 @@ FROM ${BASE_IMAGE} LABEL name="StorageOS Cluster Operator" \ maintainer="support@storageos.com" \ vendor="StorageOS" \ - version="v2.4.0" \ + version="v2.4.0-rc.1" \ release="2" \ distribution-scope="public" \ architecture="x86_64" \ diff --git a/internal/pkg/image/image.go b/internal/pkg/image/image.go index b7848b0f..f800720f 100644 --- a/internal/pkg/image/image.go +++ b/internal/pkg/image/image.go @@ -4,7 +4,7 @@ import "os" // Default image constant variables. const ( - DefaultNodeContainerImage = "storageos/node:v2.4.0" + DefaultNodeContainerImage = "storageos/node:v2.4.0-rc.1" DefaultInitContainerImage = "storageos/init:v2.1.0" CSIv1ClusterDriverRegistrarContainerImage = "quay.io/k8scsi/csi-cluster-driver-registrar:v1.0.1" CSIv1NodeDriverRegistrarContainerImage = "quay.io/k8scsi/csi-node-driver-registrar:v2.1.0" @@ -18,7 +18,7 @@ const ( CSIv0ExternalProvisionerContainerImage = "storageos/csi-provisioner:v0.4.3" CSIv0ExternalAttacherContainerImage = "quay.io/k8scsi/csi-attacher:v0.4.2" DefaultNFSContainerImage = "storageos/nfs:1.0.0" - DefaultAPIManagerImage = "storageos/api-manager:v1.1.0" + DefaultAPIManagerImage = "storageos/api-manager:v1.1.1" DefaultHyperkubeContainerRegistry = "gcr.io/google_containers/hyperkube"