├── .github ├── CODEOWNERS ├── auto_assign.yml ├── pull_request_template.md └── workflows │ ├── auto-assign-pr.yaml │ ├── conventional-commit.yml │ ├── lint-test.yaml │ ├── release-please.yml │ └── release.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierrc.json ├── .release-please-manifest.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── charts ├── flagsmith │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── OPENSHIFT.md │ ├── README.md │ ├── ci │ │ ├── README.md │ │ ├── e2e-test-values.yaml │ │ └── test-values.yaml │ ├── openshift-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _api_environment.yaml │ │ ├── _helpers.tpl │ │ ├── _influxdb_setup.txt │ │ ├── _sse_environment.yaml │ │ ├── _task_processor_environment.yaml │ │ ├── configmap-influxdb-setup.yaml │ │ ├── deployment-api.yaml │ │ ├── deployment-frontend.yaml │ │ ├── deployment-pgbouncer.yaml │ │ ├── deployment-sse.yaml │ │ ├── deployment-task-processor.yaml │ │ ├── django-secret-init │ │ │ ├── job.yaml │ │ │ ├── rbac.yaml │ │ │ └── serviceaccount.yaml │ │ ├── extra-objects.yaml │ │ ├── hpa-api.yaml │ │ ├── ingress-api.yaml │ │ ├── ingress-frontend.yaml │ │ ├── ingress-sse.yaml │ │ ├── jobs-migrate-analytics-data.yaml │ │ ├── jobs-migrate-db.yaml │ │ ├── routes-api.yaml │ │ ├── routes-frontend.yaml │ │ ├── secrets-api.yaml │ │ ├── secrets-influxdb-external.yaml │ │ ├── secrets-pgbouncer.yaml │ │ ├── service-api.yaml │ │ ├── service-frontend.yaml │ │ ├── service-pgbouncer.yaml │ │ ├── service-sse.yaml │ │ ├── service-task-processor.yaml │ │ ├── servicemonitor.yaml │ │ ├── sse-secret-init │ │ │ ├── job.yaml │ │ │ ├── rbac.yaml │ │ │ └── serviceaccount.yaml │ │ └── tests │ │ │ ├── test-api-http-health.yaml │ │ │ ├── test-e2e.yaml │ │ │ └── test-frontend-http.yaml │ └── values.yaml └── graphite │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap-statsd.yaml │ ├── configmap.yaml │ ├── ingress.yaml │ ├── pvc.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── statefulset.yaml │ └── values.yaml ├── ct.yaml ├── lintconf.yaml ├── release-please-config.json └── tools └── lint.sh /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/auto-assign-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/.github/workflows/auto-assign-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/conventional-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/.github/workflows/conventional-commit.yml -------------------------------------------------------------------------------- /.github/workflows/lint-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/.github/workflows/lint-test.yaml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | {"charts/flagsmith":"0.77.3"} 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/README.md -------------------------------------------------------------------------------- /charts/flagsmith/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/.helmignore -------------------------------------------------------------------------------- /charts/flagsmith/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/CHANGELOG.md -------------------------------------------------------------------------------- /charts/flagsmith/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/Chart.lock -------------------------------------------------------------------------------- /charts/flagsmith/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/Chart.yaml -------------------------------------------------------------------------------- /charts/flagsmith/OPENSHIFT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/OPENSHIFT.md -------------------------------------------------------------------------------- /charts/flagsmith/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/README.md -------------------------------------------------------------------------------- /charts/flagsmith/ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/ci/README.md -------------------------------------------------------------------------------- /charts/flagsmith/ci/e2e-test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/ci/e2e-test-values.yaml -------------------------------------------------------------------------------- /charts/flagsmith/ci/test-values.yaml: -------------------------------------------------------------------------------- 1 | tests: 2 | enabled: true 3 | -------------------------------------------------------------------------------- /charts/flagsmith/openshift-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/openshift-values.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/flagsmith/templates/_api_environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/_api_environment.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/flagsmith/templates/_influxdb_setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/_influxdb_setup.txt -------------------------------------------------------------------------------- /charts/flagsmith/templates/_sse_environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/_sse_environment.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/_task_processor_environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/_task_processor_environment.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/configmap-influxdb-setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/configmap-influxdb-setup.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/deployment-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/deployment-api.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/deployment-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/deployment-frontend.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/deployment-pgbouncer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/deployment-pgbouncer.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/deployment-sse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/deployment-sse.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/deployment-task-processor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/deployment-task-processor.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/django-secret-init/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/django-secret-init/job.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/django-secret-init/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/django-secret-init/rbac.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/django-secret-init/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/django-secret-init/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/extra-objects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/extra-objects.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/hpa-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/hpa-api.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/ingress-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/ingress-api.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/ingress-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/ingress-frontend.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/ingress-sse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/ingress-sse.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/jobs-migrate-analytics-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/jobs-migrate-analytics-data.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/jobs-migrate-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/jobs-migrate-db.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/routes-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/routes-api.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/routes-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/routes-frontend.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/secrets-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/secrets-api.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/secrets-influxdb-external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/secrets-influxdb-external.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/secrets-pgbouncer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/secrets-pgbouncer.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/service-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/service-api.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/service-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/service-frontend.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/service-pgbouncer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/service-pgbouncer.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/service-sse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/service-sse.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/service-task-processor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/service-task-processor.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/sse-secret-init/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/sse-secret-init/job.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/sse-secret-init/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/sse-secret-init/rbac.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/sse-secret-init/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/sse-secret-init/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/tests/test-api-http-health.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/tests/test-api-http-health.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/tests/test-e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/tests/test-e2e.yaml -------------------------------------------------------------------------------- /charts/flagsmith/templates/tests/test-frontend-http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/templates/tests/test-frontend-http.yaml -------------------------------------------------------------------------------- /charts/flagsmith/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/flagsmith/values.yaml -------------------------------------------------------------------------------- /charts/graphite/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/graphite/.helmignore -------------------------------------------------------------------------------- /charts/graphite/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/graphite/Chart.yaml -------------------------------------------------------------------------------- /charts/graphite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/graphite/README.md -------------------------------------------------------------------------------- /charts/graphite/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/graphite/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/graphite/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/graphite/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/graphite/templates/configmap-statsd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/graphite/templates/configmap-statsd.yaml -------------------------------------------------------------------------------- /charts/graphite/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/graphite/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/graphite/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/graphite/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/graphite/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/graphite/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/graphite/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/graphite/templates/role.yaml -------------------------------------------------------------------------------- /charts/graphite/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/graphite/templates/rolebinding.yaml -------------------------------------------------------------------------------- /charts/graphite/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/graphite/templates/service.yaml -------------------------------------------------------------------------------- /charts/graphite/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/graphite/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/graphite/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/graphite/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/graphite/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/charts/graphite/values.yaml -------------------------------------------------------------------------------- /ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/ct.yaml -------------------------------------------------------------------------------- /lintconf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/lintconf.yaml -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/release-please-config.json -------------------------------------------------------------------------------- /tools/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flagsmith/flagsmith-charts/HEAD/tools/lint.sh --------------------------------------------------------------------------------