Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: install bitnami/postgresql chart dependency #7

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@ dependencies:
- name: kafka
repository: https://charts.bitnami.com/bitnami
version: 26.4.0
digest: sha256:3abfbc36f193cb62d0e1c0b1b866bd665e215e8b9ad5368ff855d4eedee30b3f
generated: "2023-11-10T08:43:13.934774-05:00"
- name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 13.1.5
digest: sha256:aa466d4452e3cecb5113897a93a2aef07175cc7e88fe1f781fe9b4c91be6b935
generated: "2023-11-14T15:00:22.521685-05:00"
4 changes: 4 additions & 0 deletions Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@ dependencies:
- name: kafka
version: 26.4.x
repository: https://charts.bitnami.com/bitnami
- name: postgresql
version: 13.1.5
repository: https://charts.bitnami.com/bitnami
condition: psql.enabled
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ This makes use of [Bitnami's Kafka Helm Chart](https://github.com/bitnami/charts
# Chart.yaml
dependencies:
- name: kafka
version: "26.4.x"
version: 26.4.x
repository: "https://charts.bitnami.com/bitnami"
- name: postgresql
version: 13.1.5
repository: "https://charts.bitnami.com/bitnami"
```

Expand All @@ -25,6 +28,22 @@ helm dependency update

```yaml
# values.yaml
psql:
version: "13.1.5"
repository: https://charts.bitnami.com/bitnami
enabled: true
image: postgres
tag: 14-alpine

postgresql:
auth:
username:
password:
database:
primary:
persistence:
size: 1Gi

kafka:
listeners:
client:
Expand Down
Binary file added charts/postgresql-13.1.5.tgz
Binary file not shown.
16 changes: 16 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,22 @@ tolerations: []

affinity: {}

psql:
version: "13.1.5"
repository: https://charts.bitnami.com/bitnami
enabled: true
image: postgres
tag: 14-alpine

postgresql:
auth:
username: consumer_user
password: consumer@pswd
database: consumer
primary:
persistence:
size: 1Gi

kafka:
listeners:
client:
Expand Down