-
Notifications
You must be signed in to change notification settings - Fork 1k
Add ipMode
field
#2557
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
base: v3-major-release
Are you sure you want to change the base?
Add ipMode
field
#2557
Changes from 3 commits
2816de1
5904915
2df5186
dd05728
77eae49
69e7e75
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 |
---|---|---|
|
@@ -138,6 +138,7 @@ Read-Only: | |
Read-Only: | ||
|
||
- `hostname` (String) | ||
- `ip_mode` (String) | ||
- `ip` (String) | ||
|
||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -212,6 +212,7 @@ Read-Only: | |
Read-Only: | ||
|
||
- `hostname` (String) | ||
- `ip_mode` (String) | ||
- `ip` (String) | ||
|
||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -132,6 +132,7 @@ Read-Only: | |
|
||
- `hostname` (String) | ||
- `ip` (String) | ||
- `ip_mode` (String) | ||
|
||
|
||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -132,6 +132,7 @@ Read-Only: | |
|
||
- `hostname` (String) | ||
- `ip` (String) | ||
- `ip_mode` (String) | ||
|
||
|
||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -129,6 +129,7 @@ func flattenLoadBalancerStatus(in v1.LoadBalancerStatus) []interface{} { | |
|
||
att["ip"] = ingress.IP | ||
att["hostname"] = ingress.Hostname | ||
att["ip_mode"] = ingress.IPMode | ||
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. we're missing the expander which is where we receive the resp that contains the ip_mode 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. After doing some digging, there isn't an expanded function in place. And I believe the reason for that is due to |
||
|
||
out[i] = att | ||
} | ||
|
Uh oh!
There was an error while loading. Please reload this page.