forked from percona/percona-helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
74 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
apiVersion: v2 | ||
name: pg-operator | ||
description: 'A Helm chart to deploy the Percona Distribution for PostgreSQL Operator' | ||
description: 'A Helm chart to deploy the Percona Operator for PostgreSQL' | ||
type: application | ||
version: 1.3.0 | ||
version: 1.3.1 | ||
appVersion: 1.3.0 | ||
home: https://github.com/percona/percona-postgresql-operator | ||
home: https://docs.percona.com/percona-operator-for-postgresql/ | ||
maintainers: | ||
- name: cap1984 | ||
email: [email protected] | ||
- name: tplavcic | ||
email: [email protected] | ||
- name: spron-in | ||
email: [email protected] | ||
keywords: | ||
- PostgreSQL | ||
- Operator | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
1. postgres operator deployed. | ||
Check the postgres operator logs | ||
1. Percona Operator for PostgreSQL is deployed. | ||
See if the operator Pod is running: | ||
|
||
kubectl get pods -l name=postgres-operator --namespace {{ .Release.Namespace }} | ||
|
||
Check the operator logs if the Pod is not starting: | ||
|
||
export POD=$(kubectl get pods -l name=postgres-operator --namespace {{ .Release.Namespace }} --output name) | ||
kubectl logs $POD --namespace={{ .Release.Namespace }} -c operator | ||
|
||
2. Deploy the database cluster from pg-db chart: | ||
|
||
helm install my-db percona/pg-db --namespace={{ .Release.Namespace }} | ||
|
||
Read more in our documentation: https://docs.percona.com/percona-operator-for-postgresql/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
apiVersion: v2 | ||
appVersion: "0.3.0" | ||
description: A Helm chart for Deploying the Percona Kubernetes Operator for Percona Server | ||
description: A Helm chart for Deploying the Percona Operator for MySQL (based on Percona Server for MySQL) | ||
name: ps-operator | ||
home: https://www.percona.com/doc/kubernetes-operator-for-mysql/ps | ||
version: 0.3.0 | ||
home: https://docs.percona.com/percona-operator-for-mysql/ps/ | ||
version: 0.3.1 | ||
maintainers: | ||
- name: tplavcic | ||
email: [email protected] | ||
- name: cap1984 | ||
email: [email protected] | ||
- name: nmarukovich | ||
email: [email protected] | ||
- name: spron-in | ||
email: [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
1. ps-operator deployed. | ||
Check the ps-operator logs | ||
1. Percona Operator for MySQL is deployed. | ||
See if the operator Pod is running: | ||
|
||
kubectl get pods -l app.kubernetes.io/name=ps-operator --namespace {{ .Release.Namespace }} | ||
|
||
Check the operator logs if the Pod is not starting: | ||
|
||
export POD=$(kubectl get pods -l app.kubernetes.io/name=ps-operator --namespace {{ .Release.Namespace }} --output name) | ||
kubectl logs $POD --namespace={{ .Release.Namespace }} | ||
|
||
2. Deploy the database cluster from ps-db chart: | ||
|
||
helm install my-db percona/ps-db --namespace={{ .Release.Namespace }} | ||
|
||
Read more in our documentation: https://docs.percona.com/percona-operator-for-mysql/ps/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
apiVersion: v2 | ||
appVersion: "1.13.0" | ||
description: A Helm chart for Deploying the Percona Kubernetes Operator for Percona Server for MongoDB | ||
description: A Helm chart for deploying the Percona Operator for MongoDB | ||
name: psmdb-operator | ||
home: https://www.percona.com/doc/kubernetes-operator-for-psmongodb/kubernetes.html | ||
version: 1.13.1 | ||
home: https://docs.percona.com/percona-operator-for-mongodb/ | ||
version: 1.13.2 | ||
maintainers: | ||
- name: cap1984 | ||
email: [email protected] | ||
- name: tplavcic | ||
email: [email protected] | ||
- name: spron-in | ||
email: [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
1. psmdb-operator deployed. | ||
If you would like to deploy an psmdb-cluster set cluster.enabled to true in values.yaml | ||
Check the psmdb-operator logs | ||
1. Percona Operator for MongoDB is deployed. | ||
See if the operator Pod is running: | ||
|
||
kubectl get pods -l app.kubernetes.io/name=psmdb-operator --namespace {{ .Release.Namespace }} | ||
|
||
Check the operator logs if the Pod is not starting: | ||
|
||
export POD=$(kubectl get pods -l app.kubernetes.io/name=psmdb-operator --namespace {{ .Release.Namespace }} --output name) | ||
kubectl logs $POD --namespace={{ .Release.Namespace }} | ||
|
||
2. Deploy the database cluster from psmdb-db chart: | ||
|
||
helm install my-db percona/psmdb-db --namespace={{ .Release.Namespace }} | ||
|
||
Read more in our documentation: https://docs.percona.com/percona-operator-for-mongodb/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
apiVersion: v2 | ||
appVersion: 1.11.0 | ||
description: A Helm chart for Deploying the Percona XtraDB Cluster Operator Kubernetes | ||
description: A Helm chart for deploying the Percona Operator for MySQL (based on Percona XtraDB Cluster) | ||
name: pxc-operator | ||
home: https://www.percona.com/doc/kubernetes-operator-for-pxc/kubernetes.html | ||
version: 1.11.1 | ||
home: https://docs.percona.com/percona-operator-for-mysql/pxc/ | ||
version: 1.11.2 | ||
maintainers: | ||
- name: cap1984 | ||
email: [email protected] | ||
- name: tplavcic | ||
email: [email protected] | ||
- name: nmarukovich | ||
email: [email protected] | ||
- name: spron-in | ||
email: [email protected] | ||
icon: https://artifacthub.io/image/0b8875cd-6661-4269-9cf6-0fd92d59017b@1x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
1. pxc-operator deployed. | ||
If you would like to deploy an pxc-cluster set cluster.enabled to true in values.yaml | ||
Check the pxc-operator logs | ||
1. Percona Operator for MySQL is deployed. | ||
|
||
Check if operator Pod is running: | ||
|
||
kubectl get pods -l app.kubernetes.io/name={{ template "pxc-operator.name" . }} --namespace {{ .Release.Namespace }} | ||
|
||
Troubleshoot by checking the logs: | ||
|
||
export POD=$(kubectl get pods -l app.kubernetes.io/name={{ template "pxc-operator.name" . }} --namespace {{ .Release.Namespace }} --output name) | ||
kubectl logs $POD --namespace={{ .Release.Namespace }} | ||
kubectl logs $POD --namespace={{ .Release.Namespace }} | ||
|
||
2. Deploy the cluster with the following command: | ||
|
||
helm install my-db percona/pxc-db --namespace={{ .Release.Namespace }} | ||
|
||
Read more in our documentation: https://docs.percona.com/percona-operator-for-mysql/pxc/ |