update Argo CD to v0.5.0
This commit is contained in:
parent
6146f2bafa
commit
65fab695fe
2 changed files with 4 additions and 1 deletions
|
@ -2,4 +2,4 @@ apiVersion: v1
|
||||||
appVersion: "1.2.0"
|
appVersion: "1.2.0"
|
||||||
description: A Helm chart for Argo-CD
|
description: A Helm chart for Argo-CD
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 0.4.0
|
version: 0.5.0
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
SRCROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
SRCROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
||||||
|
GIT_PUSH=${GIT_PUSH:-true}
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
|
@ -17,4 +18,6 @@ cd $SRCROOT/output && git status
|
||||||
if [ "$GIT_PUSH" == "true" ]
|
if [ "$GIT_PUSH" == "true" ]
|
||||||
then
|
then
|
||||||
cd $SRCROOT/output && git add . && git commit -m "Publish charts" && git push git@github.com:argoproj/argo-helm.git gh-pages
|
cd $SRCROOT/output && git add . && git commit -m "Publish charts" && git push git@github.com:argoproj/argo-helm.git gh-pages
|
||||||
|
helm repo update
|
||||||
|
helm search argo-cd
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue