-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
steps/bootstrap: Merge into the infra step
Booting clusters is faster and teardown is more robust if we can perform everything in a single Terraform step. With this commit, we are down to that single step. It would be nice to drop the terraform_remote_state hack for the bootstrap Ignition. But we'll be doing that when we switch to cmd/openshift-install and its all-Go asset generation, so I'm rolling with the existing approach for now.
- Loading branch information
Showing
16 changed files
with
51 additions
and
127 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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,11 @@ | ||
data "terraform_remote_state" "assets" { | ||
backend = "local" | ||
|
||
config { | ||
path = "${path.cwd}/assets.tfstate" | ||
} | ||
} | ||
|
||
locals { | ||
ignition_bootstrap = "${data.terraform_remote_state.assets.ignition_bootstrap}" | ||
} |
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 was deleted.
Oops, something went wrong.
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,11 @@ | ||
data "terraform_remote_state" "assets" { | ||
backend = "local" | ||
|
||
config { | ||
path = "${path.cwd}/assets.tfstate" | ||
} | ||
} | ||
|
||
locals { | ||
ignition_bootstrap = "${data.terraform_remote_state.assets.ignition_bootstrap}" | ||
} |
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 was deleted.
Oops, something went wrong.