Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ class KubernetesPodOperator(BaseOperator):
:param affinity: affinity scheduling rules for the launched pod.
:param config_file: The path to the Kubernetes config file. (templated)
If not specified, default value is ``~/.kube/config``
:param node_selector: A dict containing a group of scheduling rules.
:param node_selector: A dict containing a group of scheduling rules. (templated)
:param image_pull_secrets: Any image pull secrets to be given to the pod.
If more than one secret is required, provide a
comma separated list: secret_a,secret_b
Expand Down Expand Up @@ -258,6 +258,7 @@ class KubernetesPodOperator(BaseOperator):
"volume_mounts",
"cluster_context",
"env_from",
"node_selector",
)
template_fields_renderers = {"env_vars": "py"}

Expand Down