Skip to content

Commit

Permalink
METAL-2613 chart v0.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunysmile committed Apr 22, 2021
1 parent 8f04196 commit 29ea46d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
DB Operator is Kubernetes operator

## Prerequisites
* Kubernetes 1.13+
* Helm 2.11+
* Kubernetes v1.14+
* Helm v3.0.2+

## Configuring helm client
```
Expand Down Expand Up @@ -47,6 +47,7 @@ The following table lists the configurable parameters of the db-operator chart a
| `config.instance.google.proxy.image` | Container image of google cloud proxy | `gcr.io/cloudsql-docker/gce-proxy:1.11` |
| `config.instance.google.proxy.nodeSelector` | Node labels for google cloud proxy pod assignment | `{}` |
| `config.backup.nodeSelector` | Node labels for backup pod assignment | `{}` |
| `config.backup.activeDeadlineSeconds` | activeDeadlineSeconds of backup cronjob | `600` |
| `config.backup.postgres.image` | Container image of backup cronjob (only for postgres databases) | `kloeckneri/pgdump-gcs:latest` |
| `config.monitoring.nodeSelector` | Node labels for monitoring pod assignment | `{}` |
| `config.monitoring.postgres.image` | Container image of prometheus exporter (only for postgres databases) | `wrouesnel/postgres_exporter:latest` |
Expand Down
Binary file added helm/db-operator-0.4.0.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion helm/db-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: A Database Operator
name: db-operator
version: 0.3.0
version: 0.4.0
1 change: 1 addition & 0 deletions helm/db-operator/templates/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ data:
proxy:
image: {{ .Values.config.instance.percona.proxy.image }}
backup:
activeDeadlineSeconds: {{ .Values.config.backup.activeDeadlineSeconds }}
nodeSelector:
{{ toYaml .Values.config.backup.nodeSelector | indent 8 }}
postgres:
Expand Down
1 change: 1 addition & 0 deletions helm/db-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ config:
proxy:
image: severalnines/proxysql:2.0
backup:
activeDeadlineSeconds: 600 # 10m
nodeSelector: {}
postgres:
image: "kloeckneri/pgdump-gcs:latest"
Expand Down

0 comments on commit 29ea46d

Please sign in to comment.