diff --git a/charts/jx-verify/Chart.yaml b/charts/jx-verify/Chart.yaml index 0311282..c8700b7 100644 --- a/charts/jx-verify/Chart.yaml +++ b/charts/jx-verify/Chart.yaml @@ -3,6 +3,6 @@ description: | This chart deletes any pods which can't load their images to work around timing issues with Workload Identity and preview environments icon: https://raw.githubusercontent.com/jenkins-x/jenkins-x-website/master/images/logo/jenkinsx-icon-color.svg name: jx-verify -version: 0.1.0-SNAPSHOT +version: 0.0.61 home: https://github.com/jenkins-x/jx-verify diff --git a/charts/jx-verify/README.md b/charts/jx-verify/README.md new file mode 100644 index 0000000..09e7ea5 --- /dev/null +++ b/charts/jx-verify/README.md @@ -0,0 +1,40 @@ + + +# jx verify + +This chart verifies pods start and deletes any that fail to pull images. + +## Installing + +- Add jx3 helm charts repo + +```bash +helm repo add jx3 https://storage.googleapis.com/jenkinsxio/charts + +helm repo update +``` + +- Install (or upgrade) + +```bash +# This will install jx-verify in the jx namespace (with a jx-verify release name) + +# Helm v3 +helm upgrade --install jx-verify --namespace jx jx3/jx-verify +``` + +Look [below](#values) for the list of all available options and their corresponding description. + +## Uninstalling + +To uninstall the chart, simply delete the release. + +```bash +# This will uninstall jx-verify in the jx-verify namespace (assuming a jx-verify release name) + +# Helm v3 +helm uninstall jx-verify --namespace jx +``` + +## Version + diff --git a/charts/jx-verify/jx-verify-0.0.61.tgz b/charts/jx-verify/jx-verify-0.0.61.tgz new file mode 100644 index 0000000..d3bb8d8 Binary files /dev/null and b/charts/jx-verify/jx-verify-0.0.61.tgz differ diff --git a/charts/jx-verify/templates/release.yaml b/charts/jx-verify/templates/release.yaml new file mode 100644 index 0000000..f1c5238 --- /dev/null +++ b/charts/jx-verify/templates/release.yaml @@ -0,0 +1,49 @@ +{{- if .Capabilities.APIVersions.Has "jenkins.io/v1/Release" }} +apiVersion: jenkins.io/v1 +kind: Release +metadata: + creationTimestamp: "2021-02-15T05:29:25Z" + deletionTimestamp: null + name: '{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}' +spec: + commits: + - author: + email: james.strachan@gmail.com + name: James Strachan + branch: master + committer: + email: james.strachan@gmail.com + name: James Strachan + message: | + chore: regen docs + sha: c4d2abe33d52d1b037546d07e401923f59888eff + - author: + email: james.strachan@gmail.com + name: James Strachan + branch: master + committer: + email: james.strachan@gmail.com + name: James Strachan + message: | + fix: add flags so we can avoid failing an actual Job + + to return test results inside the output of a Job without causing the terraform operator to retry and fail + sha: b3ffddb0b22f584d6941aeec0dfae244413a3f60 + - author: + email: james.strachan@gmail.com + name: James Strachan + branch: master + committer: + email: james.strachan@gmail.com + name: James Strachan + message: | + chore: fix waiting for job + sha: bcc596e5e8c1315ca84469d0c6bb4ad76f73707e + gitHttpUrl: https://github.com/jenkins-x/jx-verify + gitOwner: jenkins-x + gitRepository: jx-verify + name: '{{ .Chart.Name }}' + version: 0.0.61 +status: {} + +{{- end }} diff --git a/charts/jx-verify/values.yaml b/charts/jx-verify/values.yaml index 1bcfd9e..60b0791 100644 --- a/charts/jx-verify/values.yaml +++ b/charts/jx-verify/values.yaml @@ -5,7 +5,7 @@ image: repository: gcr.io/jenkinsxio/jx-verify # image.tag -- Docker images tag - tag: 0.0.52 + tag: 0.0.61 # image.pullPolicy -- Image pull policy pullPolicy: IfNotPresent