-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Custom DC] Fix various issues with re-runnign install_custom_dc.sh (#…
…2231) - Fix provider dependency issue: Fetch kubeconfig in install_custom_dc.sh first - In Cloud shell, IPv6 sometimes can't be resolved -> add to /etc/hosts manually - Terraform plan inconsistency issues during re-run -> fetch mixer_grpc_pb outside of terraform - Make mixer_grpc_pb versioned. --------- Co-authored-by: Alex Chen <[email protected]>
- Loading branch information
1 parent
1a0781c
commit 752f03e
Showing
6 changed files
with
62 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
deploy/terraform-datacommons-website/examples/website_v1/outputs.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
output "cluster_name" { | ||
value = module.cluster.name | ||
} | ||
|
||
output "cluster_region" { | ||
value = module.cluster.region | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,7 @@ | |
output "name" { | ||
value = local.cluster_name | ||
} | ||
|
||
output "region" { | ||
value = var.region | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters