fix(ci): change publish docker image from gcr.io/kubernetes-charts-ci/test-image to quay.io/helmpack/chart-testing
Signed-off-by: krrrr38 <k.kaizu38@gmail.com>
This commit is contained in:
parent
6d27a63c6c
commit
61190d0742
2 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@ version: 2.1
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
docker:
|
docker:
|
||||||
- image: quay.io/helmpack/chart-testing:v3.3.1
|
- image: quay.io/helmpack/chart-testing:v3.3.1
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- run: ct lint --config .circleci/chart-testing.yaml --lint-conf .circleci/lintconf.yaml
|
- run: ct lint --config .circleci/chart-testing.yaml --lint-conf .circleci/lintconf.yaml
|
||||||
|
@ -11,14 +11,13 @@ jobs:
|
||||||
publish:
|
publish:
|
||||||
docker:
|
docker:
|
||||||
# We just need an image with `helm` on it. Handily we know of one already.
|
# We just need an image with `helm` on it. Handily we know of one already.
|
||||||
- image: gcr.io/kubernetes-charts-ci/test-image:v3.1.0
|
- image: quay.io/helmpack/chart-testing:v3.3.1
|
||||||
steps:
|
steps:
|
||||||
# install the additional keys needed to push to Github. Alex Collins owns these keys.
|
# install the additional keys needed to push to Github. Alex Collins owns these keys.
|
||||||
- add_ssh_keys
|
- add_ssh_keys
|
||||||
- run: git config --global user.email "nobody@circleci.com"
|
- run: git config --global user.email "nobody@circleci.com"
|
||||||
- run: git config --global user.name "Circle CI Build"
|
- run: git config --global user.name "Circle CI Build"
|
||||||
- checkout
|
- checkout
|
||||||
- run: helm init --client-only
|
|
||||||
# Only actually publish charts on master.
|
# Only actually publish charts on master.
|
||||||
- run: |
|
- run: |
|
||||||
set -x
|
set -x
|
||||||
|
|
|
@ -6,8 +6,9 @@ GIT_PUSH=${GIT_PUSH:-false}
|
||||||
|
|
||||||
rm -rf $SRCROOT/output && git clone -b gh-pages git@github.com:argoproj/argo-helm.git $SRCROOT/output
|
rm -rf $SRCROOT/output && git clone -b gh-pages git@github.com:argoproj/argo-helm.git $SRCROOT/output
|
||||||
|
|
||||||
helm repo add stable https://kubernetes-charts.storage.googleapis.com
|
helm repo add stable https://charts.helm.sh/stable
|
||||||
helm repo add argoproj https://argoproj.github.io/argo-helm
|
helm repo add argoproj https://argoproj.github.io/argo-helm
|
||||||
|
helm repo add minio https://helm.min.io/
|
||||||
|
|
||||||
for dir in $(find $SRCROOT/charts -mindepth 1 -maxdepth 1 -type d);
|
for dir in $(find $SRCROOT/charts -mindepth 1 -maxdepth 1 -type d);
|
||||||
do
|
do
|
||||||
|
|
Loading…
Reference in a new issue