-
Notifications
You must be signed in to change notification settings - Fork 826
Add config for k8s Services' ipFamilies
and ipFamilyPolicy
#3485
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -44,6 +44,8 @@ hub: | |||||
appProtocol: | ||||||
extraPorts: [] | ||||||
loadBalancerIP: | ||||||
ipFamilyPolicy: "" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice!! Do you think this is safe or a breaking change? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Based on the K8s docs it sounds safe since it only has an effect on dual-stack clusters, on single-stack clusters there's no change in behaviour. |
||||||
ipFamilies: [] | ||||||
baseUrl: / | ||||||
cookieSecret: | ||||||
initContainers: [] | ||||||
|
@@ -199,6 +201,8 @@ proxy: | |||||
externalIPs: [] | ||||||
loadBalancerIP: | ||||||
loadBalancerSourceRanges: [] | ||||||
ipFamilyPolicy: "" | ||||||
ipFamilies: [] | ||||||
# chp relates to the proxy pod, which is responsible for routing traffic based | ||||||
# on dynamic configuration sent from JupyterHub to CHP's REST API. | ||||||
chp: | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
refactor: I moved this so it was positioned as it was in the other k8s Service templates