├── .editorconfig ├── .github └── workflows │ └── build.yml ├── .gitignore ├── README.md ├── deploy └── charts │ └── proxysql-cluster │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── pdb.yaml │ ├── statefulset.yaml │ ├── svc.yaml │ └── sync-default-hostgroup-cronjob.yaml │ └── values.yaml ├── docker ├── files │ ├── cli │ │ ├── commands │ │ │ └── cluster.sh │ │ ├── functions │ │ │ ├── commands.sh │ │ │ └── proxysql.sh │ │ └── proxysql-cli.sh │ ├── entrypoint.sh │ └── proxysql-k8s-cluster.cnf └── k8s-proxysql-cluster.Dockerfile ├── k8s ├── proxysql-sync-default-hostgroup.cronjob.yaml ├── proxysql.service.yaml └── proxysql.statefulset.yaml └── samples └── init_proxysql.sql /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.idea 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/README.md -------------------------------------------------------------------------------- /deploy/charts/proxysql-cluster/.helmignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /deploy/charts/proxysql-cluster/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/deploy/charts/proxysql-cluster/Chart.yaml -------------------------------------------------------------------------------- /deploy/charts/proxysql-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/deploy/charts/proxysql-cluster/README.md -------------------------------------------------------------------------------- /deploy/charts/proxysql-cluster/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/deploy/charts/proxysql-cluster/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/charts/proxysql-cluster/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/deploy/charts/proxysql-cluster/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/charts/proxysql-cluster/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/deploy/charts/proxysql-cluster/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/charts/proxysql-cluster/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/deploy/charts/proxysql-cluster/templates/pdb.yaml -------------------------------------------------------------------------------- /deploy/charts/proxysql-cluster/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/deploy/charts/proxysql-cluster/templates/statefulset.yaml -------------------------------------------------------------------------------- /deploy/charts/proxysql-cluster/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/deploy/charts/proxysql-cluster/templates/svc.yaml -------------------------------------------------------------------------------- /deploy/charts/proxysql-cluster/templates/sync-default-hostgroup-cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/deploy/charts/proxysql-cluster/templates/sync-default-hostgroup-cronjob.yaml -------------------------------------------------------------------------------- /deploy/charts/proxysql-cluster/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/deploy/charts/proxysql-cluster/values.yaml -------------------------------------------------------------------------------- /docker/files/cli/commands/cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/docker/files/cli/commands/cluster.sh -------------------------------------------------------------------------------- /docker/files/cli/functions/commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/docker/files/cli/functions/commands.sh -------------------------------------------------------------------------------- /docker/files/cli/functions/proxysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/docker/files/cli/functions/proxysql.sh -------------------------------------------------------------------------------- /docker/files/cli/proxysql-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/docker/files/cli/proxysql-cli.sh -------------------------------------------------------------------------------- /docker/files/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/docker/files/entrypoint.sh -------------------------------------------------------------------------------- /docker/files/proxysql-k8s-cluster.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/docker/files/proxysql-k8s-cluster.cnf -------------------------------------------------------------------------------- /docker/k8s-proxysql-cluster.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/docker/k8s-proxysql-cluster.Dockerfile -------------------------------------------------------------------------------- /k8s/proxysql-sync-default-hostgroup.cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/k8s/proxysql-sync-default-hostgroup.cronjob.yaml -------------------------------------------------------------------------------- /k8s/proxysql.service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/k8s/proxysql.service.yaml -------------------------------------------------------------------------------- /k8s/proxysql.statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/k8s/proxysql.statefulset.yaml -------------------------------------------------------------------------------- /samples/init_proxysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScientaNL/k8s-proxysql-cluster/HEAD/samples/init_proxysql.sql --------------------------------------------------------------------------------