├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── auto-label.yaml │ ├── check-signed-commits.yaml │ ├── generate-schema.yaml │ ├── post-merge.yaml │ ├── pull-request.yaml │ ├── release.yaml │ └── stale.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COSIGN.md ├── LICENSE ├── README.md ├── TESTING.md ├── charts ├── clusterpirate │ ├── .disable-unittest │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── artifacthub-repo.yml │ ├── ci │ │ └── default-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── secret.yaml │ │ └── serviceaccount.yaml │ ├── tests │ │ └── common-parameters_test.yaml │ ├── values.schema.json │ └── values.yaml ├── common │ ├── CHANGELOG.md │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ └── _secrets.tpl │ └── values.yaml ├── etcd │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── artifacthub-repo.yml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── extraobjects.yaml │ │ ├── networkpolicy.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── statefulset.yaml │ ├── tests │ │ ├── common-parameters_test.yaml │ │ ├── etcd-functionality_test.yaml │ │ └── service-account_test.yaml │ ├── values.schema.json │ └── values.yaml ├── ghost │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── artifacthub-repo.yml │ ├── ci │ │ └── test-values.yaml │ ├── config.example.json │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── extraobjects.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── pvc.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ ├── tests │ │ ├── common-parameters_test.yaml │ │ └── openshift_test.yaml │ ├── values.schema.json │ └── values.yaml ├── keycloak │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── artifacthub-repo.yml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── certificate.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── extraobjects.yaml │ │ ├── ingress.yaml │ │ ├── metrics-service.yaml │ │ ├── metrics-servicemonitor.yaml │ │ ├── pvc.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ ├── tests │ │ ├── common-parameters_test.yaml │ │ ├── deployment-parameters_test.yaml │ │ ├── openshift_test.yaml │ │ ├── service-account_test.yaml │ │ └── tls-certmanager_test.yaml │ ├── values.schema.json │ └── values.yaml ├── mariadb │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── README_GALERA.md │ ├── artifacthub-repo.yml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── extraobjects.yaml │ │ ├── galera │ │ │ ├── configmap.yaml │ │ │ ├── scripts-configmap.yaml │ │ │ ├── secret.yaml │ │ │ └── service.yaml │ │ ├── ingress.yaml │ │ ├── pvc.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── statefulset.yaml │ ├── tests │ │ ├── common-parameters_test.yaml │ │ └── openshift_test.yaml │ ├── values.schema.json │ └── values.yaml ├── memcached │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── artifacthub-repo.yml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── extraobjects.yaml │ │ ├── ingress.yaml │ │ ├── pdb.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── servicemonitor.yaml │ ├── tests │ │ ├── common-parameters_test.yaml │ │ ├── metrics_test.yaml │ │ ├── openshift_test.yaml │ │ ├── service_test.yaml │ │ └── servicemonitor_test.yaml │ ├── values.schema.json │ └── values.yaml ├── minio │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── artifacthub-repo.yml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── extraobjects.yaml │ │ ├── ingress-console.yaml │ │ ├── ingress.yaml │ │ ├── post-job-configmap.yaml │ │ ├── post-job.yaml │ │ ├── pvc.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ ├── tests │ │ ├── common-parameters_test.yaml │ │ └── openshift_test.yaml │ ├── values.schema.json │ └── values.yaml ├── mongodb │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── artifacthub-repo.yml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── custom-user-secret.yaml │ │ ├── extraobjects.yaml │ │ ├── init-scripts.yaml │ │ ├── metrics-networkpolicy.yaml │ │ ├── metrics-secret.yaml │ │ ├── metrics-service.yaml │ │ ├── metrics-servicemonitor.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── statefulset.yaml │ ├── tests │ │ ├── common-parameters_test.yaml │ │ ├── container-override_test.yaml │ │ └── openshift_test.yaml │ ├── values.schema.json │ └── values.yaml ├── nginx │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── artifacthub-repo.yml │ ├── ci │ │ └── test-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── extraobjects.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── metrics-service.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── servicemonitor.yaml │ ├── tests │ │ ├── common-parameters_test.yaml │ │ └── openshift_test.yaml │ ├── values.schema.json │ └── values.yaml ├── postgres │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── artifacthub-repo.yml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── custom-user-secret.yaml │ │ ├── extraobjects.yaml │ │ ├── ingress.yaml │ │ ├── initialization-configmap.yaml │ │ ├── secret.yaml │ │ ├── service-metrics.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── statefulset.yaml │ │ └── wrapper-configmap.yaml │ ├── tests │ │ ├── common-parameters_test.yaml │ │ ├── openshift_test.yaml │ │ └── service-account_test.yaml │ ├── values.schema.json │ └── values.yaml ├── rabbitmq-cluster-operator │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── artifacthub-repo.yml │ ├── crds │ │ ├── messaging-topology-operator │ │ │ ├── rabbitmq.com_bindings.yaml │ │ │ ├── rabbitmq.com_exchanges.yaml │ │ │ ├── rabbitmq.com_federations.yaml │ │ │ ├── rabbitmq.com_operatorpolicies.yaml │ │ │ ├── rabbitmq.com_permissions.yaml │ │ │ ├── rabbitmq.com_policies.yaml │ │ │ ├── rabbitmq.com_queues.yaml │ │ │ ├── rabbitmq.com_schemareplications.yaml │ │ │ ├── rabbitmq.com_shovels.yaml │ │ │ ├── rabbitmq.com_superstreams.yaml │ │ │ ├── rabbitmq.com_topicpermissions.yaml │ │ │ ├── rabbitmq.com_users.yaml │ │ │ └── rabbitmq.com_vhosts.yaml │ │ └── rabbitmq-cluster │ │ │ └── rabbitmq.com_rabbitmqclusters.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cluster-operator │ │ │ ├── aggregate-cluster-roles.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── metrics-service.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── podmonitor.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── sa.yaml │ │ │ └── servicemonitor.yaml │ │ └── messaging-topology-operator │ │ │ ├── aggregate-cluster-roles.yaml │ │ │ ├── certificate.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── metrics-service.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── podmonitor.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── sa.yaml │ │ │ ├── servicemonitor.yaml │ │ │ ├── validating-webhook-configuration.yaml │ │ │ └── webhook-service.yaml │ ├── tests │ │ ├── cluster_operator_test.yaml │ │ └── messaging_topology_operator_test.yaml │ ├── values.schema.json │ └── values.yaml ├── rabbitmq │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── artifacthub-repo.yml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── definitions-configmap.yaml │ │ ├── extraobjects.yaml │ │ ├── ingress.yaml │ │ ├── pdb.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── secret.yaml │ │ ├── service-headless.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── statefulset.yaml │ ├── tests │ │ ├── common-parameters_test.yaml │ │ ├── openshift_test.yaml │ │ └── rabbitmq-functionality_test.yaml │ ├── values.schema.json │ └── values.yaml ├── redis │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── extraobjects.yaml │ │ ├── headless-service.yaml │ │ ├── job.yaml │ │ ├── master-service.yaml │ │ ├── metrics-service.yaml │ │ ├── networkpolicy.yaml │ │ ├── pdb.yaml │ │ ├── prestop-configmap.yaml │ │ ├── secret.yaml │ │ ├── sentinel-service.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── statefulset.yaml │ ├── test-production-values.yaml │ ├── tests │ │ ├── common-parameters_test.yaml │ │ └── openshift_test.yaml │ ├── values.schema.json │ └── values.yaml ├── rustfs │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── artifacthub-repo.yml │ ├── ci │ │ └── test-values.yaml │ ├── docs │ │ ├── deployment.svg │ │ └── statefulset.svg │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── pvc.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── statefulset.yaml │ ├── tests │ │ └── common-parameters_test.yaml │ ├── values.schema.json │ └── values.yaml ├── timescaledb │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── artifacthub-repo.yml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── extraobjects.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── statefulset.yaml │ ├── tests │ │ ├── common-parameters_test.yaml │ │ └── openshift_test.yaml │ ├── values.schema.json │ └── values.yaml ├── valkey │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── artifacthub-repo.yml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── extraobjects.yaml │ │ ├── ingress.yaml │ │ ├── master-service.yaml │ │ ├── prestop-configmap.yaml │ │ ├── secret.yaml │ │ ├── sentinel-service.yaml │ │ ├── service-metrics.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── statefulset.yaml │ ├── tests │ │ ├── common-parameters_test.yaml │ │ └── openshift_test.yaml │ ├── values.schema.json │ └── values.yaml └── zookeeper │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── artifacthub-repo.yml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── extraobjects.yaml │ ├── networkpolicy.yaml │ ├── poddisruptionbudget.yaml │ ├── service.yaml │ └── statefulset.yaml │ ├── tests │ ├── common-parameters_test.yaml │ ├── openshift_test.yaml │ └── unittest-defaults_test.yaml │ ├── values.schema.json │ └── values.yaml ├── cosign.pub ├── generate-changelog.sh ├── renovate.json ├── test-charts.sh ├── update-appversion.sh └── update-rabbitmq-crds.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/.github/workflows/auto-label.yaml -------------------------------------------------------------------------------- /.github/workflows/check-signed-commits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/.github/workflows/check-signed-commits.yaml -------------------------------------------------------------------------------- /.github/workflows/generate-schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/.github/workflows/generate-schema.yaml -------------------------------------------------------------------------------- /.github/workflows/post-merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/.github/workflows/post-merge.yaml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/.github/workflows/pull-request.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *-template.* 2 | *.tgz 3 | .DS_Store -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COSIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/COSIGN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/TESTING.md -------------------------------------------------------------------------------- /charts/clusterpirate/.disable-unittest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/clusterpirate/.disable-unittest -------------------------------------------------------------------------------- /charts/clusterpirate/.helmignore: -------------------------------------------------------------------------------- 1 | artifacthub-repo.yaml 2 | tests/ 3 | -------------------------------------------------------------------------------- /charts/clusterpirate/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/clusterpirate/CHANGELOG.md -------------------------------------------------------------------------------- /charts/clusterpirate/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/clusterpirate/Chart.lock -------------------------------------------------------------------------------- /charts/clusterpirate/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/clusterpirate/Chart.yaml -------------------------------------------------------------------------------- /charts/clusterpirate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/clusterpirate/LICENSE -------------------------------------------------------------------------------- /charts/clusterpirate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/clusterpirate/README.md -------------------------------------------------------------------------------- /charts/clusterpirate/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: 67bb3196-8701-467e-966a-6a1aa1c4cce2 2 | -------------------------------------------------------------------------------- /charts/clusterpirate/ci/default-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/clusterpirate/ci/default-values.yaml -------------------------------------------------------------------------------- /charts/clusterpirate/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/clusterpirate/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/clusterpirate/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/clusterpirate/templates/clusterrole.yaml -------------------------------------------------------------------------------- /charts/clusterpirate/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/clusterpirate/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/clusterpirate/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/clusterpirate/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/clusterpirate/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/clusterpirate/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/clusterpirate/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/clusterpirate/templates/secret.yaml -------------------------------------------------------------------------------- /charts/clusterpirate/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/clusterpirate/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/clusterpirate/tests/common-parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/clusterpirate/tests/common-parameters_test.yaml -------------------------------------------------------------------------------- /charts/clusterpirate/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/clusterpirate/values.schema.json -------------------------------------------------------------------------------- /charts/clusterpirate/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/clusterpirate/values.yaml -------------------------------------------------------------------------------- /charts/common/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/common/CHANGELOG.md -------------------------------------------------------------------------------- /charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/common/Chart.yaml -------------------------------------------------------------------------------- /charts/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/common/LICENSE -------------------------------------------------------------------------------- /charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/common/README.md -------------------------------------------------------------------------------- /charts/common/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/common/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/common/templates/_secrets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/common/templates/_secrets.tpl -------------------------------------------------------------------------------- /charts/common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/common/values.yaml -------------------------------------------------------------------------------- /charts/etcd/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/CHANGELOG.md -------------------------------------------------------------------------------- /charts/etcd/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/Chart.lock -------------------------------------------------------------------------------- /charts/etcd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/Chart.yaml -------------------------------------------------------------------------------- /charts/etcd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/LICENSE -------------------------------------------------------------------------------- /charts/etcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/README.md -------------------------------------------------------------------------------- /charts/etcd/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: 229cfa80-872a-4900-ad74-d9d1252e8214 -------------------------------------------------------------------------------- /charts/etcd/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/etcd/templates/extraobjects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/templates/extraobjects.yaml -------------------------------------------------------------------------------- /charts/etcd/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/etcd/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /charts/etcd/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/templates/service.yaml -------------------------------------------------------------------------------- /charts/etcd/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/etcd/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/etcd/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/etcd/tests/common-parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/tests/common-parameters_test.yaml -------------------------------------------------------------------------------- /charts/etcd/tests/etcd-functionality_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/tests/etcd-functionality_test.yaml -------------------------------------------------------------------------------- /charts/etcd/tests/service-account_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/tests/service-account_test.yaml -------------------------------------------------------------------------------- /charts/etcd/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/values.schema.json -------------------------------------------------------------------------------- /charts/etcd/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/etcd/values.yaml -------------------------------------------------------------------------------- /charts/ghost/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/CHANGELOG.md -------------------------------------------------------------------------------- /charts/ghost/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/Chart.lock -------------------------------------------------------------------------------- /charts/ghost/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/Chart.yaml -------------------------------------------------------------------------------- /charts/ghost/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/LICENSE -------------------------------------------------------------------------------- /charts/ghost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/README.md -------------------------------------------------------------------------------- /charts/ghost/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: 12762e80-3448-4c29-8865-f2d20b691e6d 2 | -------------------------------------------------------------------------------- /charts/ghost/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/ci/test-values.yaml -------------------------------------------------------------------------------- /charts/ghost/config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/config.example.json -------------------------------------------------------------------------------- /charts/ghost/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/ghost/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/ghost/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/ghost/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/ghost/templates/extraobjects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/templates/extraobjects.yaml -------------------------------------------------------------------------------- /charts/ghost/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/ghost/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/ghost/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/ghost/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/templates/service.yaml -------------------------------------------------------------------------------- /charts/ghost/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/ghost/tests/common-parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/tests/common-parameters_test.yaml -------------------------------------------------------------------------------- /charts/ghost/tests/openshift_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/tests/openshift_test.yaml -------------------------------------------------------------------------------- /charts/ghost/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/values.schema.json -------------------------------------------------------------------------------- /charts/ghost/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/ghost/values.yaml -------------------------------------------------------------------------------- /charts/keycloak/.helmignore: -------------------------------------------------------------------------------- 1 | artifacthub-repo.yaml 2 | tests/ 3 | -------------------------------------------------------------------------------- /charts/keycloak/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/CHANGELOG.md -------------------------------------------------------------------------------- /charts/keycloak/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/Chart.lock -------------------------------------------------------------------------------- /charts/keycloak/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/Chart.yaml -------------------------------------------------------------------------------- /charts/keycloak/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/LICENSE -------------------------------------------------------------------------------- /charts/keycloak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/README.md -------------------------------------------------------------------------------- /charts/keycloak/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: cbb30f4d-c213-4712-89e6-a32d94ff9d25 2 | -------------------------------------------------------------------------------- /charts/keycloak/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/keycloak/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/templates/certificate.yaml -------------------------------------------------------------------------------- /charts/keycloak/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/keycloak/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/keycloak/templates/extraobjects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/templates/extraobjects.yaml -------------------------------------------------------------------------------- /charts/keycloak/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/keycloak/templates/metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/templates/metrics-service.yaml -------------------------------------------------------------------------------- /charts/keycloak/templates/metrics-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/templates/metrics-servicemonitor.yaml -------------------------------------------------------------------------------- /charts/keycloak/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/keycloak/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/templates/secret.yaml -------------------------------------------------------------------------------- /charts/keycloak/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/templates/service.yaml -------------------------------------------------------------------------------- /charts/keycloak/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/keycloak/tests/common-parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/tests/common-parameters_test.yaml -------------------------------------------------------------------------------- /charts/keycloak/tests/deployment-parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/tests/deployment-parameters_test.yaml -------------------------------------------------------------------------------- /charts/keycloak/tests/openshift_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/tests/openshift_test.yaml -------------------------------------------------------------------------------- /charts/keycloak/tests/service-account_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/tests/service-account_test.yaml -------------------------------------------------------------------------------- /charts/keycloak/tests/tls-certmanager_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/tests/tls-certmanager_test.yaml -------------------------------------------------------------------------------- /charts/keycloak/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/values.schema.json -------------------------------------------------------------------------------- /charts/keycloak/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/keycloak/values.yaml -------------------------------------------------------------------------------- /charts/mariadb/.helmignore: -------------------------------------------------------------------------------- 1 | artifacthub-repo.yaml 2 | tests/ 3 | -------------------------------------------------------------------------------- /charts/mariadb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/CHANGELOG.md -------------------------------------------------------------------------------- /charts/mariadb/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/Chart.lock -------------------------------------------------------------------------------- /charts/mariadb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/Chart.yaml -------------------------------------------------------------------------------- /charts/mariadb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/LICENSE -------------------------------------------------------------------------------- /charts/mariadb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/README.md -------------------------------------------------------------------------------- /charts/mariadb/README_GALERA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/README_GALERA.md -------------------------------------------------------------------------------- /charts/mariadb/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: 38ebdda6-bd9b-4c01-af4e-5589dedf2798 2 | -------------------------------------------------------------------------------- /charts/mariadb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/mariadb/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/mariadb/templates/extraobjects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/templates/extraobjects.yaml -------------------------------------------------------------------------------- /charts/mariadb/templates/galera/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/templates/galera/configmap.yaml -------------------------------------------------------------------------------- /charts/mariadb/templates/galera/scripts-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/templates/galera/scripts-configmap.yaml -------------------------------------------------------------------------------- /charts/mariadb/templates/galera/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/templates/galera/secret.yaml -------------------------------------------------------------------------------- /charts/mariadb/templates/galera/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/templates/galera/service.yaml -------------------------------------------------------------------------------- /charts/mariadb/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/mariadb/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/mariadb/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/templates/secret.yaml -------------------------------------------------------------------------------- /charts/mariadb/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/templates/service.yaml -------------------------------------------------------------------------------- /charts/mariadb/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/mariadb/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/mariadb/tests/common-parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/tests/common-parameters_test.yaml -------------------------------------------------------------------------------- /charts/mariadb/tests/openshift_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/tests/openshift_test.yaml -------------------------------------------------------------------------------- /charts/mariadb/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/values.schema.json -------------------------------------------------------------------------------- /charts/mariadb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mariadb/values.yaml -------------------------------------------------------------------------------- /charts/memcached/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/CHANGELOG.md -------------------------------------------------------------------------------- /charts/memcached/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/Chart.lock -------------------------------------------------------------------------------- /charts/memcached/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/Chart.yaml -------------------------------------------------------------------------------- /charts/memcached/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/LICENSE -------------------------------------------------------------------------------- /charts/memcached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/README.md -------------------------------------------------------------------------------- /charts/memcached/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: 7a876f5c-f579-49b2-857d-d62135ab9c49 2 | -------------------------------------------------------------------------------- /charts/memcached/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/memcached/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/memcached/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/memcached/templates/extraobjects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/templates/extraobjects.yaml -------------------------------------------------------------------------------- /charts/memcached/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/memcached/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/templates/pdb.yaml -------------------------------------------------------------------------------- /charts/memcached/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/templates/service.yaml -------------------------------------------------------------------------------- /charts/memcached/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/memcached/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/memcached/tests/common-parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/tests/common-parameters_test.yaml -------------------------------------------------------------------------------- /charts/memcached/tests/metrics_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/tests/metrics_test.yaml -------------------------------------------------------------------------------- /charts/memcached/tests/openshift_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/tests/openshift_test.yaml -------------------------------------------------------------------------------- /charts/memcached/tests/service_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/tests/service_test.yaml -------------------------------------------------------------------------------- /charts/memcached/tests/servicemonitor_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/tests/servicemonitor_test.yaml -------------------------------------------------------------------------------- /charts/memcached/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/values.schema.json -------------------------------------------------------------------------------- /charts/memcached/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/memcached/values.yaml -------------------------------------------------------------------------------- /charts/minio/.helmignore: -------------------------------------------------------------------------------- 1 | artifacthub-repo.yaml 2 | tests/ 3 | -------------------------------------------------------------------------------- /charts/minio/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/CHANGELOG.md -------------------------------------------------------------------------------- /charts/minio/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/Chart.lock -------------------------------------------------------------------------------- /charts/minio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/Chart.yaml -------------------------------------------------------------------------------- /charts/minio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/LICENSE -------------------------------------------------------------------------------- /charts/minio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/README.md -------------------------------------------------------------------------------- /charts/minio/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: d6fb4297-8c7b-429b-b0ae-9553e352a90d 2 | -------------------------------------------------------------------------------- /charts/minio/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/minio/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/minio/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/minio/templates/extraobjects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/templates/extraobjects.yaml -------------------------------------------------------------------------------- /charts/minio/templates/ingress-console.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/templates/ingress-console.yaml -------------------------------------------------------------------------------- /charts/minio/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/minio/templates/post-job-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/templates/post-job-configmap.yaml -------------------------------------------------------------------------------- /charts/minio/templates/post-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/templates/post-job.yaml -------------------------------------------------------------------------------- /charts/minio/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/minio/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/templates/secret.yaml -------------------------------------------------------------------------------- /charts/minio/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/templates/service.yaml -------------------------------------------------------------------------------- /charts/minio/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/minio/tests/common-parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/tests/common-parameters_test.yaml -------------------------------------------------------------------------------- /charts/minio/tests/openshift_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/tests/openshift_test.yaml -------------------------------------------------------------------------------- /charts/minio/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/values.schema.json -------------------------------------------------------------------------------- /charts/minio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/minio/values.yaml -------------------------------------------------------------------------------- /charts/mongodb/.helmignore: -------------------------------------------------------------------------------- 1 | artifacthub-repo.yaml 2 | tests/ 3 | -------------------------------------------------------------------------------- /charts/mongodb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/CHANGELOG.md -------------------------------------------------------------------------------- /charts/mongodb/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/Chart.lock -------------------------------------------------------------------------------- /charts/mongodb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/Chart.yaml -------------------------------------------------------------------------------- /charts/mongodb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/LICENSE -------------------------------------------------------------------------------- /charts/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/README.md -------------------------------------------------------------------------------- /charts/mongodb/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: ef32b36b-8f06-41e2-9291-51808811524d 2 | -------------------------------------------------------------------------------- /charts/mongodb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/mongodb/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/mongodb/templates/custom-user-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/templates/custom-user-secret.yaml -------------------------------------------------------------------------------- /charts/mongodb/templates/extraobjects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/templates/extraobjects.yaml -------------------------------------------------------------------------------- /charts/mongodb/templates/init-scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/templates/init-scripts.yaml -------------------------------------------------------------------------------- /charts/mongodb/templates/metrics-networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/templates/metrics-networkpolicy.yaml -------------------------------------------------------------------------------- /charts/mongodb/templates/metrics-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/templates/metrics-secret.yaml -------------------------------------------------------------------------------- /charts/mongodb/templates/metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/templates/metrics-service.yaml -------------------------------------------------------------------------------- /charts/mongodb/templates/metrics-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/templates/metrics-servicemonitor.yaml -------------------------------------------------------------------------------- /charts/mongodb/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/templates/secret.yaml -------------------------------------------------------------------------------- /charts/mongodb/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/templates/service.yaml -------------------------------------------------------------------------------- /charts/mongodb/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/mongodb/tests/common-parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/tests/common-parameters_test.yaml -------------------------------------------------------------------------------- /charts/mongodb/tests/container-override_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/tests/container-override_test.yaml -------------------------------------------------------------------------------- /charts/mongodb/tests/openshift_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/tests/openshift_test.yaml -------------------------------------------------------------------------------- /charts/mongodb/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/values.schema.json -------------------------------------------------------------------------------- /charts/mongodb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/mongodb/values.yaml -------------------------------------------------------------------------------- /charts/nginx/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/CHANGELOG.md -------------------------------------------------------------------------------- /charts/nginx/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/Chart.lock -------------------------------------------------------------------------------- /charts/nginx/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/Chart.yaml -------------------------------------------------------------------------------- /charts/nginx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/LICENSE -------------------------------------------------------------------------------- /charts/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/README.md -------------------------------------------------------------------------------- /charts/nginx/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: 7e7ab434-cbc6-4e1b-aa32-5ad4145a9fa2 2 | -------------------------------------------------------------------------------- /charts/nginx/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/ci/test-values.yaml -------------------------------------------------------------------------------- /charts/nginx/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/nginx/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/nginx/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/nginx/templates/extraobjects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/templates/extraobjects.yaml -------------------------------------------------------------------------------- /charts/nginx/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/nginx/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/nginx/templates/metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/templates/metrics-service.yaml -------------------------------------------------------------------------------- /charts/nginx/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/templates/service.yaml -------------------------------------------------------------------------------- /charts/nginx/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/nginx/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/nginx/tests/common-parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/tests/common-parameters_test.yaml -------------------------------------------------------------------------------- /charts/nginx/tests/openshift_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/tests/openshift_test.yaml -------------------------------------------------------------------------------- /charts/nginx/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/values.schema.json -------------------------------------------------------------------------------- /charts/nginx/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/nginx/values.yaml -------------------------------------------------------------------------------- /charts/postgres/.helmignore: -------------------------------------------------------------------------------- 1 | artifacthub-repo.yaml 2 | tests/ 3 | -------------------------------------------------------------------------------- /charts/postgres/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/CHANGELOG.md -------------------------------------------------------------------------------- /charts/postgres/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/Chart.lock -------------------------------------------------------------------------------- /charts/postgres/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/Chart.yaml -------------------------------------------------------------------------------- /charts/postgres/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/LICENSE -------------------------------------------------------------------------------- /charts/postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/README.md -------------------------------------------------------------------------------- /charts/postgres/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: ece1edd1-bfa5-4234-a4b5-a38b7f8cdbe6 2 | -------------------------------------------------------------------------------- /charts/postgres/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/postgres/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/postgres/templates/custom-user-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/templates/custom-user-secret.yaml -------------------------------------------------------------------------------- /charts/postgres/templates/extraobjects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/templates/extraobjects.yaml -------------------------------------------------------------------------------- /charts/postgres/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/postgres/templates/initialization-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/templates/initialization-configmap.yaml -------------------------------------------------------------------------------- /charts/postgres/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/templates/secret.yaml -------------------------------------------------------------------------------- /charts/postgres/templates/service-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/templates/service-metrics.yaml -------------------------------------------------------------------------------- /charts/postgres/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/templates/service.yaml -------------------------------------------------------------------------------- /charts/postgres/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/postgres/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/postgres/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/postgres/templates/wrapper-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/templates/wrapper-configmap.yaml -------------------------------------------------------------------------------- /charts/postgres/tests/common-parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/tests/common-parameters_test.yaml -------------------------------------------------------------------------------- /charts/postgres/tests/openshift_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/tests/openshift_test.yaml -------------------------------------------------------------------------------- /charts/postgres/tests/service-account_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/tests/service-account_test.yaml -------------------------------------------------------------------------------- /charts/postgres/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/values.schema.json -------------------------------------------------------------------------------- /charts/postgres/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/postgres/values.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | 4 | ## 0.1.0 (2025-12-01) 5 | 6 | * Initial tagged release 7 | -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/Chart.lock -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/Chart.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/LICENSE -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/README.md -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: 97946f34-be80-4b62-ab53-251e83f55f9c 2 | -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_bindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_bindings.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_exchanges.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_exchanges.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_federations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_federations.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_operatorpolicies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_operatorpolicies.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_permissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_permissions.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_policies.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_queues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_queues.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_schemareplications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_schemareplications.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_shovels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_shovels.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_superstreams.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_superstreams.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_topicpermissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_topicpermissions.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_users.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_vhosts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/crds/messaging-topology-operator/rabbitmq.com_vhosts.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/crds/rabbitmq-cluster/rabbitmq.com_rabbitmqclusters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/crds/rabbitmq-cluster/rabbitmq.com_rabbitmqclusters.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/cluster-operator/aggregate-cluster-roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/cluster-operator/aggregate-cluster-roles.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/cluster-operator/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/cluster-operator/clusterrole.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/cluster-operator/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/cluster-operator/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/cluster-operator/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/cluster-operator/deployment.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/cluster-operator/metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/cluster-operator/metrics-service.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/cluster-operator/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/cluster-operator/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/cluster-operator/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/cluster-operator/pdb.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/cluster-operator/podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/cluster-operator/podmonitor.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/cluster-operator/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/cluster-operator/role.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/cluster-operator/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/cluster-operator/rolebinding.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/cluster-operator/sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/cluster-operator/sa.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/cluster-operator/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/cluster-operator/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/aggregate-cluster-roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/aggregate-cluster-roles.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/certificate.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/clusterrole.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/deployment.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/metrics-service.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/pdb.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/podmonitor.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/role.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/rolebinding.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/sa.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/validating-webhook-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/validating-webhook-configuration.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/webhook-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/templates/messaging-topology-operator/webhook-service.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/tests/cluster_operator_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/tests/cluster_operator_test.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/tests/messaging_topology_operator_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/tests/messaging_topology_operator_test.yaml -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/values.schema.json -------------------------------------------------------------------------------- /charts/rabbitmq-cluster-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq-cluster-operator/values.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/CHANGELOG.md -------------------------------------------------------------------------------- /charts/rabbitmq/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/Chart.lock -------------------------------------------------------------------------------- /charts/rabbitmq/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/Chart.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/LICENSE -------------------------------------------------------------------------------- /charts/rabbitmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/README.md -------------------------------------------------------------------------------- /charts/rabbitmq/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: 07a8b95b-29fe-4315-97d0-305bd98a17b8 -------------------------------------------------------------------------------- /charts/rabbitmq/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/rabbitmq/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/templates/definitions-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/templates/definitions-configmap.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/templates/extraobjects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/templates/extraobjects.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/templates/pdb.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/templates/role.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/templates/rolebinding.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/templates/secret.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/templates/service-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/templates/service-headless.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/templates/service.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/tests/common-parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/tests/common-parameters_test.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/tests/openshift_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/tests/openshift_test.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/tests/rabbitmq-functionality_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/tests/rabbitmq-functionality_test.yaml -------------------------------------------------------------------------------- /charts/rabbitmq/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/values.schema.json -------------------------------------------------------------------------------- /charts/rabbitmq/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rabbitmq/values.yaml -------------------------------------------------------------------------------- /charts/redis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/CHANGELOG.md -------------------------------------------------------------------------------- /charts/redis/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/Chart.lock -------------------------------------------------------------------------------- /charts/redis/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/Chart.yaml -------------------------------------------------------------------------------- /charts/redis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/LICENSE -------------------------------------------------------------------------------- /charts/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/README.md -------------------------------------------------------------------------------- /charts/redis/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/redis/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/redis/templates/extraobjects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/templates/extraobjects.yaml -------------------------------------------------------------------------------- /charts/redis/templates/headless-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/templates/headless-service.yaml -------------------------------------------------------------------------------- /charts/redis/templates/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/templates/job.yaml -------------------------------------------------------------------------------- /charts/redis/templates/master-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/templates/master-service.yaml -------------------------------------------------------------------------------- /charts/redis/templates/metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/templates/metrics-service.yaml -------------------------------------------------------------------------------- /charts/redis/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/redis/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/templates/pdb.yaml -------------------------------------------------------------------------------- /charts/redis/templates/prestop-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/templates/prestop-configmap.yaml -------------------------------------------------------------------------------- /charts/redis/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/templates/secret.yaml -------------------------------------------------------------------------------- /charts/redis/templates/sentinel-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/templates/sentinel-service.yaml -------------------------------------------------------------------------------- /charts/redis/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/templates/service.yaml -------------------------------------------------------------------------------- /charts/redis/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/redis/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/redis/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/redis/test-production-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/test-production-values.yaml -------------------------------------------------------------------------------- /charts/redis/tests/common-parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/tests/common-parameters_test.yaml -------------------------------------------------------------------------------- /charts/redis/tests/openshift_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/tests/openshift_test.yaml -------------------------------------------------------------------------------- /charts/redis/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/values.schema.json -------------------------------------------------------------------------------- /charts/redis/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/redis/values.yaml -------------------------------------------------------------------------------- /charts/rustfs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/CHANGELOG.md -------------------------------------------------------------------------------- /charts/rustfs/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/Chart.lock -------------------------------------------------------------------------------- /charts/rustfs/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/Chart.yaml -------------------------------------------------------------------------------- /charts/rustfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/LICENSE -------------------------------------------------------------------------------- /charts/rustfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/README.md -------------------------------------------------------------------------------- /charts/rustfs/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: 007589d8-64db-4e54-9f91-7b02c62b69da -------------------------------------------------------------------------------- /charts/rustfs/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/ci/test-values.yaml -------------------------------------------------------------------------------- /charts/rustfs/docs/deployment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/docs/deployment.svg -------------------------------------------------------------------------------- /charts/rustfs/docs/statefulset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/docs/statefulset.svg -------------------------------------------------------------------------------- /charts/rustfs/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/rustfs/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/rustfs/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/rustfs/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/rustfs/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/rustfs/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/rustfs/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/templates/secret.yaml -------------------------------------------------------------------------------- /charts/rustfs/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/templates/service.yaml -------------------------------------------------------------------------------- /charts/rustfs/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/rustfs/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/rustfs/tests/common-parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/tests/common-parameters_test.yaml -------------------------------------------------------------------------------- /charts/rustfs/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/values.schema.json -------------------------------------------------------------------------------- /charts/rustfs/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/rustfs/values.yaml -------------------------------------------------------------------------------- /charts/timescaledb/.helmignore: -------------------------------------------------------------------------------- 1 | artifacthub-repo.yaml 2 | tests/ 3 | -------------------------------------------------------------------------------- /charts/timescaledb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/timescaledb/CHANGELOG.md -------------------------------------------------------------------------------- /charts/timescaledb/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/timescaledb/Chart.lock -------------------------------------------------------------------------------- /charts/timescaledb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/timescaledb/Chart.yaml -------------------------------------------------------------------------------- /charts/timescaledb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/timescaledb/LICENSE -------------------------------------------------------------------------------- /charts/timescaledb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/timescaledb/README.md -------------------------------------------------------------------------------- /charts/timescaledb/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: b98eb7cc-ca14-445a-90ab-5760cc66498c 2 | -------------------------------------------------------------------------------- /charts/timescaledb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/timescaledb/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/timescaledb/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/timescaledb/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/timescaledb/templates/extraobjects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/timescaledb/templates/extraobjects.yaml -------------------------------------------------------------------------------- /charts/timescaledb/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/timescaledb/templates/secret.yaml -------------------------------------------------------------------------------- /charts/timescaledb/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/timescaledb/templates/service.yaml -------------------------------------------------------------------------------- /charts/timescaledb/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/timescaledb/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/timescaledb/tests/common-parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/timescaledb/tests/common-parameters_test.yaml -------------------------------------------------------------------------------- /charts/timescaledb/tests/openshift_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/timescaledb/tests/openshift_test.yaml -------------------------------------------------------------------------------- /charts/timescaledb/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/timescaledb/values.schema.json -------------------------------------------------------------------------------- /charts/timescaledb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/timescaledb/values.yaml -------------------------------------------------------------------------------- /charts/valkey/.helmignore: -------------------------------------------------------------------------------- 1 | artifacthub-repo.yaml 2 | tests/ 3 | -------------------------------------------------------------------------------- /charts/valkey/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/CHANGELOG.md -------------------------------------------------------------------------------- /charts/valkey/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/Chart.lock -------------------------------------------------------------------------------- /charts/valkey/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/Chart.yaml -------------------------------------------------------------------------------- /charts/valkey/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/LICENSE -------------------------------------------------------------------------------- /charts/valkey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/README.md -------------------------------------------------------------------------------- /charts/valkey/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: f29872e8-ee03-402c-b30c-c9f66c0c2df6 2 | -------------------------------------------------------------------------------- /charts/valkey/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/valkey/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/valkey/templates/extraobjects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/templates/extraobjects.yaml -------------------------------------------------------------------------------- /charts/valkey/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/valkey/templates/master-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/templates/master-service.yaml -------------------------------------------------------------------------------- /charts/valkey/templates/prestop-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/templates/prestop-configmap.yaml -------------------------------------------------------------------------------- /charts/valkey/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/templates/secret.yaml -------------------------------------------------------------------------------- /charts/valkey/templates/sentinel-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/templates/sentinel-service.yaml -------------------------------------------------------------------------------- /charts/valkey/templates/service-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/templates/service-metrics.yaml -------------------------------------------------------------------------------- /charts/valkey/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/templates/service.yaml -------------------------------------------------------------------------------- /charts/valkey/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/valkey/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/valkey/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/valkey/tests/common-parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/tests/common-parameters_test.yaml -------------------------------------------------------------------------------- /charts/valkey/tests/openshift_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/tests/openshift_test.yaml -------------------------------------------------------------------------------- /charts/valkey/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/values.schema.json -------------------------------------------------------------------------------- /charts/valkey/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/valkey/values.yaml -------------------------------------------------------------------------------- /charts/zookeeper/.helmignore: -------------------------------------------------------------------------------- 1 | artifacthub-repo.yaml 2 | tests/ 3 | -------------------------------------------------------------------------------- /charts/zookeeper/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/CHANGELOG.md -------------------------------------------------------------------------------- /charts/zookeeper/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/Chart.lock -------------------------------------------------------------------------------- /charts/zookeeper/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/Chart.yaml -------------------------------------------------------------------------------- /charts/zookeeper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/LICENSE -------------------------------------------------------------------------------- /charts/zookeeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/README.md -------------------------------------------------------------------------------- /charts/zookeeper/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: 8f2d141f-1c72-4691-b52e-46e93382b358 2 | -------------------------------------------------------------------------------- /charts/zookeeper/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/zookeeper/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/zookeeper/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/zookeeper/templates/extraobjects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/templates/extraobjects.yaml -------------------------------------------------------------------------------- /charts/zookeeper/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/zookeeper/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /charts/zookeeper/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/templates/service.yaml -------------------------------------------------------------------------------- /charts/zookeeper/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/zookeeper/tests/common-parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/tests/common-parameters_test.yaml -------------------------------------------------------------------------------- /charts/zookeeper/tests/openshift_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/tests/openshift_test.yaml -------------------------------------------------------------------------------- /charts/zookeeper/tests/unittest-defaults_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/tests/unittest-defaults_test.yaml -------------------------------------------------------------------------------- /charts/zookeeper/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/values.schema.json -------------------------------------------------------------------------------- /charts/zookeeper/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/charts/zookeeper/values.yaml -------------------------------------------------------------------------------- /cosign.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/cosign.pub -------------------------------------------------------------------------------- /generate-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/generate-changelog.sh -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/renovate.json -------------------------------------------------------------------------------- /test-charts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/test-charts.sh -------------------------------------------------------------------------------- /update-appversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/update-appversion.sh -------------------------------------------------------------------------------- /update-rabbitmq-crds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudPirates-io/helm-charts/HEAD/update-rabbitmq-crds.sh --------------------------------------------------------------------------------