diff --git a/stable/airflow/Chart.yaml b/stable/airflow/Chart.yaml index 895cfedf58..af2f204bfa 100644 --- a/stable/airflow/Chart.yaml +++ b/stable/airflow/Chart.yaml @@ -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/ diff --git a/stable/airflow/README.md b/stable/airflow/README.md index 37a8cb3460..047d471196 100644 --- a/stable/airflow/README.md +++ b/stable/airflow/README.md @@ -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` | diff --git a/stable/airflow/templates/configmap-airflow.yaml b/stable/airflow/templates/configmap-airflow.yaml index f753f7c757..3c8e7fd3f5 100644 --- a/stable/airflow/templates/configmap-airflow.yaml +++ b/stable/airflow/templates/configmap-airflow.yaml @@ -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 }}" diff --git a/stable/airflow/templates/secrets.yaml b/stable/airflow/templates/secrets.yaml index 0e20700aac..17e23cdded 100644 --- a/stable/airflow/templates/secrets.yaml +++ b/stable/airflow/templates/secrets.yaml @@ -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 }} diff --git a/stable/airflow/values.yaml b/stable/airflow/values.yaml index 64a20676d4..a7ebb88406 100644 --- a/stable/airflow/values.yaml +++ b/stable/airflow/values.yaml @@ -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