diff --git a/charts/jx-test/Chart.yaml b/charts/jx-test/Chart.yaml index a01e0d4..43a1c2a 100644 --- a/charts/jx-test/Chart.yaml +++ b/charts/jx-test/Chart.yaml @@ -3,6 +3,6 @@ description: | This chart installs the jx-test CronJob to garbage collect failed system test resources icon: https://raw.githubusercontent.com/jenkins-x/jenkins-x-website/master/images/logo/jenkinsx-icon-color.svg name: jx-test -version: 0.1.0-SNAPSHOT +version: 0.0.50 home: https://github.com/jenkins-x-plugins/jx-test - +appVersion: 0.0.50 diff --git a/charts/jx-test/README.md b/charts/jx-test/README.md new file mode 100644 index 0000000..ed53172 --- /dev/null +++ b/charts/jx-test/README.md @@ -0,0 +1,40 @@ + + +# jx test + +This chart garbage collects failed test resources + +## 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-test in the jx namespace (with a jx-test release name) + +# Helm v3 +helm upgrade --install jx-test --namespace jx jx3/jx-test +``` + +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-test in the jx-test namespace (assuming a jx-test release name) + +# Helm v3 +helm uninstall jx-test --namespace jx +``` + +## Version + diff --git a/charts/jx-test/jx-test-0.0.50.tgz b/charts/jx-test/jx-test-0.0.50.tgz new file mode 100644 index 0000000..7e5f7ac Binary files /dev/null and b/charts/jx-test/jx-test-0.0.50.tgz differ diff --git a/charts/jx-test/values.yaml b/charts/jx-test/values.yaml index 008e4c0..84c8d27 100644 --- a/charts/jx-test/values.yaml +++ b/charts/jx-test/values.yaml @@ -1,32 +1,22 @@ image: # image.parentRepository -- Docker registry to pull images from parentRepository: gcr.io/jenkinsxio - - repository: gcr.io/jenkinsxio/jx-test - + repository: ghcr.io/jenkins-x/jx-test # image.tag -- Docker images tag - tag: 0.0.35 - + tag: 0.0.50 # image.pullPolicy -- Image pull policy pullPolicy: IfNotPresent - # the age of Terraform resources to remove duration: 2h - jx: # whether to create a Release CRD when installing charts with Release CRDs included releaseCRD: false - gcJobs: # gcJobs.schedule -- Cron expression to periodically garbage collect test resources; every hour by default schedule: "0 * * * *" - # gcJobs.failedJobsHistoryLimit -- Drives the failed jobs history limit failedJobsHistoryLimit: 1 - # gcJobs.successfulJobsHistoryLimit -- Drives the successful jobs history limit successfulJobsHistoryLimit: 3 - # gcJobs.concurrencyPolicy -- Drives the job's concurrency policy concurrencyPolicy: Forbid -