├── .github ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── setup-kind-cluster-for-helm-chart-testing │ │ └── action.yaml ├── dependabot.yaml ├── renovate-bump.sh └── workflows │ ├── conftest.yaml │ ├── install-integration-tests-operators-installer.yaml │ ├── install-unit-test.yaml │ ├── lint-test.yaml │ ├── precommit-validate.yml │ ├── release.yaml │ └── scorecard.yml ├── .gitignore ├── .gitleaks.toml ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── _templates.gotmpl ├── _test ├── bats-support-clone.bash ├── conftest.sh ├── ct-config.yaml ├── helm-install-debug-logging.sh ├── kind-config.yaml ├── private-registry │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── ConfigMap_local-registry.yaml │ │ ├── Deployment_registry.yaml │ │ ├── Ingress.yaml │ │ ├── PersistentVolumeClaim.yaml │ │ ├── Secret_htpasswd.yaml │ │ ├── Service.yaml │ │ └── values.yaml │ └── values.yaml └── prow.sh ├── charts-we-like.md ├── charts ├── ansible-automation-platform │ ├── .helmignore │ ├── .test.sh │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── AnsibleAutomationController.yaml │ │ ├── admin-secret.yaml │ │ ├── cacertSecret.yaml │ │ ├── crd-reader.yaml │ │ ├── privileged-scc.yaml │ │ └── wait-for-crd.yaml │ └── values.yaml ├── argocd-operator │ ├── .helmignore │ ├── .test.sh │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── ArgoCD.yaml │ │ ├── ClusterRole.yaml │ │ ├── ClusterRoleBinding.yaml │ │ ├── OperatorGroup.yaml │ │ ├── PrometheusSubscription.yaml │ │ ├── RoleBinding.yaml │ │ ├── Secret.yaml │ │ ├── Subscription.yaml │ │ ├── anyuid-scc.yaml │ │ ├── crd-reader.yaml │ │ ├── helpers.tpl │ │ └── wait-for-crd.yaml │ └── values.yaml ├── bootstrap-project │ ├── .test.sh │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── bindings.yaml │ │ ├── namespace.yaml │ │ ├── operatorgroup.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── botpress │ ├── .helmignore │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── botpress_fabicon.png │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── pvc.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml ├── cert-manager-configs │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── AwsSecret.yaml │ │ ├── CABundle.yaml │ │ ├── Certificate.yaml │ │ ├── ClusterIssuer.yaml │ │ └── OpenshiftConfigs.yaml │ └── values.yaml ├── dev-ex-dashboard │ ├── .test.sh │ ├── Chart.yaml │ ├── templates │ │ ├── configmap.yaml │ │ ├── deploymentconfig.yaml │ │ ├── imagestream.yaml │ │ ├── route.yaml │ │ └── service.yaml │ └── values.yaml ├── etherpad │ ├── .helmignore │ ├── .test.sh │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── pvc.yaml │ │ ├── route.yaml │ │ └── service.yaml │ └── values.yaml ├── gitea │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deploymentconfig.yaml │ │ ├── imagestream.yaml │ │ ├── persistentvolumeclaim.yaml │ │ ├── postgresql-dc.yaml │ │ ├── postgresql-is.yaml │ │ ├── postgresql-pvc.yaml │ │ ├── postgresql-secret.yaml │ │ ├── postgresql-svc.yaml │ │ ├── route.yaml │ │ └── service.yaml │ └── values.yaml ├── gitops-operator │ ├── .helmignore │ ├── .test.sh │ ├── Chart.yaml │ ├── README.md │ ├── TEAM_DOCS.md │ ├── docs │ │ ├── controller-cluster-rbac-rules.yaml │ │ ├── images │ │ │ ├── cluster-argo-for-all.png │ │ │ ├── cluster-argo-per-team.png │ │ │ ├── cluster-argo.png │ │ │ ├── cluster-scoped-argocd.png │ │ │ ├── custom-role-bindings.png │ │ │ ├── namespaced-role-bindings.png │ │ │ ├── namespaced-team-argo.png │ │ │ ├── one-argo-to-rule-them-all.png │ │ │ ├── sre-cluster-argo-team-namespaced.png │ │ │ └── team-namespaced-argocd.png │ │ └── server-cluster-rbac-rules.yaml │ ├── templates │ │ ├── argocd-application-controller-clusterrole.yaml │ │ ├── argocd-application-controller-clusterrolebinding.yaml │ │ ├── argocd-cr.yaml │ │ ├── argocd-server-clusterrole.yaml │ │ ├── argocd-server-clusterrolebinding.yaml │ │ ├── crd-reader.yaml │ │ ├── secrets.yaml │ │ ├── subscription.yaml │ │ └── wait-for-crd.yaml │ └── values.yaml ├── helper-console-links │ ├── .test.sh │ ├── Chart.yaml │ ├── README.md │ ├── img │ │ └── screenshot.png │ ├── templates │ │ └── ConsoleLink.yaml │ └── values.yaml ├── helper-operator │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── README.md.gotmpl │ ├── templates │ │ ├── _helpers.tpl │ │ ├── jobs │ │ │ ├── enable_console_plugin-crb.yaml │ │ │ ├── enable_console_plugin-role.yaml │ │ │ ├── enable_console_plugin-sa.yaml │ │ │ └── enable_console_plugin.yaml │ │ ├── namespace.yaml │ │ └── operators │ │ │ ├── operatorgroup.yaml │ │ │ └── subscription.yaml │ └── values.yaml ├── helper-sealed-secrets │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ └── SealedSecret.yaml │ └── values.yaml ├── helper-status-checker │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── README.md.gotmpl │ ├── templates │ │ ├── _helpers.tpl │ │ ├── check_if_operator_is_ready.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── installplan-approver.yaml │ │ └── serviceAccount.yaml │ └── values.yaml ├── ipa │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── setup-users.sh │ ├── templates │ │ ├── _helpers.tpl │ │ ├── anyuid-scc.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configure-oauth-rbac.yaml │ │ ├── deployment.yaml │ │ ├── machineconfig.yaml │ │ ├── oauth-secret.yaml │ │ ├── pvc.yaml │ │ ├── route.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── setup-oauth-job.yaml │ └── values.yaml ├── jenkins │ ├── .helmignore │ ├── .test.sh │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── PersistentVolumeClaim.yaml │ │ ├── SealedSecret.yaml │ │ ├── buildconfigs.yaml │ │ ├── configuration-as-code-configmap.yaml │ │ ├── deployment.yaml │ │ ├── imagestreams.yaml │ │ ├── rolebinding.yaml │ │ ├── route.yaml │ │ ├── secret.yaml │ │ ├── serviceaccount.yaml │ │ └── services.yaml │ └── values.yaml ├── kopf │ ├── .helmignore │ ├── .test.sh │ ├── Chart.yaml │ ├── templates │ │ ├── clusterkopfpeering.yaml │ │ └── kopfpeering.yaml │ └── values.yaml ├── network-policy │ ├── .helmignore │ ├── .test.sh │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NetworkPolicy.yaml │ │ └── _helpers.tpl │ └── values.yaml ├── openshift-logforwarding-splunk │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── files │ │ ├── .gitkeep │ │ ├── default-openshift-logging-fluentd.crt │ │ └── default-openshift-logging-fluentd.key │ ├── templates │ │ ├── _helpers.tpl │ │ ├── log-forwarding-instance-tp.yaml │ │ ├── log-forwarding-instance.yaml │ │ ├── log-forwarding-serviceaccount.yaml │ │ ├── log-forwarding-splunk-certs-secret.yaml │ │ ├── log-forwarding-splunk-configmap.yaml │ │ ├── log-forwarding-splunk-secret.yaml │ │ ├── log-forwarding-splunk-service-headless.yaml │ │ ├── log-forwarding-splunk-service.yaml │ │ └── log-forwarding-splunk-statefulset.yaml │ └── values.yaml ├── operatorhub │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── install-modes-post-hook.yaml │ │ ├── operatorgroup.yaml │ │ └── subscription.yaml │ └── values.yaml ├── operators-installer │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── _integration-tests │ │ ├── test-install-operator-0-automatic-intermediate-manual-upgrades-values.yaml │ │ ├── test-install-operator-1-automatic-intermediate-manual-upgrades-values.yaml │ │ └── test-install-operator-with-approver-image-from-private-registry.yaml │ ├── _scripts │ │ ├── installplan-approver.py │ │ ├── installplan-incremental-approver.py │ │ ├── installplan-verifier.py │ │ └── installplan_utils.py │ ├── ci │ │ ├── test-install-multiple-operators-in-different-namespaces-approve-via-helm-hook-values.yaml │ │ ├── test-install-multiple-operators-in-same-namespace-approve-via-helm-hook-values.yaml │ │ ├── test-install-old-operator-approve-not-via-helm-hook-values.yaml │ │ ├── test-install-old-operator-approve-via-helm-hook-values.yaml │ │ ├── test-install-operator-first-time-with-automatic-intermediate-manual-upgrades-values.yaml │ │ ├── test-install-operator-subscription-with-config-values.yaml │ │ ├── test-install-operator-with-channel-number-values.yaml │ │ ├── test-install-operator-with-long-name-values.yaml │ │ ├── test-install-operator-with-namespace-labels.yaml │ │ └── test-install-with-job-tolerations.yaml │ ├── templates │ │ ├── ConfigMap_operators-installer-approver-scripts.yaml │ │ ├── Job_installplan-approver.yaml │ │ ├── Job_installplan-complete-verifier.yaml │ │ ├── Namespace.yaml │ │ ├── OperatorGroup.yaml │ │ ├── RoleBinding_installplan-approvers.yaml │ │ ├── Role_installplan-approver.yaml │ │ ├── ServiceAccount_installplan-approver.yaml │ │ ├── Subscription.yaml │ │ └── _helpers.tpl │ └── values.yaml ├── owncloud │ ├── .helmignore │ ├── Chart.yaml │ ├── persistent-oauth-proxy.json │ ├── persistent.json │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cronjob.yaml │ │ ├── mariadb-dc.yaml │ │ ├── mariadb-pvc.yaml │ │ ├── mariadb-svc.yaml │ │ ├── owncloud-dc.yaml │ │ ├── owncloud-is.yaml │ │ ├── owncloud-pvc.yaml │ │ ├── owncloud-svc.yaml │ │ ├── redis-dc.yaml │ │ ├── redis-pvc.yaml │ │ ├── redis-svc.yaml │ │ ├── route.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── pact-broker │ ├── .helmignore │ ├── .test.sh │ ├── Chart.yaml │ ├── templates │ │ ├── deploymentconfig.yaml │ │ ├── postgres-dc.yaml │ │ ├── postgres-service.yaml │ │ ├── pvc.yaml │ │ ├── route.yaml │ │ ├── secrets.yaml │ │ └── service.yaml │ └── values.yaml ├── ploigos │ ├── .test.sh │ ├── Chart.yaml │ ├── README.md │ ├── delete-tssc.sh │ ├── templates │ │ ├── _helpers.tpl │ │ ├── catalog-source.yaml │ │ ├── crd-reader.yaml │ │ ├── delete-csv-hook-rbac.yaml │ │ ├── delete-csv-hook.yaml │ │ ├── operatorgroup.yaml │ │ ├── subscription.yaml │ │ ├── tsscplatform-cr.yaml │ │ └── wait-for-crd.yaml │ └── values.yaml ├── quay │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── ns-quay-enterprise.yaml │ │ ├── quay-registry.yaml │ │ └── secret-quay-registry-config-bundle.yaml │ └── values.yaml ├── sonarqube │ ├── .test.sh │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── postgres-dc.yaml │ │ ├── postgres-pvc.yaml │ │ ├── postgres-secret.yaml │ │ ├── postgres-service.yaml │ │ ├── sonar-cm-config.yaml │ │ ├── sonar-cm-copy-plugins.yaml │ │ ├── sonar-cm-install-plugins.yaml │ │ ├── sonar-deployment.yaml │ │ ├── sonar-ingress.yaml │ │ ├── sonar-pvc.yaml │ │ ├── sonar-route.yaml │ │ ├── sonar-service.yaml │ │ ├── sonar-serviceaccount.yaml │ │ ├── sonarqube-admin-secret.yaml │ │ └── update-admin-pwd-hook.yaml │ └── values.yaml ├── sonatype-nexus │ ├── .helmignore │ ├── .test.sh │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── config-nexus.txt │ │ ├── configmap.yaml │ │ ├── deployment-statefulset.yaml │ │ ├── image-pull-secret.yaml │ │ ├── ingress.yaml │ │ ├── proxy-route.yaml │ │ ├── pv.yaml │ │ ├── pvc.yaml │ │ ├── route.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── setup-nexus-job.yaml │ └── values.yaml ├── stackrox │ ├── .gitignore │ ├── .helmignore │ ├── .test.sh │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configure-stackrox-job.yaml │ │ ├── configure-stackrox-rbac.yaml │ │ ├── namespace.yaml │ │ └── subscription.yaml │ └── values.yaml ├── static-site │ ├── Chart.yaml │ ├── README-zh.md │ ├── README.md │ ├── alpine-curl-git.Dockerfile │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── cronjob.yaml │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── tekton-demo │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── assets │ │ ├── logo.png │ │ ├── pipeline-with-task-steps.png │ │ ├── pipeline.png │ │ └── routes.png │ ├── templates │ │ ├── _helpers.tpl │ │ ├── github │ │ │ ├── github-webhook-create.yaml │ │ │ ├── github-webhook-run.yaml │ │ │ ├── trigger-binding.yaml │ │ │ ├── trigger-eventlistener.yaml │ │ │ ├── trigger-sa-rbac.yaml │ │ │ ├── trigger-template.yaml │ │ │ └── trigger-webhook-rbac.yaml │ │ ├── pipelines │ │ │ └── nodejs.yaml │ │ ├── resources │ │ │ ├── nodejs-git.yaml │ │ │ ├── nodejs-images.yaml │ │ │ └── pvc.yaml │ │ ├── roles.yaml │ │ └── tasks │ │ │ ├── conditions.yaml │ │ │ ├── task-apply.yaml │ │ │ ├── task-build.yaml │ │ │ ├── task-deploy.yaml │ │ │ ├── task-docs.yaml │ │ │ ├── task-finally.yaml │ │ │ ├── task-git-clone.yaml │ │ │ ├── task-github-pull-request.yaml │ │ │ ├── task-github.yaml │ │ │ ├── task-helm.yaml │ │ │ ├── task-prepare.yaml │ │ │ ├── task-promote.yaml │ │ │ ├── task-standards.yaml │ │ │ ├── task-status.yaml │ │ │ ├── task-tag.yaml │ │ │ ├── task-test-integration.yaml │ │ │ └── task-test-performance.yaml │ └── values.yaml ├── tpl │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── templates │ │ ├── _job_sleeptimer.tpl │ │ ├── _labels.tpl │ │ ├── _nodeSelector.tpl │ │ ├── _resources.tpl │ │ ├── _serviceAccount.tpl │ │ ├── _tolerations.tpl │ │ └── test │ │ │ └── example.yaml │ ├── values-example.yaml │ └── values.yaml └── update-clusterversion │ ├── .helmignore │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── README.md.gotmpl │ ├── templates │ └── clusterversion.yaml │ └── values.yaml └── renovate.json /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/setup-kind-cluster-for-helm-chart-testing/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/.github/actions/setup-kind-cluster-for-helm-chart-testing/action.yaml -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/renovate-bump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/.github/renovate-bump.sh -------------------------------------------------------------------------------- /.github/workflows/conftest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/.github/workflows/conftest.yaml -------------------------------------------------------------------------------- /.github/workflows/install-integration-tests-operators-installer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/.github/workflows/install-integration-tests-operators-installer.yaml -------------------------------------------------------------------------------- /.github/workflows/install-unit-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/.github/workflows/install-unit-test.yaml -------------------------------------------------------------------------------- /.github/workflows/lint-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/.github/workflows/lint-test.yaml -------------------------------------------------------------------------------- /.github/workflows/precommit-validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/.github/workflows/precommit-validate.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/.gitleaks.toml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /_templates.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/_templates.gotmpl -------------------------------------------------------------------------------- /_test/bats-support-clone.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/_test/bats-support-clone.bash -------------------------------------------------------------------------------- /_test/conftest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/_test/conftest.sh -------------------------------------------------------------------------------- /_test/ct-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/_test/ct-config.yaml -------------------------------------------------------------------------------- /_test/helm-install-debug-logging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/_test/helm-install-debug-logging.sh -------------------------------------------------------------------------------- /_test/kind-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/_test/kind-config.yaml -------------------------------------------------------------------------------- /_test/private-registry/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/_test/private-registry/Chart.yaml -------------------------------------------------------------------------------- /_test/private-registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/_test/private-registry/README.md -------------------------------------------------------------------------------- /_test/private-registry/templates/ConfigMap_local-registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/_test/private-registry/templates/ConfigMap_local-registry.yaml -------------------------------------------------------------------------------- /_test/private-registry/templates/Deployment_registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/_test/private-registry/templates/Deployment_registry.yaml -------------------------------------------------------------------------------- /_test/private-registry/templates/Ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/_test/private-registry/templates/Ingress.yaml -------------------------------------------------------------------------------- /_test/private-registry/templates/PersistentVolumeClaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/_test/private-registry/templates/PersistentVolumeClaim.yaml -------------------------------------------------------------------------------- /_test/private-registry/templates/Secret_htpasswd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/_test/private-registry/templates/Secret_htpasswd.yaml -------------------------------------------------------------------------------- /_test/private-registry/templates/Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/_test/private-registry/templates/Service.yaml -------------------------------------------------------------------------------- /_test/private-registry/templates/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_test/private-registry/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/_test/private-registry/values.yaml -------------------------------------------------------------------------------- /_test/prow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/_test/prow.sh -------------------------------------------------------------------------------- /charts-we-like.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts-we-like.md -------------------------------------------------------------------------------- /charts/ansible-automation-platform/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ansible-automation-platform/.helmignore -------------------------------------------------------------------------------- /charts/ansible-automation-platform/.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ansible-automation-platform/.test.sh -------------------------------------------------------------------------------- /charts/ansible-automation-platform/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ansible-automation-platform/Chart.yaml -------------------------------------------------------------------------------- /charts/ansible-automation-platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ansible-automation-platform/README.md -------------------------------------------------------------------------------- /charts/ansible-automation-platform/templates/AnsibleAutomationController.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ansible-automation-platform/templates/AnsibleAutomationController.yaml -------------------------------------------------------------------------------- /charts/ansible-automation-platform/templates/admin-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ansible-automation-platform/templates/admin-secret.yaml -------------------------------------------------------------------------------- /charts/ansible-automation-platform/templates/cacertSecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ansible-automation-platform/templates/cacertSecret.yaml -------------------------------------------------------------------------------- /charts/ansible-automation-platform/templates/crd-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ansible-automation-platform/templates/crd-reader.yaml -------------------------------------------------------------------------------- /charts/ansible-automation-platform/templates/privileged-scc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ansible-automation-platform/templates/privileged-scc.yaml -------------------------------------------------------------------------------- /charts/ansible-automation-platform/templates/wait-for-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ansible-automation-platform/templates/wait-for-crd.yaml -------------------------------------------------------------------------------- /charts/ansible-automation-platform/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ansible-automation-platform/values.yaml -------------------------------------------------------------------------------- /charts/argocd-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/argocd-operator/.helmignore -------------------------------------------------------------------------------- /charts/argocd-operator/.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/argocd-operator/.test.sh -------------------------------------------------------------------------------- /charts/argocd-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/argocd-operator/Chart.yaml -------------------------------------------------------------------------------- /charts/argocd-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/argocd-operator/README.md -------------------------------------------------------------------------------- /charts/argocd-operator/templates/ArgoCD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/argocd-operator/templates/ArgoCD.yaml -------------------------------------------------------------------------------- /charts/argocd-operator/templates/ClusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/argocd-operator/templates/ClusterRole.yaml -------------------------------------------------------------------------------- /charts/argocd-operator/templates/ClusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/argocd-operator/templates/ClusterRoleBinding.yaml -------------------------------------------------------------------------------- /charts/argocd-operator/templates/OperatorGroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/argocd-operator/templates/OperatorGroup.yaml -------------------------------------------------------------------------------- /charts/argocd-operator/templates/PrometheusSubscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/argocd-operator/templates/PrometheusSubscription.yaml -------------------------------------------------------------------------------- /charts/argocd-operator/templates/RoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/argocd-operator/templates/RoleBinding.yaml -------------------------------------------------------------------------------- /charts/argocd-operator/templates/Secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/argocd-operator/templates/Secret.yaml -------------------------------------------------------------------------------- /charts/argocd-operator/templates/Subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/argocd-operator/templates/Subscription.yaml -------------------------------------------------------------------------------- /charts/argocd-operator/templates/anyuid-scc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/argocd-operator/templates/anyuid-scc.yaml -------------------------------------------------------------------------------- /charts/argocd-operator/templates/crd-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/argocd-operator/templates/crd-reader.yaml -------------------------------------------------------------------------------- /charts/argocd-operator/templates/helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/argocd-operator/templates/helpers.tpl -------------------------------------------------------------------------------- /charts/argocd-operator/templates/wait-for-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/argocd-operator/templates/wait-for-crd.yaml -------------------------------------------------------------------------------- /charts/argocd-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/argocd-operator/values.yaml -------------------------------------------------------------------------------- /charts/bootstrap-project/.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/bootstrap-project/.test.sh -------------------------------------------------------------------------------- /charts/bootstrap-project/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/bootstrap-project/Chart.yaml -------------------------------------------------------------------------------- /charts/bootstrap-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/bootstrap-project/README.md -------------------------------------------------------------------------------- /charts/bootstrap-project/templates/bindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/bootstrap-project/templates/bindings.yaml -------------------------------------------------------------------------------- /charts/bootstrap-project/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/bootstrap-project/templates/namespace.yaml -------------------------------------------------------------------------------- /charts/bootstrap-project/templates/operatorgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/bootstrap-project/templates/operatorgroup.yaml -------------------------------------------------------------------------------- /charts/bootstrap-project/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/bootstrap-project/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/bootstrap-project/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/bootstrap-project/values.yaml -------------------------------------------------------------------------------- /charts/botpress/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/botpress/.helmignore -------------------------------------------------------------------------------- /charts/botpress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/botpress/Chart.yaml -------------------------------------------------------------------------------- /charts/botpress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/botpress/LICENSE -------------------------------------------------------------------------------- /charts/botpress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/botpress/README.md -------------------------------------------------------------------------------- /charts/botpress/botpress_fabicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/botpress/botpress_fabicon.png -------------------------------------------------------------------------------- /charts/botpress/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/botpress/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/botpress/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/botpress/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/botpress/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/botpress/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/botpress/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/botpress/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/botpress/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/botpress/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/botpress/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/botpress/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/botpress/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/botpress/templates/service.yaml -------------------------------------------------------------------------------- /charts/botpress/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/botpress/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/botpress/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/botpress/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/botpress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/botpress/values.yaml -------------------------------------------------------------------------------- /charts/cert-manager-configs/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/cert-manager-configs/.helmignore -------------------------------------------------------------------------------- /charts/cert-manager-configs/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/cert-manager-configs/Chart.yaml -------------------------------------------------------------------------------- /charts/cert-manager-configs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/cert-manager-configs/README.md -------------------------------------------------------------------------------- /charts/cert-manager-configs/templates/AwsSecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/cert-manager-configs/templates/AwsSecret.yaml -------------------------------------------------------------------------------- /charts/cert-manager-configs/templates/CABundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/cert-manager-configs/templates/CABundle.yaml -------------------------------------------------------------------------------- /charts/cert-manager-configs/templates/Certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/cert-manager-configs/templates/Certificate.yaml -------------------------------------------------------------------------------- /charts/cert-manager-configs/templates/ClusterIssuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/cert-manager-configs/templates/ClusterIssuer.yaml -------------------------------------------------------------------------------- /charts/cert-manager-configs/templates/OpenshiftConfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/cert-manager-configs/templates/OpenshiftConfigs.yaml -------------------------------------------------------------------------------- /charts/cert-manager-configs/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/cert-manager-configs/values.yaml -------------------------------------------------------------------------------- /charts/dev-ex-dashboard/.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/dev-ex-dashboard/.test.sh -------------------------------------------------------------------------------- /charts/dev-ex-dashboard/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/dev-ex-dashboard/Chart.yaml -------------------------------------------------------------------------------- /charts/dev-ex-dashboard/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/dev-ex-dashboard/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/dev-ex-dashboard/templates/deploymentconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/dev-ex-dashboard/templates/deploymentconfig.yaml -------------------------------------------------------------------------------- /charts/dev-ex-dashboard/templates/imagestream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/dev-ex-dashboard/templates/imagestream.yaml -------------------------------------------------------------------------------- /charts/dev-ex-dashboard/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/dev-ex-dashboard/templates/route.yaml -------------------------------------------------------------------------------- /charts/dev-ex-dashboard/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/dev-ex-dashboard/templates/service.yaml -------------------------------------------------------------------------------- /charts/dev-ex-dashboard/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/dev-ex-dashboard/values.yaml -------------------------------------------------------------------------------- /charts/etherpad/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/etherpad/.helmignore -------------------------------------------------------------------------------- /charts/etherpad/.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/etherpad/.test.sh -------------------------------------------------------------------------------- /charts/etherpad/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/etherpad/Chart.yaml -------------------------------------------------------------------------------- /charts/etherpad/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/etherpad/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/etherpad/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/etherpad/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/etherpad/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/etherpad/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/etherpad/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/etherpad/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/etherpad/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/etherpad/templates/route.yaml -------------------------------------------------------------------------------- /charts/etherpad/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/etherpad/templates/service.yaml -------------------------------------------------------------------------------- /charts/etherpad/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/etherpad/values.yaml -------------------------------------------------------------------------------- /charts/gitea/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitea/.helmignore -------------------------------------------------------------------------------- /charts/gitea/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitea/Chart.yaml -------------------------------------------------------------------------------- /charts/gitea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitea/README.md -------------------------------------------------------------------------------- /charts/gitea/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitea/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/gitea/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitea/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/gitea/templates/deploymentconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitea/templates/deploymentconfig.yaml -------------------------------------------------------------------------------- /charts/gitea/templates/imagestream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitea/templates/imagestream.yaml -------------------------------------------------------------------------------- /charts/gitea/templates/persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitea/templates/persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /charts/gitea/templates/postgresql-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitea/templates/postgresql-dc.yaml -------------------------------------------------------------------------------- /charts/gitea/templates/postgresql-is.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitea/templates/postgresql-is.yaml -------------------------------------------------------------------------------- /charts/gitea/templates/postgresql-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitea/templates/postgresql-pvc.yaml -------------------------------------------------------------------------------- /charts/gitea/templates/postgresql-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitea/templates/postgresql-secret.yaml -------------------------------------------------------------------------------- /charts/gitea/templates/postgresql-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitea/templates/postgresql-svc.yaml -------------------------------------------------------------------------------- /charts/gitea/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitea/templates/route.yaml -------------------------------------------------------------------------------- /charts/gitea/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitea/templates/service.yaml -------------------------------------------------------------------------------- /charts/gitea/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitea/values.yaml -------------------------------------------------------------------------------- /charts/gitops-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/.helmignore -------------------------------------------------------------------------------- /charts/gitops-operator/.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/.test.sh -------------------------------------------------------------------------------- /charts/gitops-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/Chart.yaml -------------------------------------------------------------------------------- /charts/gitops-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/README.md -------------------------------------------------------------------------------- /charts/gitops-operator/TEAM_DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/TEAM_DOCS.md -------------------------------------------------------------------------------- /charts/gitops-operator/docs/controller-cluster-rbac-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/docs/controller-cluster-rbac-rules.yaml -------------------------------------------------------------------------------- /charts/gitops-operator/docs/images/cluster-argo-for-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/docs/images/cluster-argo-for-all.png -------------------------------------------------------------------------------- /charts/gitops-operator/docs/images/cluster-argo-per-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/docs/images/cluster-argo-per-team.png -------------------------------------------------------------------------------- /charts/gitops-operator/docs/images/cluster-argo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/docs/images/cluster-argo.png -------------------------------------------------------------------------------- /charts/gitops-operator/docs/images/cluster-scoped-argocd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/docs/images/cluster-scoped-argocd.png -------------------------------------------------------------------------------- /charts/gitops-operator/docs/images/custom-role-bindings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/docs/images/custom-role-bindings.png -------------------------------------------------------------------------------- /charts/gitops-operator/docs/images/namespaced-role-bindings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/docs/images/namespaced-role-bindings.png -------------------------------------------------------------------------------- /charts/gitops-operator/docs/images/namespaced-team-argo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/docs/images/namespaced-team-argo.png -------------------------------------------------------------------------------- /charts/gitops-operator/docs/images/one-argo-to-rule-them-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/docs/images/one-argo-to-rule-them-all.png -------------------------------------------------------------------------------- /charts/gitops-operator/docs/images/sre-cluster-argo-team-namespaced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/docs/images/sre-cluster-argo-team-namespaced.png -------------------------------------------------------------------------------- /charts/gitops-operator/docs/images/team-namespaced-argocd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/docs/images/team-namespaced-argocd.png -------------------------------------------------------------------------------- /charts/gitops-operator/docs/server-cluster-rbac-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/docs/server-cluster-rbac-rules.yaml -------------------------------------------------------------------------------- /charts/gitops-operator/templates/argocd-application-controller-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/templates/argocd-application-controller-clusterrole.yaml -------------------------------------------------------------------------------- /charts/gitops-operator/templates/argocd-application-controller-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/templates/argocd-application-controller-clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/gitops-operator/templates/argocd-cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/templates/argocd-cr.yaml -------------------------------------------------------------------------------- /charts/gitops-operator/templates/argocd-server-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/templates/argocd-server-clusterrole.yaml -------------------------------------------------------------------------------- /charts/gitops-operator/templates/argocd-server-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/templates/argocd-server-clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/gitops-operator/templates/crd-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/templates/crd-reader.yaml -------------------------------------------------------------------------------- /charts/gitops-operator/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/templates/secrets.yaml -------------------------------------------------------------------------------- /charts/gitops-operator/templates/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/templates/subscription.yaml -------------------------------------------------------------------------------- /charts/gitops-operator/templates/wait-for-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/templates/wait-for-crd.yaml -------------------------------------------------------------------------------- /charts/gitops-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/gitops-operator/values.yaml -------------------------------------------------------------------------------- /charts/helper-console-links/.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-console-links/.test.sh -------------------------------------------------------------------------------- /charts/helper-console-links/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-console-links/Chart.yaml -------------------------------------------------------------------------------- /charts/helper-console-links/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-console-links/README.md -------------------------------------------------------------------------------- /charts/helper-console-links/img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-console-links/img/screenshot.png -------------------------------------------------------------------------------- /charts/helper-console-links/templates/ConsoleLink.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-console-links/templates/ConsoleLink.yaml -------------------------------------------------------------------------------- /charts/helper-console-links/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-console-links/values.yaml -------------------------------------------------------------------------------- /charts/helper-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-operator/Chart.yaml -------------------------------------------------------------------------------- /charts/helper-operator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-operator/LICENSE -------------------------------------------------------------------------------- /charts/helper-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-operator/README.md -------------------------------------------------------------------------------- /charts/helper-operator/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-operator/README.md.gotmpl -------------------------------------------------------------------------------- /charts/helper-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/helper-operator/templates/jobs/enable_console_plugin-crb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-operator/templates/jobs/enable_console_plugin-crb.yaml -------------------------------------------------------------------------------- /charts/helper-operator/templates/jobs/enable_console_plugin-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-operator/templates/jobs/enable_console_plugin-role.yaml -------------------------------------------------------------------------------- /charts/helper-operator/templates/jobs/enable_console_plugin-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-operator/templates/jobs/enable_console_plugin-sa.yaml -------------------------------------------------------------------------------- /charts/helper-operator/templates/jobs/enable_console_plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-operator/templates/jobs/enable_console_plugin.yaml -------------------------------------------------------------------------------- /charts/helper-operator/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-operator/templates/namespace.yaml -------------------------------------------------------------------------------- /charts/helper-operator/templates/operators/operatorgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-operator/templates/operators/operatorgroup.yaml -------------------------------------------------------------------------------- /charts/helper-operator/templates/operators/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-operator/templates/operators/subscription.yaml -------------------------------------------------------------------------------- /charts/helper-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-operator/values.yaml -------------------------------------------------------------------------------- /charts/helper-sealed-secrets/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-sealed-secrets/Chart.yaml -------------------------------------------------------------------------------- /charts/helper-sealed-secrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-sealed-secrets/README.md -------------------------------------------------------------------------------- /charts/helper-sealed-secrets/templates/SealedSecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-sealed-secrets/templates/SealedSecret.yaml -------------------------------------------------------------------------------- /charts/helper-sealed-secrets/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-sealed-secrets/values.yaml -------------------------------------------------------------------------------- /charts/helper-status-checker/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-status-checker/Chart.yaml -------------------------------------------------------------------------------- /charts/helper-status-checker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-status-checker/LICENSE -------------------------------------------------------------------------------- /charts/helper-status-checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-status-checker/README.md -------------------------------------------------------------------------------- /charts/helper-status-checker/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-status-checker/README.md.gotmpl -------------------------------------------------------------------------------- /charts/helper-status-checker/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-status-checker/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/helper-status-checker/templates/check_if_operator_is_ready.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-status-checker/templates/check_if_operator_is_ready.yaml -------------------------------------------------------------------------------- /charts/helper-status-checker/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-status-checker/templates/clusterrole.yaml -------------------------------------------------------------------------------- /charts/helper-status-checker/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-status-checker/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/helper-status-checker/templates/installplan-approver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-status-checker/templates/installplan-approver.yaml -------------------------------------------------------------------------------- /charts/helper-status-checker/templates/serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-status-checker/templates/serviceAccount.yaml -------------------------------------------------------------------------------- /charts/helper-status-checker/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/helper-status-checker/values.yaml -------------------------------------------------------------------------------- /charts/ipa/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/.helmignore -------------------------------------------------------------------------------- /charts/ipa/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/Chart.yaml -------------------------------------------------------------------------------- /charts/ipa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/README.md -------------------------------------------------------------------------------- /charts/ipa/setup-users.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/setup-users.sh -------------------------------------------------------------------------------- /charts/ipa/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/ipa/templates/anyuid-scc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/templates/anyuid-scc.yaml -------------------------------------------------------------------------------- /charts/ipa/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/ipa/templates/configure-oauth-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/templates/configure-oauth-rbac.yaml -------------------------------------------------------------------------------- /charts/ipa/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/ipa/templates/machineconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/templates/machineconfig.yaml -------------------------------------------------------------------------------- /charts/ipa/templates/oauth-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/templates/oauth-secret.yaml -------------------------------------------------------------------------------- /charts/ipa/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/ipa/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/templates/route.yaml -------------------------------------------------------------------------------- /charts/ipa/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/templates/secret.yaml -------------------------------------------------------------------------------- /charts/ipa/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/templates/service.yaml -------------------------------------------------------------------------------- /charts/ipa/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/ipa/templates/setup-oauth-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/templates/setup-oauth-job.yaml -------------------------------------------------------------------------------- /charts/ipa/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ipa/values.yaml -------------------------------------------------------------------------------- /charts/jenkins/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/jenkins/.helmignore -------------------------------------------------------------------------------- /charts/jenkins/.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/jenkins/.test.sh -------------------------------------------------------------------------------- /charts/jenkins/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/jenkins/Chart.yaml -------------------------------------------------------------------------------- /charts/jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/jenkins/README.md -------------------------------------------------------------------------------- /charts/jenkins/templates/PersistentVolumeClaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/jenkins/templates/PersistentVolumeClaim.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/SealedSecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/jenkins/templates/SealedSecret.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/buildconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/jenkins/templates/buildconfigs.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/configuration-as-code-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/jenkins/templates/configuration-as-code-configmap.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/jenkins/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/imagestreams.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/jenkins/templates/imagestreams.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/jenkins/templates/rolebinding.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/jenkins/templates/route.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/jenkins/templates/secret.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/jenkins/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/jenkins/templates/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/jenkins/templates/services.yaml -------------------------------------------------------------------------------- /charts/jenkins/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/jenkins/values.yaml -------------------------------------------------------------------------------- /charts/kopf/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/kopf/.helmignore -------------------------------------------------------------------------------- /charts/kopf/.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/kopf/.test.sh -------------------------------------------------------------------------------- /charts/kopf/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/kopf/Chart.yaml -------------------------------------------------------------------------------- /charts/kopf/templates/clusterkopfpeering.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/kopf/templates/clusterkopfpeering.yaml -------------------------------------------------------------------------------- /charts/kopf/templates/kopfpeering.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/kopf/templates/kopfpeering.yaml -------------------------------------------------------------------------------- /charts/kopf/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/kopf/values.yaml -------------------------------------------------------------------------------- /charts/network-policy/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/network-policy/.helmignore -------------------------------------------------------------------------------- /charts/network-policy/.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/network-policy/.test.sh -------------------------------------------------------------------------------- /charts/network-policy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/network-policy/Chart.yaml -------------------------------------------------------------------------------- /charts/network-policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/network-policy/README.md -------------------------------------------------------------------------------- /charts/network-policy/templates/NetworkPolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/network-policy/templates/NetworkPolicy.yaml -------------------------------------------------------------------------------- /charts/network-policy/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/network-policy/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/network-policy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/network-policy/values.yaml -------------------------------------------------------------------------------- /charts/openshift-logforwarding-splunk/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/openshift-logforwarding-splunk/.helmignore -------------------------------------------------------------------------------- /charts/openshift-logforwarding-splunk/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/openshift-logforwarding-splunk/Chart.yaml -------------------------------------------------------------------------------- /charts/openshift-logforwarding-splunk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/openshift-logforwarding-splunk/README.md -------------------------------------------------------------------------------- /charts/openshift-logforwarding-splunk/files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/openshift-logforwarding-splunk/files/default-openshift-logging-fluentd.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/openshift-logforwarding-splunk/files/default-openshift-logging-fluentd.crt -------------------------------------------------------------------------------- /charts/openshift-logforwarding-splunk/files/default-openshift-logging-fluentd.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/openshift-logforwarding-splunk/files/default-openshift-logging-fluentd.key -------------------------------------------------------------------------------- /charts/openshift-logforwarding-splunk/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/openshift-logforwarding-splunk/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/openshift-logforwarding-splunk/templates/log-forwarding-instance-tp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/openshift-logforwarding-splunk/templates/log-forwarding-instance-tp.yaml -------------------------------------------------------------------------------- /charts/openshift-logforwarding-splunk/templates/log-forwarding-instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/openshift-logforwarding-splunk/templates/log-forwarding-instance.yaml -------------------------------------------------------------------------------- /charts/openshift-logforwarding-splunk/templates/log-forwarding-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/openshift-logforwarding-splunk/templates/log-forwarding-serviceaccount.yaml -------------------------------------------------------------------------------- /charts/openshift-logforwarding-splunk/templates/log-forwarding-splunk-certs-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/openshift-logforwarding-splunk/templates/log-forwarding-splunk-certs-secret.yaml -------------------------------------------------------------------------------- /charts/openshift-logforwarding-splunk/templates/log-forwarding-splunk-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/openshift-logforwarding-splunk/templates/log-forwarding-splunk-configmap.yaml -------------------------------------------------------------------------------- /charts/openshift-logforwarding-splunk/templates/log-forwarding-splunk-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/openshift-logforwarding-splunk/templates/log-forwarding-splunk-secret.yaml -------------------------------------------------------------------------------- /charts/openshift-logforwarding-splunk/templates/log-forwarding-splunk-service-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/openshift-logforwarding-splunk/templates/log-forwarding-splunk-service-headless.yaml -------------------------------------------------------------------------------- /charts/openshift-logforwarding-splunk/templates/log-forwarding-splunk-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/openshift-logforwarding-splunk/templates/log-forwarding-splunk-service.yaml -------------------------------------------------------------------------------- /charts/openshift-logforwarding-splunk/templates/log-forwarding-splunk-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/openshift-logforwarding-splunk/templates/log-forwarding-splunk-statefulset.yaml -------------------------------------------------------------------------------- /charts/openshift-logforwarding-splunk/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/openshift-logforwarding-splunk/values.yaml -------------------------------------------------------------------------------- /charts/operatorhub/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operatorhub/.helmignore -------------------------------------------------------------------------------- /charts/operatorhub/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operatorhub/Chart.yaml -------------------------------------------------------------------------------- /charts/operatorhub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operatorhub/README.md -------------------------------------------------------------------------------- /charts/operatorhub/templates/install-modes-post-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operatorhub/templates/install-modes-post-hook.yaml -------------------------------------------------------------------------------- /charts/operatorhub/templates/operatorgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operatorhub/templates/operatorgroup.yaml -------------------------------------------------------------------------------- /charts/operatorhub/templates/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operatorhub/templates/subscription.yaml -------------------------------------------------------------------------------- /charts/operatorhub/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operatorhub/values.yaml -------------------------------------------------------------------------------- /charts/operators-installer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/.helmignore -------------------------------------------------------------------------------- /charts/operators-installer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/Chart.yaml -------------------------------------------------------------------------------- /charts/operators-installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/README.md -------------------------------------------------------------------------------- /charts/operators-installer/_integration-tests/test-install-operator-0-automatic-intermediate-manual-upgrades-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/_integration-tests/test-install-operator-0-automatic-intermediate-manual-upgrades-values.yaml -------------------------------------------------------------------------------- /charts/operators-installer/_integration-tests/test-install-operator-1-automatic-intermediate-manual-upgrades-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/_integration-tests/test-install-operator-1-automatic-intermediate-manual-upgrades-values.yaml -------------------------------------------------------------------------------- /charts/operators-installer/_integration-tests/test-install-operator-with-approver-image-from-private-registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/_integration-tests/test-install-operator-with-approver-image-from-private-registry.yaml -------------------------------------------------------------------------------- /charts/operators-installer/_scripts/installplan-approver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/_scripts/installplan-approver.py -------------------------------------------------------------------------------- /charts/operators-installer/_scripts/installplan-incremental-approver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/_scripts/installplan-incremental-approver.py -------------------------------------------------------------------------------- /charts/operators-installer/_scripts/installplan-verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/_scripts/installplan-verifier.py -------------------------------------------------------------------------------- /charts/operators-installer/_scripts/installplan_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/_scripts/installplan_utils.py -------------------------------------------------------------------------------- /charts/operators-installer/ci/test-install-multiple-operators-in-different-namespaces-approve-via-helm-hook-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/ci/test-install-multiple-operators-in-different-namespaces-approve-via-helm-hook-values.yaml -------------------------------------------------------------------------------- /charts/operators-installer/ci/test-install-multiple-operators-in-same-namespace-approve-via-helm-hook-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/ci/test-install-multiple-operators-in-same-namespace-approve-via-helm-hook-values.yaml -------------------------------------------------------------------------------- /charts/operators-installer/ci/test-install-old-operator-approve-not-via-helm-hook-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/ci/test-install-old-operator-approve-not-via-helm-hook-values.yaml -------------------------------------------------------------------------------- /charts/operators-installer/ci/test-install-old-operator-approve-via-helm-hook-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/ci/test-install-old-operator-approve-via-helm-hook-values.yaml -------------------------------------------------------------------------------- /charts/operators-installer/ci/test-install-operator-first-time-with-automatic-intermediate-manual-upgrades-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/ci/test-install-operator-first-time-with-automatic-intermediate-manual-upgrades-values.yaml -------------------------------------------------------------------------------- /charts/operators-installer/ci/test-install-operator-subscription-with-config-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/ci/test-install-operator-subscription-with-config-values.yaml -------------------------------------------------------------------------------- /charts/operators-installer/ci/test-install-operator-with-channel-number-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/ci/test-install-operator-with-channel-number-values.yaml -------------------------------------------------------------------------------- /charts/operators-installer/ci/test-install-operator-with-long-name-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/ci/test-install-operator-with-long-name-values.yaml -------------------------------------------------------------------------------- /charts/operators-installer/ci/test-install-operator-with-namespace-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/ci/test-install-operator-with-namespace-labels.yaml -------------------------------------------------------------------------------- /charts/operators-installer/ci/test-install-with-job-tolerations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/ci/test-install-with-job-tolerations.yaml -------------------------------------------------------------------------------- /charts/operators-installer/templates/ConfigMap_operators-installer-approver-scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/templates/ConfigMap_operators-installer-approver-scripts.yaml -------------------------------------------------------------------------------- /charts/operators-installer/templates/Job_installplan-approver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/templates/Job_installplan-approver.yaml -------------------------------------------------------------------------------- /charts/operators-installer/templates/Job_installplan-complete-verifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/templates/Job_installplan-complete-verifier.yaml -------------------------------------------------------------------------------- /charts/operators-installer/templates/Namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/templates/Namespace.yaml -------------------------------------------------------------------------------- /charts/operators-installer/templates/OperatorGroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/templates/OperatorGroup.yaml -------------------------------------------------------------------------------- /charts/operators-installer/templates/RoleBinding_installplan-approvers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/templates/RoleBinding_installplan-approvers.yaml -------------------------------------------------------------------------------- /charts/operators-installer/templates/Role_installplan-approver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/templates/Role_installplan-approver.yaml -------------------------------------------------------------------------------- /charts/operators-installer/templates/ServiceAccount_installplan-approver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/templates/ServiceAccount_installplan-approver.yaml -------------------------------------------------------------------------------- /charts/operators-installer/templates/Subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/templates/Subscription.yaml -------------------------------------------------------------------------------- /charts/operators-installer/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/operators-installer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/operators-installer/values.yaml -------------------------------------------------------------------------------- /charts/owncloud/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/.helmignore -------------------------------------------------------------------------------- /charts/owncloud/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/Chart.yaml -------------------------------------------------------------------------------- /charts/owncloud/persistent-oauth-proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/persistent-oauth-proxy.json -------------------------------------------------------------------------------- /charts/owncloud/persistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/persistent.json -------------------------------------------------------------------------------- /charts/owncloud/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/owncloud/templates/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/templates/cronjob.yaml -------------------------------------------------------------------------------- /charts/owncloud/templates/mariadb-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/templates/mariadb-dc.yaml -------------------------------------------------------------------------------- /charts/owncloud/templates/mariadb-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/templates/mariadb-pvc.yaml -------------------------------------------------------------------------------- /charts/owncloud/templates/mariadb-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/templates/mariadb-svc.yaml -------------------------------------------------------------------------------- /charts/owncloud/templates/owncloud-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/templates/owncloud-dc.yaml -------------------------------------------------------------------------------- /charts/owncloud/templates/owncloud-is.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/templates/owncloud-is.yaml -------------------------------------------------------------------------------- /charts/owncloud/templates/owncloud-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/templates/owncloud-pvc.yaml -------------------------------------------------------------------------------- /charts/owncloud/templates/owncloud-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/templates/owncloud-svc.yaml -------------------------------------------------------------------------------- /charts/owncloud/templates/redis-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/templates/redis-dc.yaml -------------------------------------------------------------------------------- /charts/owncloud/templates/redis-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/templates/redis-pvc.yaml -------------------------------------------------------------------------------- /charts/owncloud/templates/redis-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/templates/redis-svc.yaml -------------------------------------------------------------------------------- /charts/owncloud/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/templates/route.yaml -------------------------------------------------------------------------------- /charts/owncloud/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/owncloud/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/owncloud/values.yaml -------------------------------------------------------------------------------- /charts/pact-broker/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/pact-broker/.helmignore -------------------------------------------------------------------------------- /charts/pact-broker/.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/pact-broker/.test.sh -------------------------------------------------------------------------------- /charts/pact-broker/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/pact-broker/Chart.yaml -------------------------------------------------------------------------------- /charts/pact-broker/templates/deploymentconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/pact-broker/templates/deploymentconfig.yaml -------------------------------------------------------------------------------- /charts/pact-broker/templates/postgres-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/pact-broker/templates/postgres-dc.yaml -------------------------------------------------------------------------------- /charts/pact-broker/templates/postgres-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/pact-broker/templates/postgres-service.yaml -------------------------------------------------------------------------------- /charts/pact-broker/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/pact-broker/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/pact-broker/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/pact-broker/templates/route.yaml -------------------------------------------------------------------------------- /charts/pact-broker/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/pact-broker/templates/secrets.yaml -------------------------------------------------------------------------------- /charts/pact-broker/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/pact-broker/templates/service.yaml -------------------------------------------------------------------------------- /charts/pact-broker/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/pact-broker/values.yaml -------------------------------------------------------------------------------- /charts/ploigos/.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ploigos/.test.sh -------------------------------------------------------------------------------- /charts/ploigos/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ploigos/Chart.yaml -------------------------------------------------------------------------------- /charts/ploigos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ploigos/README.md -------------------------------------------------------------------------------- /charts/ploigos/delete-tssc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ploigos/delete-tssc.sh -------------------------------------------------------------------------------- /charts/ploigos/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ploigos/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/ploigos/templates/catalog-source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ploigos/templates/catalog-source.yaml -------------------------------------------------------------------------------- /charts/ploigos/templates/crd-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ploigos/templates/crd-reader.yaml -------------------------------------------------------------------------------- /charts/ploigos/templates/delete-csv-hook-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ploigos/templates/delete-csv-hook-rbac.yaml -------------------------------------------------------------------------------- /charts/ploigos/templates/delete-csv-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ploigos/templates/delete-csv-hook.yaml -------------------------------------------------------------------------------- /charts/ploigos/templates/operatorgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ploigos/templates/operatorgroup.yaml -------------------------------------------------------------------------------- /charts/ploigos/templates/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ploigos/templates/subscription.yaml -------------------------------------------------------------------------------- /charts/ploigos/templates/tsscplatform-cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ploigos/templates/tsscplatform-cr.yaml -------------------------------------------------------------------------------- /charts/ploigos/templates/wait-for-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ploigos/templates/wait-for-crd.yaml -------------------------------------------------------------------------------- /charts/ploigos/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/ploigos/values.yaml -------------------------------------------------------------------------------- /charts/quay/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/quay/Chart.yaml -------------------------------------------------------------------------------- /charts/quay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/quay/README.md -------------------------------------------------------------------------------- /charts/quay/templates/ns-quay-enterprise.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/quay/templates/ns-quay-enterprise.yaml -------------------------------------------------------------------------------- /charts/quay/templates/quay-registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/quay/templates/quay-registry.yaml -------------------------------------------------------------------------------- /charts/quay/templates/secret-quay-registry-config-bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/quay/templates/secret-quay-registry-config-bundle.yaml -------------------------------------------------------------------------------- /charts/quay/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/quay/values.yaml -------------------------------------------------------------------------------- /charts/sonarqube/.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/.test.sh -------------------------------------------------------------------------------- /charts/sonarqube/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/Chart.yaml -------------------------------------------------------------------------------- /charts/sonarqube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/README.md -------------------------------------------------------------------------------- /charts/sonarqube/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/sonarqube/templates/postgres-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/templates/postgres-dc.yaml -------------------------------------------------------------------------------- /charts/sonarqube/templates/postgres-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/templates/postgres-pvc.yaml -------------------------------------------------------------------------------- /charts/sonarqube/templates/postgres-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/templates/postgres-secret.yaml -------------------------------------------------------------------------------- /charts/sonarqube/templates/postgres-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/templates/postgres-service.yaml -------------------------------------------------------------------------------- /charts/sonarqube/templates/sonar-cm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/templates/sonar-cm-config.yaml -------------------------------------------------------------------------------- /charts/sonarqube/templates/sonar-cm-copy-plugins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/templates/sonar-cm-copy-plugins.yaml -------------------------------------------------------------------------------- /charts/sonarqube/templates/sonar-cm-install-plugins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/templates/sonar-cm-install-plugins.yaml -------------------------------------------------------------------------------- /charts/sonarqube/templates/sonar-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/templates/sonar-deployment.yaml -------------------------------------------------------------------------------- /charts/sonarqube/templates/sonar-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/templates/sonar-ingress.yaml -------------------------------------------------------------------------------- /charts/sonarqube/templates/sonar-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/templates/sonar-pvc.yaml -------------------------------------------------------------------------------- /charts/sonarqube/templates/sonar-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/templates/sonar-route.yaml -------------------------------------------------------------------------------- /charts/sonarqube/templates/sonar-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/templates/sonar-service.yaml -------------------------------------------------------------------------------- /charts/sonarqube/templates/sonar-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/templates/sonar-serviceaccount.yaml -------------------------------------------------------------------------------- /charts/sonarqube/templates/sonarqube-admin-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/templates/sonarqube-admin-secret.yaml -------------------------------------------------------------------------------- /charts/sonarqube/templates/update-admin-pwd-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/templates/update-admin-pwd-hook.yaml -------------------------------------------------------------------------------- /charts/sonarqube/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonarqube/values.yaml -------------------------------------------------------------------------------- /charts/sonatype-nexus/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/.helmignore -------------------------------------------------------------------------------- /charts/sonatype-nexus/.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/.test.sh -------------------------------------------------------------------------------- /charts/sonatype-nexus/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/Chart.yaml -------------------------------------------------------------------------------- /charts/sonatype-nexus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/README.md -------------------------------------------------------------------------------- /charts/sonatype-nexus/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/sonatype-nexus/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/sonatype-nexus/templates/config-nexus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/templates/config-nexus.txt -------------------------------------------------------------------------------- /charts/sonatype-nexus/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/sonatype-nexus/templates/deployment-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/templates/deployment-statefulset.yaml -------------------------------------------------------------------------------- /charts/sonatype-nexus/templates/image-pull-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/templates/image-pull-secret.yaml -------------------------------------------------------------------------------- /charts/sonatype-nexus/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/sonatype-nexus/templates/proxy-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/templates/proxy-route.yaml -------------------------------------------------------------------------------- /charts/sonatype-nexus/templates/pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/templates/pv.yaml -------------------------------------------------------------------------------- /charts/sonatype-nexus/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/sonatype-nexus/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/templates/route.yaml -------------------------------------------------------------------------------- /charts/sonatype-nexus/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/templates/secret.yaml -------------------------------------------------------------------------------- /charts/sonatype-nexus/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/templates/service.yaml -------------------------------------------------------------------------------- /charts/sonatype-nexus/templates/setup-nexus-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/templates/setup-nexus-job.yaml -------------------------------------------------------------------------------- /charts/sonatype-nexus/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/sonatype-nexus/values.yaml -------------------------------------------------------------------------------- /charts/stackrox/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /charts/stackrox/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/stackrox/.helmignore -------------------------------------------------------------------------------- /charts/stackrox/.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/stackrox/.test.sh -------------------------------------------------------------------------------- /charts/stackrox/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/stackrox/Chart.yaml -------------------------------------------------------------------------------- /charts/stackrox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/stackrox/README.md -------------------------------------------------------------------------------- /charts/stackrox/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/stackrox/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/stackrox/templates/configure-stackrox-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/stackrox/templates/configure-stackrox-job.yaml -------------------------------------------------------------------------------- /charts/stackrox/templates/configure-stackrox-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/stackrox/templates/configure-stackrox-rbac.yaml -------------------------------------------------------------------------------- /charts/stackrox/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/stackrox/templates/namespace.yaml -------------------------------------------------------------------------------- /charts/stackrox/templates/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/stackrox/templates/subscription.yaml -------------------------------------------------------------------------------- /charts/stackrox/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/stackrox/values.yaml -------------------------------------------------------------------------------- /charts/static-site/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/static-site/Chart.yaml -------------------------------------------------------------------------------- /charts/static-site/README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/static-site/README-zh.md -------------------------------------------------------------------------------- /charts/static-site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/static-site/README.md -------------------------------------------------------------------------------- /charts/static-site/alpine-curl-git.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/static-site/alpine-curl-git.Dockerfile -------------------------------------------------------------------------------- /charts/static-site/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/static-site/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/static-site/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/static-site/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/static-site/templates/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/static-site/templates/cronjob.yaml -------------------------------------------------------------------------------- /charts/static-site/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/static-site/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/static-site/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/static-site/templates/service.yaml -------------------------------------------------------------------------------- /charts/static-site/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/static-site/values.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/.helmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .git 3 | -------------------------------------------------------------------------------- /charts/tekton-demo/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/Chart.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/README.md -------------------------------------------------------------------------------- /charts/tekton-demo/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/assets/logo.png -------------------------------------------------------------------------------- /charts/tekton-demo/assets/pipeline-with-task-steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/assets/pipeline-with-task-steps.png -------------------------------------------------------------------------------- /charts/tekton-demo/assets/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/assets/pipeline.png -------------------------------------------------------------------------------- /charts/tekton-demo/assets/routes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/assets/routes.png -------------------------------------------------------------------------------- /charts/tekton-demo/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/tekton-demo/templates/github/github-webhook-create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/github/github-webhook-create.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/github/github-webhook-run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/github/github-webhook-run.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/github/trigger-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/github/trigger-binding.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/github/trigger-eventlistener.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/github/trigger-eventlistener.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/github/trigger-sa-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/github/trigger-sa-rbac.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/github/trigger-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/github/trigger-template.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/github/trigger-webhook-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/github/trigger-webhook-rbac.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/pipelines/nodejs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/pipelines/nodejs.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/resources/nodejs-git.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/resources/nodejs-git.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/resources/nodejs-images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/resources/nodejs-images.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/resources/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/resources/pvc.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/roles.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/tasks/conditions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/tasks/conditions.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/tasks/task-apply.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/tasks/task-apply.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/tasks/task-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/tasks/task-build.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/tasks/task-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/tasks/task-deploy.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/tasks/task-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/tasks/task-docs.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/tasks/task-finally.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/tasks/task-finally.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/tasks/task-git-clone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/tasks/task-git-clone.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/tasks/task-github-pull-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/tasks/task-github-pull-request.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/tasks/task-github.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/tasks/task-github.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/tasks/task-helm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/tasks/task-helm.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/tasks/task-prepare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/tasks/task-prepare.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/tasks/task-promote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/tasks/task-promote.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/tasks/task-standards.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/tasks/task-standards.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/tasks/task-status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/tasks/task-status.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/tasks/task-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/tasks/task-tag.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/tasks/task-test-integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/tasks/task-test-integration.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/templates/tasks/task-test-performance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/templates/tasks/task-test-performance.yaml -------------------------------------------------------------------------------- /charts/tekton-demo/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tekton-demo/values.yaml -------------------------------------------------------------------------------- /charts/tpl/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tpl/Chart.yaml -------------------------------------------------------------------------------- /charts/tpl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tpl/README.md -------------------------------------------------------------------------------- /charts/tpl/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tpl/README.md.gotmpl -------------------------------------------------------------------------------- /charts/tpl/templates/_job_sleeptimer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tpl/templates/_job_sleeptimer.tpl -------------------------------------------------------------------------------- /charts/tpl/templates/_labels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tpl/templates/_labels.tpl -------------------------------------------------------------------------------- /charts/tpl/templates/_nodeSelector.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tpl/templates/_nodeSelector.tpl -------------------------------------------------------------------------------- /charts/tpl/templates/_resources.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tpl/templates/_resources.tpl -------------------------------------------------------------------------------- /charts/tpl/templates/_serviceAccount.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tpl/templates/_serviceAccount.tpl -------------------------------------------------------------------------------- /charts/tpl/templates/_tolerations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tpl/templates/_tolerations.tpl -------------------------------------------------------------------------------- /charts/tpl/templates/test/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tpl/templates/test/example.yaml -------------------------------------------------------------------------------- /charts/tpl/values-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/tpl/values-example.yaml -------------------------------------------------------------------------------- /charts/tpl/values.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /charts/update-clusterversion/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/update-clusterversion/.helmignore -------------------------------------------------------------------------------- /charts/update-clusterversion/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/update-clusterversion/Chart.yaml -------------------------------------------------------------------------------- /charts/update-clusterversion/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/update-clusterversion/LICENSE -------------------------------------------------------------------------------- /charts/update-clusterversion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/update-clusterversion/README.md -------------------------------------------------------------------------------- /charts/update-clusterversion/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/update-clusterversion/README.md.gotmpl -------------------------------------------------------------------------------- /charts/update-clusterversion/templates/clusterversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/update-clusterversion/templates/clusterversion.yaml -------------------------------------------------------------------------------- /charts/update-clusterversion/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/charts/update-clusterversion/values.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/helm-charts/HEAD/renovate.json --------------------------------------------------------------------------------