Skip to content

Commit b7ffd9d

Browse files
authored
fix(GKE): add comment on how to use an external IPV6 (#656)
1 parent 093a0be commit b7ffd9d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gke/quickstart/autopilot/app.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ resource "kubernetes_service_v1" "default" {
109109
metadata {
110110
name = "example-hello-app-loadbalancer"
111111
annotations = {
112-
"networking.gke.io/load-balancer-type" = "Internal" # Remove to create an external loadbalance
112+
"networking.gke.io/load-balancer-type" = "Internal" # Remove to create an external loadbalancer
113113
}
114114
}
115115

gke/quickstart/autopilot/cluster.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ resource "google_compute_subnetwork" "default" {
2929
region = "us-central1"
3030

3131
stack_type = "IPV4_IPV6"
32-
ipv6_access_type = "INTERNAL"
32+
ipv6_access_type = "INTERNAL" # Change to "EXTERNAL" if creating an external loadbalancer
3333

3434
network = google_compute_network.default.id
3535
secondary_ip_range {

0 commit comments

Comments
 (0)