├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── 1-bug-report.yml │ ├── 2-feature-request.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── helm-docs.sh ├── linters │ └── .textlintrc ├── renovate-config.json5 ├── renovate-entrypoint.sh ├── renovate-postupgrade.sh └── workflows │ ├── lint-test.yaml │ ├── linter.yml │ ├── release.yaml │ ├── renovate.yaml │ └── sync-readme.yaml ├── .gitignore ├── .prettierignore ├── CONTRIBUTING.md ├── LICENSE ├── PROCESSES.md ├── README.md ├── charts └── jenkins │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.yaml │ ├── README.md │ ├── Tiltfile │ ├── UPGRADING.md │ ├── VALUES.md │ ├── VALUES.md.gotmpl │ ├── ci │ ├── default-values.yaml │ ├── other-values.yaml │ └── with-secrets-values.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── auto-reload-config.yaml │ ├── config-init-scripts.yaml │ ├── config.yaml │ ├── deprecation.yaml │ ├── home-pvc.yaml │ ├── jcasc-config.yaml │ ├── jenkins-agent-svc.yaml │ ├── jenkins-aws-security-group-policies.yaml │ ├── jenkins-controller-alerting-rules.yaml │ ├── jenkins-controller-backendconfig.yaml │ ├── jenkins-controller-ingress.yaml │ ├── jenkins-controller-networkpolicy.yaml │ ├── jenkins-controller-pdb.yaml │ ├── jenkins-controller-podmonitor.yaml │ ├── jenkins-controller-route.yaml │ ├── jenkins-controller-secondary-ingress.yaml │ ├── jenkins-controller-servicemonitor.yaml │ ├── jenkins-controller-statefulset.yaml │ ├── jenkins-controller-svc.yaml │ ├── rbac.yaml │ ├── secret-additional.yaml │ ├── secret-claims.yaml │ ├── secret-https-jks.yaml │ ├── secret.yaml │ ├── service-account-agent.yaml │ ├── service-account.yaml │ └── tests │ │ ├── jenkins-test.yaml │ │ └── test-config.yaml │ ├── unittests │ ├── __snapshot__ │ │ ├── config-test.yaml.snap │ │ ├── garbage-collect-test.yaml.snap │ │ ├── instance-cap-test.yaml.snap │ │ ├── jcasc-config-test.yaml.snap │ │ └── jenkins-controller-statefulset-test.yaml.snap │ ├── config-init-scripts-test.yaml │ ├── config-test.yaml │ ├── garbage-collect-test.yaml │ ├── home-pvc-test.yaml │ ├── instance-cap-test.yaml │ ├── jcasc-config-test.yaml │ ├── jenkins-agent-svc-test.yaml │ ├── jenkins-controller-alerting-rules-test.yaml │ ├── jenkins-controller-ingress-1.19-test.yaml │ ├── jenkins-controller-ingress-DRY-test.yaml │ ├── jenkins-controller-ingress-test.yaml │ ├── jenkins-controller-networkpolicy-test.yaml │ ├── jenkins-controller-pdb-1.21-test.yaml │ ├── jenkins-controller-pdb-test.yaml │ ├── jenkins-controller-secondary-ingress-1.19-test.yaml │ ├── jenkins-controller-secondary-ingress-test.yaml │ ├── jenkins-controller-servicemonitor_test.yaml │ ├── jenkins-controller-statefulset-test.yaml │ ├── jenkins-controller-svc-test.yaml │ ├── rbac-test.yaml │ ├── secret-additional-test.yaml │ ├── secret-claims-test.yaml │ ├── secret-existing-test.yaml │ ├── secret-test.yaml │ ├── service-account-agent-test.yaml │ └── service-account-test.yaml │ └── values.yaml └── ct.yaml /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/.github/ISSUE_TEMPLATE/1-bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/.github/ISSUE_TEMPLATE/2-feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/helm-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/.github/helm-docs.sh -------------------------------------------------------------------------------- /.github/linters/.textlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/.github/linters/.textlintrc -------------------------------------------------------------------------------- /.github/renovate-config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/.github/renovate-config.json5 -------------------------------------------------------------------------------- /.github/renovate-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/.github/renovate-entrypoint.sh -------------------------------------------------------------------------------- /.github/renovate-postupgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/.github/renovate-postupgrade.sh -------------------------------------------------------------------------------- /.github/workflows/lint-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/.github/workflows/lint-test.yaml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/renovate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/.github/workflows/renovate.yaml -------------------------------------------------------------------------------- /.github/workflows/sync-readme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/.github/workflows/sync-readme.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.tgz 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/.prettierignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /PROCESSES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/PROCESSES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /charts/jenkins/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/.helmignore -------------------------------------------------------------------------------- /charts/jenkins/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/CHANGELOG.md -------------------------------------------------------------------------------- /charts/jenkins/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/Chart.yaml -------------------------------------------------------------------------------- /charts/jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/README.md -------------------------------------------------------------------------------- /charts/jenkins/Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/Tiltfile -------------------------------------------------------------------------------- /charts/jenkins/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/UPGRADING.md -------------------------------------------------------------------------------- /charts/jenkins/VALUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/VALUES.md -------------------------------------------------------------------------------- /charts/jenkins/VALUES.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/VALUES.md.gotmpl -------------------------------------------------------------------------------- /charts/jenkins/ci/default-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/ci/default-values.yaml -------------------------------------------------------------------------------- /charts/jenkins/ci/other-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/ci/other-values.yaml -------------------------------------------------------------------------------- /charts/jenkins/ci/with-secrets-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/ci/with-secrets-values.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/jenkins/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/jenkins/templates/auto-reload-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/auto-reload-config.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/config-init-scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/config-init-scripts.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/config.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/deprecation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/deprecation.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/home-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/home-pvc.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/jcasc-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/jcasc-config.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/jenkins-agent-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/jenkins-agent-svc.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/jenkins-aws-security-group-policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/jenkins-aws-security-group-policies.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/jenkins-controller-alerting-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/jenkins-controller-alerting-rules.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/jenkins-controller-backendconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/jenkins-controller-backendconfig.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/jenkins-controller-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/jenkins-controller-ingress.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/jenkins-controller-networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/jenkins-controller-networkpolicy.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/jenkins-controller-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/jenkins-controller-pdb.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/jenkins-controller-podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/jenkins-controller-podmonitor.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/jenkins-controller-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/jenkins-controller-route.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/jenkins-controller-secondary-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/jenkins-controller-secondary-ingress.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/jenkins-controller-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/jenkins-controller-servicemonitor.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/jenkins-controller-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/jenkins-controller-statefulset.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/jenkins-controller-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/jenkins-controller-svc.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/rbac.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/secret-additional.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/secret-additional.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/secret-claims.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/secret-claims.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/secret-https-jks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/secret-https-jks.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/secret.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/service-account-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/service-account-agent.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/service-account.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/tests/jenkins-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/tests/jenkins-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/tests/test-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/templates/tests/test-config.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/__snapshot__/config-test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/__snapshot__/config-test.yaml.snap -------------------------------------------------------------------------------- /charts/jenkins/unittests/__snapshot__/garbage-collect-test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/__snapshot__/garbage-collect-test.yaml.snap -------------------------------------------------------------------------------- /charts/jenkins/unittests/__snapshot__/instance-cap-test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/__snapshot__/instance-cap-test.yaml.snap -------------------------------------------------------------------------------- /charts/jenkins/unittests/__snapshot__/jcasc-config-test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/__snapshot__/jcasc-config-test.yaml.snap -------------------------------------------------------------------------------- /charts/jenkins/unittests/__snapshot__/jenkins-controller-statefulset-test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/__snapshot__/jenkins-controller-statefulset-test.yaml.snap -------------------------------------------------------------------------------- /charts/jenkins/unittests/config-init-scripts-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/config-init-scripts-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/config-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/config-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/garbage-collect-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/garbage-collect-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/home-pvc-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/home-pvc-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/instance-cap-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/instance-cap-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/jcasc-config-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/jcasc-config-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/jenkins-agent-svc-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/jenkins-agent-svc-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/jenkins-controller-alerting-rules-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/jenkins-controller-alerting-rules-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/jenkins-controller-ingress-1.19-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/jenkins-controller-ingress-1.19-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/jenkins-controller-ingress-DRY-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/jenkins-controller-ingress-DRY-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/jenkins-controller-ingress-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/jenkins-controller-ingress-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/jenkins-controller-networkpolicy-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/jenkins-controller-networkpolicy-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/jenkins-controller-pdb-1.21-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/jenkins-controller-pdb-1.21-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/jenkins-controller-pdb-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/jenkins-controller-pdb-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/jenkins-controller-secondary-ingress-1.19-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/jenkins-controller-secondary-ingress-1.19-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/jenkins-controller-secondary-ingress-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/jenkins-controller-secondary-ingress-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/jenkins-controller-servicemonitor_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/jenkins-controller-servicemonitor_test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/jenkins-controller-statefulset-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/jenkins-controller-statefulset-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/jenkins-controller-svc-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/jenkins-controller-svc-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/rbac-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/rbac-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/secret-additional-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/secret-additional-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/secret-claims-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/secret-claims-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/secret-existing-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/secret-existing-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/secret-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/secret-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/service-account-agent-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/service-account-agent-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/unittests/service-account-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/unittests/service-account-test.yaml -------------------------------------------------------------------------------- /charts/jenkins/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/charts/jenkins/values.yaml -------------------------------------------------------------------------------- /ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/helm-charts/HEAD/ct.yaml --------------------------------------------------------------------------------