helm database postgresql
- add Chart.lock to .gitignore - update helmfile.yaml with database - add values.yaml with postgresql - add Chart.yaml with postgresql
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -2,3 +2,4 @@
|
|||||||
cert/
|
cert/
|
||||||
http/*/http-client.env.json
|
http/*/http-client.env.json
|
||||||
helm/values/*/
|
helm/values/*/
|
||||||
|
helm/charts/02-database/Chart.lock
|
||||||
|
|||||||
11
helm/charts/02-database/Chart.yaml
Normal file
11
helm/charts/02-database/Chart.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
name: hlaeja-database
|
||||||
|
description: A Helm chart for the hlaeja database chart wrapper
|
||||||
|
version: 0.1.0
|
||||||
|
|
||||||
|
dependencies:
|
||||||
|
|
||||||
|
# https://artifacthub.io/packages/helm/bitnami/postgresql
|
||||||
|
- name: postgresql
|
||||||
|
version: 16.7.21
|
||||||
|
repository: "oci://registry-1.docker.io/bitnamicharts"
|
||||||
13
helm/charts/02-database/values.yaml
Normal file
13
helm/charts/02-database/values.yaml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
postgresql:
|
||||||
|
auth:
|
||||||
|
postgresPassword: mySecretPassword
|
||||||
|
primary:
|
||||||
|
persistence:
|
||||||
|
size: 10Gi
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
memory: 512Mi
|
||||||
|
cpu: 250m
|
||||||
|
# service:
|
||||||
|
# type: LoadBalancer
|
||||||
|
# loadBalancerIP: 10.0.3.31
|
||||||
@@ -4,3 +4,9 @@ releases:
|
|||||||
chart: ./charts/01-secrets
|
chart: ./charts/01-secrets
|
||||||
values: []
|
values: []
|
||||||
historyMax: 3
|
historyMax: 3
|
||||||
|
|
||||||
|
- name: database
|
||||||
|
namespace: hlaeja-testing
|
||||||
|
chart: ./charts/02-database
|
||||||
|
values: []
|
||||||
|
historyMax: 3
|
||||||
|
|||||||
Reference in New Issue
Block a user