├── .circleci └── config.yml ├── .github ├── CODEOWNERS ├── pull_request_template.md └── renovate.json ├── .gitignore ├── CONTRIBUTING.adoc ├── LICENSE.txt ├── README.md ├── ae ├── .helmignore ├── CHANGELOG.md ├── Chart.yaml ├── README.adoc ├── README.md ├── rbac.yml ├── templates │ ├── _helpers.tpl │ ├── engine-autoscaler.yaml │ ├── engine-configmap.yaml │ ├── engine-deployment.yaml │ ├── engine-ingress.yaml │ ├── engine-pdb.yaml │ ├── engine-role.yaml │ ├── engine-rolebinding.yaml │ ├── engine-service.yaml │ ├── engine-serviceaccount.yaml │ ├── engine-technical-ingress.yaml │ ├── extra-manifests.yaml │ ├── licenses-secrets.yaml │ └── networkpolicy.yaml ├── tests │ ├── autoscaler_test.yaml │ ├── configmap_test.yaml │ ├── deployment_test.yaml │ ├── external_configuration.yaml │ ├── extra-manifests_test.yaml │ ├── ingress_technical_test.yaml │ ├── ingress_test.yaml │ ├── license-secrets_test.yaml │ ├── networkPolicy_test.yaml │ ├── pdb_test.yaml │ ├── role_test.yaml │ ├── rolebinding_test.yaml │ ├── service_technical-api_test.yaml │ └── service_test.yaml └── values.yaml ├── am └── README.md ├── apim └── README.md ├── cockpit ├── .helmignore ├── CHANGELOG.md ├── Chart.yaml ├── NOTES.txt ├── README.adoc ├── README.md ├── rbac.yml ├── requirements.lock ├── requirements.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── api │ │ ├── api-autoscaler.yaml │ │ ├── api-configmap.yaml │ │ ├── api-deployment.yaml │ │ ├── api-ingress-technical.yaml │ │ ├── api-ingress-ws.yaml │ │ ├── api-ingress.yaml │ │ ├── api-pdb.yaml │ │ ├── api-service-hz.yaml │ │ ├── api-service.yaml │ │ └── api-upgrader-job.yaml │ ├── common │ │ ├── cockpit-role.yaml │ │ ├── cockpit-rolebinding.yaml │ │ ├── cockpit-serviceaccount.yaml │ │ └── networkpolicy.yaml │ ├── extra-manifests.yaml │ ├── generator │ │ ├── generator-autoscaler.yaml │ │ ├── generator-configmap.yaml │ │ ├── generator-deployment.yaml │ │ ├── generator-pdb.yaml │ │ └── generator-service.yaml │ └── ui │ │ ├── ui-autoscaler.yaml │ │ ├── ui-configmap.yaml │ │ ├── ui-deployment.yaml │ │ ├── ui-ingress.yaml │ │ ├── ui-pdb.yaml │ │ └── ui-service.yaml ├── tests │ ├── api │ │ ├── api-autoscaler_test.yaml │ │ ├── api-configmap_gravitee_yaml_test.yaml │ │ ├── api-configmap_hazelcast_yaml_test.yaml │ │ ├── api-configmap_logback_yaml_test.yaml │ │ ├── api-deployment_test.yaml │ │ ├── api-ingress-technical_test.yaml │ │ ├── api-ingress-ws_test.yaml │ │ ├── api-ingress_test.yaml │ │ ├── api-pdb_test.yaml │ │ ├── api-service_technical-api_test.yaml │ │ ├── api-service_test.yaml │ │ ├── api_upgrader_test.yaml │ │ └── external_configuration.yaml │ ├── common │ │ ├── cockpit-role_test.yaml │ │ ├── cockpit-rolebinding_test.yaml │ │ ├── cockpit-serviceaccount_test.yaml │ │ └── networkPolicy_test.yaml │ ├── extra-manifests_test.yaml │ ├── generator │ │ ├── external_configuration.yaml │ │ ├── generator-autoscaler_test.yaml │ │ ├── generator-configmap_test.yaml │ │ ├── generator-deployment_test.yaml │ │ ├── generator-pdb_test.yaml │ │ └── generator-service_test.yaml │ └── ui │ │ ├── external_configuration.yaml │ │ ├── ui-autoscaler_test.yaml │ │ ├── ui-configmap_test.yaml │ │ ├── ui-deployment_test.yaml │ │ ├── ui-ingress_test.yaml │ │ ├── ui-pdb_test.yaml │ │ └── ui-service_test.yaml └── values.yaml ├── designer ├── .helmignore ├── CHANGELOG.md ├── Chart.yaml ├── requirements.lock ├── requirements.yaml ├── templates │ ├── _helpers.tpl │ ├── api │ │ ├── api-autoscaler.yaml │ │ ├── api-configmap.yaml │ │ ├── api-deployment.yaml │ │ ├── api-ingress.yaml │ │ └── api-service.yaml │ ├── generator │ │ ├── generator-autoscaler.yaml │ │ ├── generator-configmap.yaml │ │ ├── generator-deployment.yaml │ │ └── generator-service.yaml │ └── ui │ │ ├── ui-autoscaler.yaml │ │ ├── ui-configmap.yaml │ │ ├── ui-deployment.yaml │ │ ├── ui-ingress.yaml │ │ └── ui-service.yaml ├── tests │ ├── api │ │ └── autoscaler_test.yaml │ ├── generator │ │ └── autoscaler_test.yaml │ └── ui │ │ └── autoscaler_test.yaml └── values.yaml └── release.sh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/CONTRIBUTING.adoc -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /ae/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/.helmignore -------------------------------------------------------------------------------- /ae/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/CHANGELOG.md -------------------------------------------------------------------------------- /ae/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/Chart.yaml -------------------------------------------------------------------------------- /ae/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/README.adoc -------------------------------------------------------------------------------- /ae/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/README.md -------------------------------------------------------------------------------- /ae/rbac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/rbac.yml -------------------------------------------------------------------------------- /ae/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/templates/_helpers.tpl -------------------------------------------------------------------------------- /ae/templates/engine-autoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/templates/engine-autoscaler.yaml -------------------------------------------------------------------------------- /ae/templates/engine-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/templates/engine-configmap.yaml -------------------------------------------------------------------------------- /ae/templates/engine-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/templates/engine-deployment.yaml -------------------------------------------------------------------------------- /ae/templates/engine-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/templates/engine-ingress.yaml -------------------------------------------------------------------------------- /ae/templates/engine-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/templates/engine-pdb.yaml -------------------------------------------------------------------------------- /ae/templates/engine-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/templates/engine-role.yaml -------------------------------------------------------------------------------- /ae/templates/engine-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/templates/engine-rolebinding.yaml -------------------------------------------------------------------------------- /ae/templates/engine-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/templates/engine-service.yaml -------------------------------------------------------------------------------- /ae/templates/engine-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/templates/engine-serviceaccount.yaml -------------------------------------------------------------------------------- /ae/templates/engine-technical-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/templates/engine-technical-ingress.yaml -------------------------------------------------------------------------------- /ae/templates/extra-manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/templates/extra-manifests.yaml -------------------------------------------------------------------------------- /ae/templates/licenses-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/templates/licenses-secrets.yaml -------------------------------------------------------------------------------- /ae/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /ae/tests/autoscaler_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/tests/autoscaler_test.yaml -------------------------------------------------------------------------------- /ae/tests/configmap_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/tests/configmap_test.yaml -------------------------------------------------------------------------------- /ae/tests/deployment_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/tests/deployment_test.yaml -------------------------------------------------------------------------------- /ae/tests/external_configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/tests/external_configuration.yaml -------------------------------------------------------------------------------- /ae/tests/extra-manifests_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/tests/extra-manifests_test.yaml -------------------------------------------------------------------------------- /ae/tests/ingress_technical_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/tests/ingress_technical_test.yaml -------------------------------------------------------------------------------- /ae/tests/ingress_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/tests/ingress_test.yaml -------------------------------------------------------------------------------- /ae/tests/license-secrets_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/tests/license-secrets_test.yaml -------------------------------------------------------------------------------- /ae/tests/networkPolicy_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/tests/networkPolicy_test.yaml -------------------------------------------------------------------------------- /ae/tests/pdb_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/tests/pdb_test.yaml -------------------------------------------------------------------------------- /ae/tests/role_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/tests/role_test.yaml -------------------------------------------------------------------------------- /ae/tests/rolebinding_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/tests/rolebinding_test.yaml -------------------------------------------------------------------------------- /ae/tests/service_technical-api_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/tests/service_technical-api_test.yaml -------------------------------------------------------------------------------- /ae/tests/service_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/tests/service_test.yaml -------------------------------------------------------------------------------- /ae/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/ae/values.yaml -------------------------------------------------------------------------------- /am/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/am/README.md -------------------------------------------------------------------------------- /apim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/apim/README.md -------------------------------------------------------------------------------- /cockpit/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/.helmignore -------------------------------------------------------------------------------- /cockpit/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/CHANGELOG.md -------------------------------------------------------------------------------- /cockpit/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/Chart.yaml -------------------------------------------------------------------------------- /cockpit/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/NOTES.txt -------------------------------------------------------------------------------- /cockpit/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/README.adoc -------------------------------------------------------------------------------- /cockpit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/README.md -------------------------------------------------------------------------------- /cockpit/rbac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/rbac.yml -------------------------------------------------------------------------------- /cockpit/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/requirements.lock -------------------------------------------------------------------------------- /cockpit/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/requirements.yaml -------------------------------------------------------------------------------- /cockpit/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/NOTES.txt -------------------------------------------------------------------------------- /cockpit/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/_helpers.tpl -------------------------------------------------------------------------------- /cockpit/templates/api/api-autoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/api/api-autoscaler.yaml -------------------------------------------------------------------------------- /cockpit/templates/api/api-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/api/api-configmap.yaml -------------------------------------------------------------------------------- /cockpit/templates/api/api-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/api/api-deployment.yaml -------------------------------------------------------------------------------- /cockpit/templates/api/api-ingress-technical.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/api/api-ingress-technical.yaml -------------------------------------------------------------------------------- /cockpit/templates/api/api-ingress-ws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/api/api-ingress-ws.yaml -------------------------------------------------------------------------------- /cockpit/templates/api/api-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/api/api-ingress.yaml -------------------------------------------------------------------------------- /cockpit/templates/api/api-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/api/api-pdb.yaml -------------------------------------------------------------------------------- /cockpit/templates/api/api-service-hz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/api/api-service-hz.yaml -------------------------------------------------------------------------------- /cockpit/templates/api/api-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/api/api-service.yaml -------------------------------------------------------------------------------- /cockpit/templates/api/api-upgrader-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/api/api-upgrader-job.yaml -------------------------------------------------------------------------------- /cockpit/templates/common/cockpit-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/common/cockpit-role.yaml -------------------------------------------------------------------------------- /cockpit/templates/common/cockpit-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/common/cockpit-rolebinding.yaml -------------------------------------------------------------------------------- /cockpit/templates/common/cockpit-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/common/cockpit-serviceaccount.yaml -------------------------------------------------------------------------------- /cockpit/templates/common/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/common/networkpolicy.yaml -------------------------------------------------------------------------------- /cockpit/templates/extra-manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/extra-manifests.yaml -------------------------------------------------------------------------------- /cockpit/templates/generator/generator-autoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/generator/generator-autoscaler.yaml -------------------------------------------------------------------------------- /cockpit/templates/generator/generator-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/generator/generator-configmap.yaml -------------------------------------------------------------------------------- /cockpit/templates/generator/generator-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/generator/generator-deployment.yaml -------------------------------------------------------------------------------- /cockpit/templates/generator/generator-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/generator/generator-pdb.yaml -------------------------------------------------------------------------------- /cockpit/templates/generator/generator-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/generator/generator-service.yaml -------------------------------------------------------------------------------- /cockpit/templates/ui/ui-autoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/ui/ui-autoscaler.yaml -------------------------------------------------------------------------------- /cockpit/templates/ui/ui-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/ui/ui-configmap.yaml -------------------------------------------------------------------------------- /cockpit/templates/ui/ui-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/ui/ui-deployment.yaml -------------------------------------------------------------------------------- /cockpit/templates/ui/ui-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/ui/ui-ingress.yaml -------------------------------------------------------------------------------- /cockpit/templates/ui/ui-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/ui/ui-pdb.yaml -------------------------------------------------------------------------------- /cockpit/templates/ui/ui-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/templates/ui/ui-service.yaml -------------------------------------------------------------------------------- /cockpit/tests/api/api-autoscaler_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/api/api-autoscaler_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/api/api-configmap_gravitee_yaml_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/api/api-configmap_gravitee_yaml_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/api/api-configmap_hazelcast_yaml_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/api/api-configmap_hazelcast_yaml_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/api/api-configmap_logback_yaml_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/api/api-configmap_logback_yaml_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/api/api-deployment_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/api/api-deployment_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/api/api-ingress-technical_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/api/api-ingress-technical_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/api/api-ingress-ws_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/api/api-ingress-ws_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/api/api-ingress_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/api/api-ingress_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/api/api-pdb_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/api/api-pdb_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/api/api-service_technical-api_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/api/api-service_technical-api_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/api/api-service_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/api/api-service_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/api/api_upgrader_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/api/api_upgrader_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/api/external_configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/api/external_configuration.yaml -------------------------------------------------------------------------------- /cockpit/tests/common/cockpit-role_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/common/cockpit-role_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/common/cockpit-rolebinding_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/common/cockpit-rolebinding_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/common/cockpit-serviceaccount_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/common/cockpit-serviceaccount_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/common/networkPolicy_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/common/networkPolicy_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/extra-manifests_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/extra-manifests_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/generator/external_configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/generator/external_configuration.yaml -------------------------------------------------------------------------------- /cockpit/tests/generator/generator-autoscaler_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/generator/generator-autoscaler_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/generator/generator-configmap_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/generator/generator-configmap_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/generator/generator-deployment_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/generator/generator-deployment_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/generator/generator-pdb_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/generator/generator-pdb_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/generator/generator-service_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/generator/generator-service_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/ui/external_configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/ui/external_configuration.yaml -------------------------------------------------------------------------------- /cockpit/tests/ui/ui-autoscaler_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/ui/ui-autoscaler_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/ui/ui-configmap_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/ui/ui-configmap_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/ui/ui-deployment_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/ui/ui-deployment_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/ui/ui-ingress_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/ui/ui-ingress_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/ui/ui-pdb_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/ui/ui-pdb_test.yaml -------------------------------------------------------------------------------- /cockpit/tests/ui/ui-service_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/tests/ui/ui-service_test.yaml -------------------------------------------------------------------------------- /cockpit/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/cockpit/values.yaml -------------------------------------------------------------------------------- /designer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/.helmignore -------------------------------------------------------------------------------- /designer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/CHANGELOG.md -------------------------------------------------------------------------------- /designer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/Chart.yaml -------------------------------------------------------------------------------- /designer/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/requirements.lock -------------------------------------------------------------------------------- /designer/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/requirements.yaml -------------------------------------------------------------------------------- /designer/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/templates/_helpers.tpl -------------------------------------------------------------------------------- /designer/templates/api/api-autoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/templates/api/api-autoscaler.yaml -------------------------------------------------------------------------------- /designer/templates/api/api-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/templates/api/api-configmap.yaml -------------------------------------------------------------------------------- /designer/templates/api/api-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/templates/api/api-deployment.yaml -------------------------------------------------------------------------------- /designer/templates/api/api-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/templates/api/api-ingress.yaml -------------------------------------------------------------------------------- /designer/templates/api/api-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/templates/api/api-service.yaml -------------------------------------------------------------------------------- /designer/templates/generator/generator-autoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/templates/generator/generator-autoscaler.yaml -------------------------------------------------------------------------------- /designer/templates/generator/generator-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/templates/generator/generator-configmap.yaml -------------------------------------------------------------------------------- /designer/templates/generator/generator-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/templates/generator/generator-deployment.yaml -------------------------------------------------------------------------------- /designer/templates/generator/generator-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/templates/generator/generator-service.yaml -------------------------------------------------------------------------------- /designer/templates/ui/ui-autoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/templates/ui/ui-autoscaler.yaml -------------------------------------------------------------------------------- /designer/templates/ui/ui-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/templates/ui/ui-configmap.yaml -------------------------------------------------------------------------------- /designer/templates/ui/ui-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/templates/ui/ui-deployment.yaml -------------------------------------------------------------------------------- /designer/templates/ui/ui-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/templates/ui/ui-ingress.yaml -------------------------------------------------------------------------------- /designer/templates/ui/ui-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/templates/ui/ui-service.yaml -------------------------------------------------------------------------------- /designer/tests/api/autoscaler_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/tests/api/autoscaler_test.yaml -------------------------------------------------------------------------------- /designer/tests/generator/autoscaler_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/tests/generator/autoscaler_test.yaml -------------------------------------------------------------------------------- /designer/tests/ui/autoscaler_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/tests/ui/autoscaler_test.yaml -------------------------------------------------------------------------------- /designer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/designer/values.yaml -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitee-io/helm-charts/HEAD/release.sh --------------------------------------------------------------------------------