okozachenko1203 | b7c2d32 | 2023-07-05 11:09:15 +0000 | [diff] [blame] | 1 | 1. Percona Operator for MySQL is deployed. |
| 2 | |
| 3 | Check if operator Pod is running: |
| 4 | |
| 5 | kubectl get pods -l app.kubernetes.io/name={{ template "pxc-operator.name" . }} --namespace {{ .Release.Namespace }} |
| 6 | |
| 7 | Troubleshoot by checking the logs: |
| 8 | |
Mohammed Naser | e04accd | 2023-01-15 20:07:27 -0500 | [diff] [blame] | 9 | export POD=$(kubectl get pods -l app.kubernetes.io/name={{ template "pxc-operator.name" . }} --namespace {{ .Release.Namespace }} --output name) |
okozachenko1203 | b7c2d32 | 2023-07-05 11:09:15 +0000 | [diff] [blame] | 10 | kubectl logs $POD --namespace={{ .Release.Namespace }} |
| 11 | |
| 12 | 2. Deploy the cluster with the following command: |
| 13 | |
| 14 | helm install my-db percona/pxc-db --namespace={{ .Release.Namespace }} |
| 15 | |
| 16 | Read more in our documentation: https://docs.percona.com/percona-operator-for-mysql/pxc/ |