Remove deprecated ingress_static_ip and controllers_ipv4_public outputs
This commit is contained in:
parent
93de7506ef
commit
fd1de27aef
|
@ -11,6 +11,11 @@ Notable changes between versions.
|
||||||
|
|
||||||
* Update from Fedora Atomic 27 to 28 ([#258](https://github.com/poseidon/typhoon/pull/258))
|
* Update from Fedora Atomic 27 to 28 ([#258](https://github.com/poseidon/typhoon/pull/258))
|
||||||
|
|
||||||
|
#### Google
|
||||||
|
|
||||||
|
* Remove `ingress_static_ip` module output. Use `ingress_static_ipv4`.
|
||||||
|
* Remove `controllers_ipv4_public` module output.
|
||||||
|
|
||||||
## v1.10.5
|
## v1.10.5
|
||||||
|
|
||||||
* Kubernetes [v1.10.5](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.10.md#v1105)
|
* Kubernetes [v1.10.5](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.10.md#v1105)
|
||||||
|
|
|
@ -1,8 +1,3 @@
|
||||||
# Deprecated
|
|
||||||
output "controllers_ipv4_public" {
|
|
||||||
value = ["${google_compute_instance.controllers.*.network_interface.0.access_config.0.assigned_nat_ip}"]
|
|
||||||
}
|
|
||||||
|
|
||||||
# Outputs for Kubernetes Ingress
|
# Outputs for Kubernetes Ingress
|
||||||
|
|
||||||
output "ingress_static_ipv4" {
|
output "ingress_static_ipv4" {
|
||||||
|
@ -10,12 +5,6 @@ output "ingress_static_ipv4" {
|
||||||
value = "${google_compute_global_address.ingress-ipv4.address}"
|
value = "${google_compute_global_address.ingress-ipv4.address}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Deprecated, use ingress_static_ipv4
|
|
||||||
output "ingress_static_ip" {
|
|
||||||
description = "Global IPv4 address for proxy load balancing to the nearest Ingress controller"
|
|
||||||
value = "${google_compute_global_address.ingress-ipv4.address}"
|
|
||||||
}
|
|
||||||
|
|
||||||
# Outputs for worker pools
|
# Outputs for worker pools
|
||||||
|
|
||||||
output "network_name" {
|
output "network_name" {
|
||||||
|
|
|
@ -5,12 +5,6 @@ output "ingress_static_ipv4" {
|
||||||
value = "${google_compute_global_address.ingress-ipv4.address}"
|
value = "${google_compute_global_address.ingress-ipv4.address}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Deprecated, use ingress_static_ipv4
|
|
||||||
output "ingress_static_ip" {
|
|
||||||
description = "Global IPv4 address for proxy load balancing to the nearest Ingress controller"
|
|
||||||
value = "${google_compute_global_address.ingress-ipv4.address}"
|
|
||||||
}
|
|
||||||
|
|
||||||
# Outputs for worker pools
|
# Outputs for worker pools
|
||||||
|
|
||||||
output "network_name" {
|
output "network_name" {
|
||||||
|
|
Loading…
Reference in New Issue