Skip to content

Commit

Permalink
Chart: add doc note about podtemplate images (#29032)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aakcht authored Jan 21, 2023
1 parent 5da085b commit 886d87d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chart/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -505,15 +505,15 @@
"type": "object",
"properties": {
"repository": {
"description": "The pod_template image repository.",
"description": "The pod_template image repository. If ``config.kubernetes.worker_container_repository`` is set, k8s executor will use config value instead.",
"type": [
"string",
"null"
],
"default": null
},
"tag": {
"description": "The pod_template image tag.",
"description": "The pod_template image tag. If ``config.kubernetes.worker_container_tag`` is set, k8s executor will use config value instead.",
"type": [
"string",
"null"
Expand Down
4 changes: 4 additions & 0 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ images:
# timeout (in seconds) for airflow-migrations to complete
migrationsWaitTimeout: 60
pod_template:
# Note that `images.pod_template.repository` and `images.pod_template.tag` parameters
# can be overridden in `config.kubernetes` section. So for these parameters to have effect
# `config.kubernetes.worker_container_repository` and `config.kubernetes.worker_container_tag`
# must be not set .
repository: ~
tag: ~
pullPolicy: IfNotPresent
Expand Down

0 comments on commit 886d87d

Please sign in to comment.