From b2e770d1dd17c2565572186b8147bd1cd63ddd1a Mon Sep 17 00:00:00 2001 From: Joseph Kim <25185698+josephca@users.noreply.github.com> Date: Wed, 27 May 2020 15:01:23 -0400 Subject: [PATCH] point to correct version for 0.13.0 (#484) --- pkg/appconstants/version.go | 2 +- pkg/remote/defaults.go | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkg/appconstants/version.go b/pkg/appconstants/version.go index 68771524..0f4ea590 100644 --- a/pkg/appconstants/version.go +++ b/pkg/appconstants/version.go @@ -12,4 +12,4 @@ package appconstants // VersionNum : CLI Version number -const VersionNum = "x.x.dev" +const VersionNum = "0.13.0" diff --git a/pkg/remote/defaults.go b/pkg/remote/defaults.go index 330fde9a..1028b03f 100644 --- a/pkg/remote/defaults.go +++ b/pkg/remote/defaults.go @@ -42,16 +42,16 @@ const ( GatekeeperImage = "eclipse/codewind-gatekeeper-amd64" // PFEImageTag is the image tag associated with the docker image that's used for Codewind-PFE - PFEImageTag = "latest" + PFEImageTag = "0.13.0" // PerformanceTag is the image tag associated with the docker image that's used for the Performance dashboard - PerformanceTag = "latest" + PerformanceTag = "0.13.0" // KeycloakImageTag is the image tag associated with the docker image that's used for Codewind-Keycloak - KeycloakImageTag = "latest" + KeycloakImageTag = "0.13.0" // GatekeeperImageTag is the image tag associated with the docker image that's used for Codewind-Gatekeeper - GatekeeperImageTag = "latest" + GatekeeperImageTag = "0.13.0" // ImagePullPolicy is the pull policy used for all containers in Codewind, defaults to Always ImagePullPolicy = corev1.PullAlways