-
Notifications
You must be signed in to change notification settings - Fork 1.5k
installer workflow: switch tls generation from terraform to go #43
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
Changes from all commits
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 |
|---|---|---|
|
|
@@ -14,8 +14,7 @@ var ( | |
| clusterInitConfigFlag = clusterInitCommand.Flag("config", "Cluster specification file").Required().ExistingFile() | ||
|
|
||
| clusterInstallCommand = kingpin.Command("install", "Create a new Tectonic cluster") | ||
| clusterInstallTLSCommand = clusterInstallCommand.Command("tls", "Generate TLS Certificates.") | ||
| clusterInstallTLSNewCommand = clusterInstallCommand.Command("newtls", "Generate TLS Certificates, using a new engine (experimental)") | ||
| clusterInstallTLSNewCommand = clusterInstallCommand.Command("tls", "Generate TLS Certificates.") | ||
| clusterInstallAssetsCommand = clusterInstallCommand.Command("assets", "Generate Tectonic assets.") | ||
| clusterInstallBootstrapCommand = clusterInstallCommand.Command("bootstrap", "Create a single bootstrap node Tectonic cluster.") | ||
| clusterInstallFullCommand = clusterInstallCommand.Command("full", "Create a new Tectonic cluster").Default() | ||
|
|
@@ -39,8 +38,6 @@ func main() { | |
| w = workflow.InitWorkflow(*clusterInitConfigFlag) | ||
| case clusterInstallFullCommand.FullCommand(): | ||
| w = workflow.InstallFullWorkflow(*clusterInstallDirFlag) | ||
| case clusterInstallTLSCommand.FullCommand(): | ||
| w = workflow.InstallTLSWorkflow(*clusterInstallDirFlag) | ||
| case clusterInstallTLSNewCommand.FullCommand(): | ||
| w = workflow.InstallTLSNewWorkflow(*clusterInstallDirFlag) | ||
|
||
| case clusterInstallAssetsCommand.FullCommand(): | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,9 +22,8 @@ const ( | |
| internalFileName = "internal.yaml" | ||
| joinWorkersStep = "joining_workers" | ||
| mastersStep = "masters" | ||
| newTLSStep = "newtls" | ||
| newTLSStep = "tls" | ||
|
||
| stepsBaseDir = "steps" | ||
| tlsStep = "tls" | ||
| tncDNSStep = "tnc_dns" | ||
| topologyStep = "topology" | ||
| ) | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should be jus call clusterInstallTLSCommand after the swtich