diff --git a/build/Dockerfile b/build/Dockerfile index 7ffd9d3c7..f25e58ec2 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -31,9 +31,9 @@ RUN curl -LO https://s3.us-west-2.amazonaws.com/amazon-eks/1.21.2/2021-07-05/bin # Kubefirst cli RUN curl -LO https://github.com/kubefirst/kubefirst/releases/download/$KUBEFIRST_VERSION/kubefirst_${KUBEFIRST_VERSION}_linux_amd64.tar.gz && \ - tar -xvzf kubefirst-$KUBEFIRST_VERSION-linux-amd64.tar.gz -C /usr/local/bin/ && \ + tar -xvzf kubefirst_${KUBEFIRST_VERSION}_linux_amd64.tar.gz -C /usr/local/bin/ && \ chmod +x /usr/local/bin/kubefirst && \ - rm kubefirst-$KUBEFIRST_VERSION-linux-amd64.tar.gz + rm kubefirst_${KUBEFIRST_VERSION}_linux_amd64.tar.gz # setup user RUN useradd -ms /bin/bash developer diff --git a/configs/config.go b/configs/config.go index 2bab9b7b6..a61d7f856 100644 --- a/configs/config.go +++ b/configs/config.go @@ -89,7 +89,7 @@ func ReadConfig() *Config { config.HelmClientPath = fmt.Sprintf("%s/tools/helm", config.K1FolderPath) config.CertsPath = fmt.Sprintf("%s/ssl", config.K1FolderPath) config.TerraformVersion = "1.0.11" - config.ConsoleVersion = "0.1.8" + config.ConsoleVersion = "0.1.9" config.ArgoCDChartHelmVersion = "4.10.5" // todo adopt latest helmVersion := "v3.9.0" config.HelmVersion = "v3.6.1"