├── Dockerfile ├── README.md ├── default.xml ├── delete-all.bash ├── docker-build.bash ├── mysql └── values.yaml ├── nginx-ingress-controller-patch.yaml ├── nginx-patch.bash ├── proxysql-admin.bash ├── proxysql-cluster-controller ├── Chart.yaml ├── files │ ├── hg-scheduler.bash │ ├── probe-proxysql.bash │ └── proxysql.cnf ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── ingress.yaml │ ├── service.yaml │ ├── statefulset.yaml │ ├── storage-class.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml ├── proxysql-cluster-passive ├── Chart.yaml ├── files │ ├── probe-proxysql.bash │ └── proxysql.cnf ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── service.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml ├── proxysql-cluster ├── .helmignore ├── Chart.yaml ├── files │ ├── probe-proxysql.bash │ └── proxysql.cnf ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── service.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml ├── proxysql-sidecar-cascade ├── Chart.yaml ├── files │ ├── probe-proxysql.bash │ └── proxysql.cnf ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── service.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml ├── proxysql-sidecar ├── Chart.yaml ├── files │ ├── probe-proxysql.bash │ └── proxysql.cnf ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── service.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml └── sysbench-test.bash /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/README.md -------------------------------------------------------------------------------- /default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/default.xml -------------------------------------------------------------------------------- /delete-all.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/delete-all.bash -------------------------------------------------------------------------------- /docker-build.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/docker-build.bash -------------------------------------------------------------------------------- /mysql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/mysql/values.yaml -------------------------------------------------------------------------------- /nginx-ingress-controller-patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/nginx-ingress-controller-patch.yaml -------------------------------------------------------------------------------- /nginx-patch.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/nginx-patch.bash -------------------------------------------------------------------------------- /proxysql-admin.bash: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | mysql -h$(minikube ip) -P26033 -uroot -pXHCO2ydDXj 3 | 4 | 5 | -------------------------------------------------------------------------------- /proxysql-cluster-controller/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-controller/Chart.yaml -------------------------------------------------------------------------------- /proxysql-cluster-controller/files/hg-scheduler.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-controller/files/hg-scheduler.bash -------------------------------------------------------------------------------- /proxysql-cluster-controller/files/probe-proxysql.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-controller/files/probe-proxysql.bash -------------------------------------------------------------------------------- /proxysql-cluster-controller/files/proxysql.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-controller/files/proxysql.cnf -------------------------------------------------------------------------------- /proxysql-cluster-controller/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-controller/templates/NOTES.txt -------------------------------------------------------------------------------- /proxysql-cluster-controller/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-controller/templates/_helpers.tpl -------------------------------------------------------------------------------- /proxysql-cluster-controller/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-controller/templates/configmap.yaml -------------------------------------------------------------------------------- /proxysql-cluster-controller/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-controller/templates/ingress.yaml -------------------------------------------------------------------------------- /proxysql-cluster-controller/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-controller/templates/service.yaml -------------------------------------------------------------------------------- /proxysql-cluster-controller/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-controller/templates/statefulset.yaml -------------------------------------------------------------------------------- /proxysql-cluster-controller/templates/storage-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-controller/templates/storage-class.yaml -------------------------------------------------------------------------------- /proxysql-cluster-controller/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-controller/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /proxysql-cluster-controller/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-controller/values.yaml -------------------------------------------------------------------------------- /proxysql-cluster-passive/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-passive/Chart.yaml -------------------------------------------------------------------------------- /proxysql-cluster-passive/files/probe-proxysql.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-passive/files/probe-proxysql.bash -------------------------------------------------------------------------------- /proxysql-cluster-passive/files/proxysql.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-passive/files/proxysql.cnf -------------------------------------------------------------------------------- /proxysql-cluster-passive/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-passive/templates/NOTES.txt -------------------------------------------------------------------------------- /proxysql-cluster-passive/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-passive/templates/_helpers.tpl -------------------------------------------------------------------------------- /proxysql-cluster-passive/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-passive/templates/configmap.yaml -------------------------------------------------------------------------------- /proxysql-cluster-passive/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-passive/templates/deployment.yaml -------------------------------------------------------------------------------- /proxysql-cluster-passive/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-passive/templates/ingress.yaml -------------------------------------------------------------------------------- /proxysql-cluster-passive/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-passive/templates/service.yaml -------------------------------------------------------------------------------- /proxysql-cluster-passive/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-passive/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /proxysql-cluster-passive/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster-passive/values.yaml -------------------------------------------------------------------------------- /proxysql-cluster/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster/.helmignore -------------------------------------------------------------------------------- /proxysql-cluster/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster/Chart.yaml -------------------------------------------------------------------------------- /proxysql-cluster/files/probe-proxysql.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster/files/probe-proxysql.bash -------------------------------------------------------------------------------- /proxysql-cluster/files/proxysql.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster/files/proxysql.cnf -------------------------------------------------------------------------------- /proxysql-cluster/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster/templates/NOTES.txt -------------------------------------------------------------------------------- /proxysql-cluster/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster/templates/_helpers.tpl -------------------------------------------------------------------------------- /proxysql-cluster/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster/templates/configmap.yaml -------------------------------------------------------------------------------- /proxysql-cluster/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster/templates/deployment.yaml -------------------------------------------------------------------------------- /proxysql-cluster/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster/templates/ingress.yaml -------------------------------------------------------------------------------- /proxysql-cluster/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster/templates/service.yaml -------------------------------------------------------------------------------- /proxysql-cluster/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /proxysql-cluster/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-cluster/values.yaml -------------------------------------------------------------------------------- /proxysql-sidecar-cascade/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar-cascade/Chart.yaml -------------------------------------------------------------------------------- /proxysql-sidecar-cascade/files/probe-proxysql.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar-cascade/files/probe-proxysql.bash -------------------------------------------------------------------------------- /proxysql-sidecar-cascade/files/proxysql.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar-cascade/files/proxysql.cnf -------------------------------------------------------------------------------- /proxysql-sidecar-cascade/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar-cascade/templates/NOTES.txt -------------------------------------------------------------------------------- /proxysql-sidecar-cascade/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar-cascade/templates/_helpers.tpl -------------------------------------------------------------------------------- /proxysql-sidecar-cascade/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar-cascade/templates/configmap.yaml -------------------------------------------------------------------------------- /proxysql-sidecar-cascade/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar-cascade/templates/deployment.yaml -------------------------------------------------------------------------------- /proxysql-sidecar-cascade/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar-cascade/templates/ingress.yaml -------------------------------------------------------------------------------- /proxysql-sidecar-cascade/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar-cascade/templates/service.yaml -------------------------------------------------------------------------------- /proxysql-sidecar-cascade/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar-cascade/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /proxysql-sidecar-cascade/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar-cascade/values.yaml -------------------------------------------------------------------------------- /proxysql-sidecar/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar/Chart.yaml -------------------------------------------------------------------------------- /proxysql-sidecar/files/probe-proxysql.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar/files/probe-proxysql.bash -------------------------------------------------------------------------------- /proxysql-sidecar/files/proxysql.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar/files/proxysql.cnf -------------------------------------------------------------------------------- /proxysql-sidecar/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar/templates/NOTES.txt -------------------------------------------------------------------------------- /proxysql-sidecar/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar/templates/_helpers.tpl -------------------------------------------------------------------------------- /proxysql-sidecar/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar/templates/configmap.yaml -------------------------------------------------------------------------------- /proxysql-sidecar/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar/templates/deployment.yaml -------------------------------------------------------------------------------- /proxysql-sidecar/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar/templates/ingress.yaml -------------------------------------------------------------------------------- /proxysql-sidecar/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar/templates/service.yaml -------------------------------------------------------------------------------- /proxysql-sidecar/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /proxysql-sidecar/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/proxysql-sidecar/values.yaml -------------------------------------------------------------------------------- /sysbench-test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxySQL/kubernetes/HEAD/sysbench-test.bash --------------------------------------------------------------------------------