Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch for IPv6 native clusters (airflow binds to ipv4 only by default) #845

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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 @@ -111,7 +111,11 @@ spec:
args:
- "bash"
- "-c"
{{- if .Values.web.ipv6.enabled }}
- "exec airflow webserver --hostname [::]"
{{- else }}
- "exec airflow webserver"
{{- end }}
{{- if .Values.web.livenessProbe.enabled }}
livenessProbe:
initialDelaySeconds: {{ .Values.web.livenessProbe.initialDelaySeconds }}
Expand Down
5 changes: 5 additions & 0 deletions charts/airflow/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -795,6 +795,11 @@ web:
nodePort:
http: ""

## configs to determine if this runs on an ipv6 native cluster
##
ipv6:
enabled: false

## configs for the web Pods' readiness probe
##
readinessProbe:
Expand Down
Loading