├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── jira-pr-validator.yaml │ ├── move_crd_values_to_operator.yaml │ ├── release-alpha.yaml │ ├── release.yaml │ ├── run-tests.yaml │ ├── unit-tests.yaml │ └── visor.yaml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── components ├── tyk-bootstrap │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── bootstrap-post-install.yaml │ │ ├── bootstrap-pre-delete.yaml │ │ ├── bootstrap-pre-install.yaml │ │ ├── bootstrap-role-binding.yml │ │ ├── bootstrap-role.yml │ │ └── bootstrap-serviceaccount.yml │ └── values.yaml ├── tyk-dashboard │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment-dashboard.yaml │ │ ├── ingress-dashboard.yaml │ │ ├── ingress-portal.yaml │ │ ├── secret-dashboard.yaml │ │ ├── secrets.yaml │ │ └── service-dash.yaml │ └── values.yaml ├── tyk-dev-portal │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── ingress-enterprise-portal.yaml │ │ ├── job-portal.yaml │ │ ├── secret.yaml │ │ ├── service-enterprise-portal.yaml │ │ └── statefulset-enterprise-portal.yaml │ └── values.yaml ├── tyk-gateway │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── certs │ │ ├── tlsCert.pem │ │ └── tlsKey.pem │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment-gw-repset.yaml │ │ ├── hpa.yaml │ │ ├── ingress-gw-control.yaml │ │ ├── ingress-gw.yaml │ │ ├── pdb-gw.yaml │ │ ├── secret-certs.yaml │ │ ├── secrets.yaml │ │ ├── service-gw-control.yaml │ │ └── service-gw.yaml │ └── values.yaml ├── tyk-mdcb │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── configs │ │ └── tyk_mdcb.conf │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment-mdcb.yaml │ │ ├── hpa.yaml │ │ ├── http-ingress.yaml │ │ ├── ingress.yaml │ │ ├── secret-mdcb.yaml │ │ ├── service-mdcb.yaml │ │ └── serviceaccount-mdcb.yaml │ └── values.yaml ├── tyk-operator │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ └── crds.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ └── all.yaml │ └── values.yaml └── tyk-pump │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment-pmp.yaml │ ├── podmonitor-pump.yaml │ ├── secrets.yaml │ ├── service-pump-health.yaml │ └── service-pump.yaml │ └── values.yaml ├── ct.yaml ├── tyk-control-plane ├── .helmignore ├── Chart.lock ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ └── _helpers.tpl └── values.yaml ├── tyk-data-plane ├── .helmignore ├── Chart.lock ├── Chart.yaml ├── README.md ├── scripts │ └── tests │ │ └── data-plane-test.sh ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── secrets.yaml │ └── tests │ │ ├── data-plane-test.yaml │ │ └── script-configmap.yaml └── values.yaml ├── tyk-operator-crds ├── crd-v1.0.0.yaml ├── crd-v1.1.0.yaml └── crd-v1.2.0.yaml ├── tyk-oss ├── .helmignore ├── Chart.lock ├── Chart.yaml ├── README.md ├── scripts │ └── tests │ │ └── oss-test.sh ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── tests │ │ ├── oss-test.yaml │ │ └── script-configmap.yaml │ └── tyk-operator-secret.yaml └── values.yaml └── tyk-stack ├── .helmignore ├── Chart.lock ├── Chart.yaml ├── README.md ├── scripts └── tests │ └── tyk-stack-test.sh ├── templates ├── NOTES.txt ├── _helpers.tpl ├── secrets.yaml └── tests │ ├── script-configmap.yaml │ └── stack-test.yaml ├── tests └── dash-deployment_test.yaml └── values.yaml /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/jira-pr-validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/.github/workflows/jira-pr-validator.yaml -------------------------------------------------------------------------------- /.github/workflows/move_crd_values_to_operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/.github/workflows/move_crd_values_to_operator.yaml -------------------------------------------------------------------------------- /.github/workflows/release-alpha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/.github/workflows/release-alpha.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/.github/workflows/run-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/.github/workflows/unit-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/visor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/.github/workflows/visor.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/README.md -------------------------------------------------------------------------------- /components/tyk-bootstrap/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-bootstrap/.helmignore -------------------------------------------------------------------------------- /components/tyk-bootstrap/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-bootstrap/Chart.yaml -------------------------------------------------------------------------------- /components/tyk-bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-bootstrap/README.md -------------------------------------------------------------------------------- /components/tyk-bootstrap/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-bootstrap/templates/NOTES.txt -------------------------------------------------------------------------------- /components/tyk-bootstrap/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-bootstrap/templates/_helpers.tpl -------------------------------------------------------------------------------- /components/tyk-bootstrap/templates/bootstrap-post-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-bootstrap/templates/bootstrap-post-install.yaml -------------------------------------------------------------------------------- /components/tyk-bootstrap/templates/bootstrap-pre-delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-bootstrap/templates/bootstrap-pre-delete.yaml -------------------------------------------------------------------------------- /components/tyk-bootstrap/templates/bootstrap-pre-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-bootstrap/templates/bootstrap-pre-install.yaml -------------------------------------------------------------------------------- /components/tyk-bootstrap/templates/bootstrap-role-binding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-bootstrap/templates/bootstrap-role-binding.yml -------------------------------------------------------------------------------- /components/tyk-bootstrap/templates/bootstrap-role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-bootstrap/templates/bootstrap-role.yml -------------------------------------------------------------------------------- /components/tyk-bootstrap/templates/bootstrap-serviceaccount.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-bootstrap/templates/bootstrap-serviceaccount.yml -------------------------------------------------------------------------------- /components/tyk-bootstrap/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-bootstrap/values.yaml -------------------------------------------------------------------------------- /components/tyk-dashboard/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dashboard/.helmignore -------------------------------------------------------------------------------- /components/tyk-dashboard/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dashboard/Chart.yaml -------------------------------------------------------------------------------- /components/tyk-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dashboard/README.md -------------------------------------------------------------------------------- /components/tyk-dashboard/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dashboard/templates/NOTES.txt -------------------------------------------------------------------------------- /components/tyk-dashboard/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dashboard/templates/_helpers.tpl -------------------------------------------------------------------------------- /components/tyk-dashboard/templates/deployment-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dashboard/templates/deployment-dashboard.yaml -------------------------------------------------------------------------------- /components/tyk-dashboard/templates/ingress-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dashboard/templates/ingress-dashboard.yaml -------------------------------------------------------------------------------- /components/tyk-dashboard/templates/ingress-portal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dashboard/templates/ingress-portal.yaml -------------------------------------------------------------------------------- /components/tyk-dashboard/templates/secret-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dashboard/templates/secret-dashboard.yaml -------------------------------------------------------------------------------- /components/tyk-dashboard/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dashboard/templates/secrets.yaml -------------------------------------------------------------------------------- /components/tyk-dashboard/templates/service-dash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dashboard/templates/service-dash.yaml -------------------------------------------------------------------------------- /components/tyk-dashboard/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dashboard/values.yaml -------------------------------------------------------------------------------- /components/tyk-dev-portal/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dev-portal/.helmignore -------------------------------------------------------------------------------- /components/tyk-dev-portal/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dev-portal/Chart.yaml -------------------------------------------------------------------------------- /components/tyk-dev-portal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dev-portal/README.md -------------------------------------------------------------------------------- /components/tyk-dev-portal/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dev-portal/templates/NOTES.txt -------------------------------------------------------------------------------- /components/tyk-dev-portal/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dev-portal/templates/_helpers.tpl -------------------------------------------------------------------------------- /components/tyk-dev-portal/templates/ingress-enterprise-portal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dev-portal/templates/ingress-enterprise-portal.yaml -------------------------------------------------------------------------------- /components/tyk-dev-portal/templates/job-portal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dev-portal/templates/job-portal.yaml -------------------------------------------------------------------------------- /components/tyk-dev-portal/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dev-portal/templates/secret.yaml -------------------------------------------------------------------------------- /components/tyk-dev-portal/templates/service-enterprise-portal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dev-portal/templates/service-enterprise-portal.yaml -------------------------------------------------------------------------------- /components/tyk-dev-portal/templates/statefulset-enterprise-portal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dev-portal/templates/statefulset-enterprise-portal.yaml -------------------------------------------------------------------------------- /components/tyk-dev-portal/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-dev-portal/values.yaml -------------------------------------------------------------------------------- /components/tyk-gateway/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-gateway/.helmignore -------------------------------------------------------------------------------- /components/tyk-gateway/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-gateway/Chart.yaml -------------------------------------------------------------------------------- /components/tyk-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-gateway/README.md -------------------------------------------------------------------------------- /components/tyk-gateway/certs/tlsCert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-gateway/certs/tlsCert.pem -------------------------------------------------------------------------------- /components/tyk-gateway/certs/tlsKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-gateway/certs/tlsKey.pem -------------------------------------------------------------------------------- /components/tyk-gateway/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-gateway/templates/NOTES.txt -------------------------------------------------------------------------------- /components/tyk-gateway/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-gateway/templates/_helpers.tpl -------------------------------------------------------------------------------- /components/tyk-gateway/templates/deployment-gw-repset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-gateway/templates/deployment-gw-repset.yaml -------------------------------------------------------------------------------- /components/tyk-gateway/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-gateway/templates/hpa.yaml -------------------------------------------------------------------------------- /components/tyk-gateway/templates/ingress-gw-control.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-gateway/templates/ingress-gw-control.yaml -------------------------------------------------------------------------------- /components/tyk-gateway/templates/ingress-gw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-gateway/templates/ingress-gw.yaml -------------------------------------------------------------------------------- /components/tyk-gateway/templates/pdb-gw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-gateway/templates/pdb-gw.yaml -------------------------------------------------------------------------------- /components/tyk-gateway/templates/secret-certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-gateway/templates/secret-certs.yaml -------------------------------------------------------------------------------- /components/tyk-gateway/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-gateway/templates/secrets.yaml -------------------------------------------------------------------------------- /components/tyk-gateway/templates/service-gw-control.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-gateway/templates/service-gw-control.yaml -------------------------------------------------------------------------------- /components/tyk-gateway/templates/service-gw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-gateway/templates/service-gw.yaml -------------------------------------------------------------------------------- /components/tyk-gateway/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-gateway/values.yaml -------------------------------------------------------------------------------- /components/tyk-mdcb/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-mdcb/.helmignore -------------------------------------------------------------------------------- /components/tyk-mdcb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-mdcb/Chart.yaml -------------------------------------------------------------------------------- /components/tyk-mdcb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-mdcb/README.md -------------------------------------------------------------------------------- /components/tyk-mdcb/configs/tyk_mdcb.conf: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /components/tyk-mdcb/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-mdcb/templates/NOTES.txt -------------------------------------------------------------------------------- /components/tyk-mdcb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-mdcb/templates/_helpers.tpl -------------------------------------------------------------------------------- /components/tyk-mdcb/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-mdcb/templates/configmap.yaml -------------------------------------------------------------------------------- /components/tyk-mdcb/templates/deployment-mdcb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-mdcb/templates/deployment-mdcb.yaml -------------------------------------------------------------------------------- /components/tyk-mdcb/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-mdcb/templates/hpa.yaml -------------------------------------------------------------------------------- /components/tyk-mdcb/templates/http-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-mdcb/templates/http-ingress.yaml -------------------------------------------------------------------------------- /components/tyk-mdcb/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-mdcb/templates/ingress.yaml -------------------------------------------------------------------------------- /components/tyk-mdcb/templates/secret-mdcb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-mdcb/templates/secret-mdcb.yaml -------------------------------------------------------------------------------- /components/tyk-mdcb/templates/service-mdcb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-mdcb/templates/service-mdcb.yaml -------------------------------------------------------------------------------- /components/tyk-mdcb/templates/serviceaccount-mdcb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-mdcb/templates/serviceaccount-mdcb.yaml -------------------------------------------------------------------------------- /components/tyk-mdcb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-mdcb/values.yaml -------------------------------------------------------------------------------- /components/tyk-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-operator/Chart.yaml -------------------------------------------------------------------------------- /components/tyk-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-operator/README.md -------------------------------------------------------------------------------- /components/tyk-operator/crds/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-operator/crds/crds.yaml -------------------------------------------------------------------------------- /components/tyk-operator/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-operator/templates/NOTES.txt -------------------------------------------------------------------------------- /components/tyk-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /components/tyk-operator/templates/all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-operator/templates/all.yaml -------------------------------------------------------------------------------- /components/tyk-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-operator/values.yaml -------------------------------------------------------------------------------- /components/tyk-pump/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-pump/.helmignore -------------------------------------------------------------------------------- /components/tyk-pump/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-pump/Chart.yaml -------------------------------------------------------------------------------- /components/tyk-pump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-pump/README.md -------------------------------------------------------------------------------- /components/tyk-pump/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-pump/templates/NOTES.txt -------------------------------------------------------------------------------- /components/tyk-pump/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-pump/templates/_helpers.tpl -------------------------------------------------------------------------------- /components/tyk-pump/templates/deployment-pmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-pump/templates/deployment-pmp.yaml -------------------------------------------------------------------------------- /components/tyk-pump/templates/podmonitor-pump.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-pump/templates/podmonitor-pump.yaml -------------------------------------------------------------------------------- /components/tyk-pump/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-pump/templates/secrets.yaml -------------------------------------------------------------------------------- /components/tyk-pump/templates/service-pump-health.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-pump/templates/service-pump-health.yaml -------------------------------------------------------------------------------- /components/tyk-pump/templates/service-pump.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-pump/templates/service-pump.yaml -------------------------------------------------------------------------------- /components/tyk-pump/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/components/tyk-pump/values.yaml -------------------------------------------------------------------------------- /ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/ct.yaml -------------------------------------------------------------------------------- /tyk-control-plane/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-control-plane/.helmignore -------------------------------------------------------------------------------- /tyk-control-plane/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-control-plane/Chart.lock -------------------------------------------------------------------------------- /tyk-control-plane/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-control-plane/Chart.yaml -------------------------------------------------------------------------------- /tyk-control-plane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-control-plane/README.md -------------------------------------------------------------------------------- /tyk-control-plane/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-control-plane/templates/NOTES.txt -------------------------------------------------------------------------------- /tyk-control-plane/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-control-plane/templates/_helpers.tpl -------------------------------------------------------------------------------- /tyk-control-plane/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-control-plane/values.yaml -------------------------------------------------------------------------------- /tyk-data-plane/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-data-plane/.helmignore -------------------------------------------------------------------------------- /tyk-data-plane/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-data-plane/Chart.lock -------------------------------------------------------------------------------- /tyk-data-plane/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-data-plane/Chart.yaml -------------------------------------------------------------------------------- /tyk-data-plane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-data-plane/README.md -------------------------------------------------------------------------------- /tyk-data-plane/scripts/tests/data-plane-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-data-plane/scripts/tests/data-plane-test.sh -------------------------------------------------------------------------------- /tyk-data-plane/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-data-plane/templates/NOTES.txt -------------------------------------------------------------------------------- /tyk-data-plane/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-data-plane/templates/_helpers.tpl -------------------------------------------------------------------------------- /tyk-data-plane/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-data-plane/templates/secrets.yaml -------------------------------------------------------------------------------- /tyk-data-plane/templates/tests/data-plane-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-data-plane/templates/tests/data-plane-test.yaml -------------------------------------------------------------------------------- /tyk-data-plane/templates/tests/script-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-data-plane/templates/tests/script-configmap.yaml -------------------------------------------------------------------------------- /tyk-data-plane/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-data-plane/values.yaml -------------------------------------------------------------------------------- /tyk-operator-crds/crd-v1.0.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-operator-crds/crd-v1.0.0.yaml -------------------------------------------------------------------------------- /tyk-operator-crds/crd-v1.1.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-operator-crds/crd-v1.1.0.yaml -------------------------------------------------------------------------------- /tyk-operator-crds/crd-v1.2.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-operator-crds/crd-v1.2.0.yaml -------------------------------------------------------------------------------- /tyk-oss/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-oss/.helmignore -------------------------------------------------------------------------------- /tyk-oss/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-oss/Chart.lock -------------------------------------------------------------------------------- /tyk-oss/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-oss/Chart.yaml -------------------------------------------------------------------------------- /tyk-oss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-oss/README.md -------------------------------------------------------------------------------- /tyk-oss/scripts/tests/oss-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-oss/scripts/tests/oss-test.sh -------------------------------------------------------------------------------- /tyk-oss/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-oss/templates/NOTES.txt -------------------------------------------------------------------------------- /tyk-oss/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-oss/templates/_helpers.tpl -------------------------------------------------------------------------------- /tyk-oss/templates/tests/oss-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-oss/templates/tests/oss-test.yaml -------------------------------------------------------------------------------- /tyk-oss/templates/tests/script-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-oss/templates/tests/script-configmap.yaml -------------------------------------------------------------------------------- /tyk-oss/templates/tyk-operator-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-oss/templates/tyk-operator-secret.yaml -------------------------------------------------------------------------------- /tyk-oss/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-oss/values.yaml -------------------------------------------------------------------------------- /tyk-stack/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-stack/.helmignore -------------------------------------------------------------------------------- /tyk-stack/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-stack/Chart.lock -------------------------------------------------------------------------------- /tyk-stack/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-stack/Chart.yaml -------------------------------------------------------------------------------- /tyk-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-stack/README.md -------------------------------------------------------------------------------- /tyk-stack/scripts/tests/tyk-stack-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-stack/scripts/tests/tyk-stack-test.sh -------------------------------------------------------------------------------- /tyk-stack/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-stack/templates/NOTES.txt -------------------------------------------------------------------------------- /tyk-stack/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-stack/templates/_helpers.tpl -------------------------------------------------------------------------------- /tyk-stack/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-stack/templates/secrets.yaml -------------------------------------------------------------------------------- /tyk-stack/templates/tests/script-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-stack/templates/tests/script-configmap.yaml -------------------------------------------------------------------------------- /tyk-stack/templates/tests/stack-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-stack/templates/tests/stack-test.yaml -------------------------------------------------------------------------------- /tyk-stack/tests/dash-deployment_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-stack/tests/dash-deployment_test.yaml -------------------------------------------------------------------------------- /tyk-stack/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TykTechnologies/tyk-charts/HEAD/tyk-stack/values.yaml --------------------------------------------------------------------------------