1
0
mirror of https://github.com/helm/chart-testing.git synced 2026-02-05 09:45:14 +01:00

Prepare release v3.0.0-beta.1 (#195)

Signed-off-by: Reinhard Naegele <unguiculus@gmail.com>
This commit is contained in:
Reinhard Nägele
2019-12-13 16:43:25 +01:00
committed by GitHub
parent 62e23acd9f
commit ecd4546130
6 changed files with 6 additions and 6 deletions

View File

@@ -30,7 +30,7 @@ jobs:
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
helm_version=v3.0.0
helm_version=v3.0.1
curl -sSLO "https://get.helm.sh/helm-$helm_version-linux-amd64.tar.gz"
sudo mkdir -p "/usr/local/helm-$helm_version"
sudo tar -xzf "helm-$helm_version-linux-amd64.tar.gz" -C "/usr/local/helm-$helm_version"

View File

@@ -25,7 +25,7 @@ RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$KUBECTL
mv kubectl /usr/local/bin/
# Install Helm
ARG HELM_VERSION=v3.0.0
ARG HELM_VERSION=v3.0.1
RUN curl -LO "https://get.helm.sh/helm-$HELM_VERSION-linux-amd64.tar.gz" && \
mkdir -p "/usr/local/helm-$HELM_VERSION" && \
tar -xzf "helm-$HELM_VERSION-linux-amd64.tar.gz" -C "/usr/local/helm-$HELM_VERSION" && \

View File

@@ -18,7 +18,7 @@ set -o errexit
set -o nounset
set -o pipefail
readonly IMAGE_TAG=v3.0.0
readonly IMAGE_TAG=v3.0.0-beta.1
readonly IMAGE_REPOSITORY="quay.io/helmpack/chart-testing"
main() {

View File

@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
FROM quay.io/helmpack/chart-testing:v3.0.0
FROM quay.io/helmpack/chart-testing:v3.0.0-beta.1
ENV PATH /google-cloud-sdk/bin:$PATH
ARG CLOUD_SDK_VERSION=221.0.0

View File

@@ -10,7 +10,7 @@ jobs:
lint-charts:
docker:
- image: quay.io/helmpack/chart-testing:v3.0.0
- image: quay.io/helmpack/chart-testing:v3.0.0-beta.1
steps:
- checkout
- run:

View File

@@ -4,7 +4,7 @@ set -o errexit
set -o nounset
set -o pipefail
readonly CT_VERSION=v3.0.0
readonly CT_VERSION=v3.0.0-beta.1
readonly KIND_VERSION=v0.5.1
readonly CLUSTER_NAME=chart-testing
readonly K8S_VERSION=v1.15.3