mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/airflow] revert postgres sub-chart values to match stable/pos… (#10333)
* [stable/airflow] revert postgres sub-chart values to match stable/postgresql 0.13.1 I made a mistake in PR https://github.com/helm/charts/pull/9964/ to wrongly reference the latest version of stable/postgresql. This commit will fix the compatibility of this chart with stable/postgresql 0.13.1. Signed-off-by: Xinghong Fang <xinghong.fang@man.com> * [stable/airflow] bumping chart version to 0.11.0 Signed-off-by: Xinghong Fang <xinghong.fang@man.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
ea40ddc986
commit
564077df64
@@ -1,6 +1,6 @@
|
||||
description: Airflow is a platform to programmatically author, schedule and monitor workflows
|
||||
name: airflow
|
||||
version: 0.10.0
|
||||
version: 0.11.0
|
||||
appVersion: 1.10.0
|
||||
icon: https://airflow.apache.org/_images/pin_large.png
|
||||
home: https://airflow.apache.org/
|
||||
|
||||
@@ -252,9 +252,9 @@ The following table lists the configurable parameters of the Airflow chart and t
|
||||
| `postgresql.enabled` | create a postgres server | `true` |
|
||||
| `postgresql.uri` | full URL to custom postgres setup | (undefined) |
|
||||
| `postgresql.portgresHost` | PostgreSQL Hostname | (undefined) |
|
||||
| `postgresql.postgresqlUsername` | PostgreSQL User | `postgres` |
|
||||
| `postgresql.postgresqlPassword` | PostgreSQL Password | `airflow` |
|
||||
| `postgresql.postgresqlDatabase` | PostgreSQL Database name | `airflow` |
|
||||
| `postgresql.postgresUser` | PostgreSQL User | `postgres` |
|
||||
| `postgresql.postgresPassword` | PostgreSQL Password | `airflow` |
|
||||
| `postgresql.postgresDatabase` | PostgreSQL Database name | `airflow` |
|
||||
| `postgresql.persistence.enabled` | Enable Postgres PVC | `true` |
|
||||
| `postgresql.persistance.storageClass | Persistant class | (undefined) |
|
||||
| `postgresql.persistance.accessMode` | Access mode | `ReadWriteOnce` |
|
||||
|
||||
@@ -13,7 +13,7 @@ data:
|
||||
## Postgres DB configuration
|
||||
POSTGRES_HOST: "{{ template "airflow.postgresql.fullname" . }}"
|
||||
POSTGRES_PORT: "{{ .Values.postgresql.service.port }}"
|
||||
POSTGRES_DB: "{{ .Values.postgresql.postgresqlDatabase }}"
|
||||
POSTGRES_DB: "{{ .Values.postgresql.postgresDatabase }}"
|
||||
## Redis DB configuration
|
||||
REDIS_HOST: "{{ template "airflow.redis.fullname" . }}"
|
||||
REDIS_PORT: "{{ .Values.redis.master.port }}"
|
||||
|
||||
@@ -9,6 +9,6 @@ metadata:
|
||||
heritage: "{{ .Release.Service }}"
|
||||
type: Opaque
|
||||
data:
|
||||
postgresUser: {{ .Values.postgresql.postgresqlUsername | b64enc | quote }}
|
||||
postgresPassword: {{ .Values.postgresql.postgresqlPassword | b64enc | quote }}
|
||||
postgresUser: {{ .Values.postgresql.postgresUser | b64enc | quote }}
|
||||
postgresPassword: {{ .Values.postgresql.postgresPassword | b64enc | quote }}
|
||||
redisPassword: {{ .Values.redis.password | b64enc | quote }}
|
||||
|
||||
@@ -315,14 +315,14 @@ postgresql:
|
||||
service:
|
||||
port: 5432
|
||||
## PostgreSQL User to create.
|
||||
postgresqlUsername: postgres
|
||||
postgresUser: postgres
|
||||
##
|
||||
## PostgreSQL Password for the new user.
|
||||
## If not set, a random 10 characters password will be used.
|
||||
postgresqlPassword: airflow
|
||||
postgresPassword: airflow
|
||||
##
|
||||
## PostgreSQL Database to create.
|
||||
postgresqlDatabase: airflow
|
||||
postgresDatabase: airflow
|
||||
##
|
||||
## Persistent Volume Storage configuration.
|
||||
## ref: https://kubernetes.io/docs/user-guide/persistent-volumes
|
||||
|
||||
Reference in New Issue
Block a user