-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Md. Alif Biswas <alif@appscode.com>
- Loading branch information
Md. Alif Biswas
authored
Sep 26, 2022
1 parent
2451958
commit f498f5a
Showing
5 changed files
with
51 additions
and
0 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 |
---|---|---|
|
@@ -106,6 +106,7 @@ | |
"5.7.35-v1" | ||
], | ||
"PerconaXtraDB": [ | ||
"8.0.28", | ||
"8.0.26" | ||
], | ||
"PgBouncer": [ | ||
|
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 |
---|---|---|
|
@@ -140,6 +140,7 @@ | |
"8.0.3-v4" | ||
], | ||
"perconaxtradb-backup-5.7": [ | ||
"8.0.28", | ||
"8.0.26" | ||
], | ||
"postgres-backup-10.14": [ | ||
|
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
apiVersion: catalog.kubedb.com/v1alpha1 | ||
kind: PerconaXtraDBVersion | ||
metadata: | ||
name: 8.0.28 | ||
spec: | ||
coordinator: | ||
image: kubedb/percona-xtradb-coordinator:v0.1.0 | ||
db: | ||
image: percona/percona-xtradb-cluster:8.0.28 | ||
exporter: | ||
image: prom/mysqld-exporter:v0.13.0 | ||
initContainer: | ||
image: kubedb/percona-xtradb-init:0.1.0 | ||
podSecurityPolicies: | ||
databasePolicyName: percona-xtradb-db | ||
stash: | ||
addon: | ||
backupTask: | ||
name: perconaxtradb-backup-5.7 | ||
restoreTask: | ||
name: perconaxtradb-restore-5.7 | ||
version: 8.0.28 |
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 |
---|---|---|
|
@@ -140,6 +140,7 @@ | |
"8.0.3-v4" | ||
], | ||
"perconaxtradb-restore-5.7": [ | ||
"8.0.28", | ||
"8.0.26" | ||
], | ||
"postgres-restore-10.14": [ | ||
|
26 changes: 26 additions & 0 deletions
26
charts/kubedb-catalog/templates/perconaxtradb/perconaxtradb-8.0.28.yaml
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{{ if .Values.catalog.perconaxtradb }} | ||
apiVersion: catalog.kubedb.com/v1alpha1 | ||
kind: PerconaXtraDBVersion | ||
metadata: | ||
name: '8.0.28' | ||
labels: | ||
{{- include "kubedb-catalog.labels" . | nindent 4 }} | ||
spec: | ||
coordinator: | ||
image: '{{ include "catalog.registry" (merge (dict "_reg" "" "_repo" "kubedb") .Values) }}/percona-xtradb-coordinator:v0.1.0' | ||
db: | ||
image: '{{ include "catalog.registry" (merge (dict "_reg" "" "_repo" "percona") .Values) }}/percona-xtradb-cluster:8.0.28' | ||
exporter: | ||
image: '{{ include "catalog.registry" (merge (dict "_reg" "" "_repo" "prom") .Values) }}/mysqld-exporter:v0.13.0' | ||
initContainer: | ||
image: '{{ include "catalog.registry" (merge (dict "_reg" "" "_repo" "kubedb") .Values) }}/percona-xtradb-init:0.1.0' | ||
podSecurityPolicies: | ||
databasePolicyName: percona-xtradb-db | ||
stash: | ||
addon: | ||
backupTask: | ||
name: perconaxtradb-backup-5.7 | ||
restoreTask: | ||
name: perconaxtradb-restore-5.7 | ||
version: 8.0.28 | ||
{{ end }} |