Skip to content

Commit 72a1a34

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 0c92e65 commit 72a1a34

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

deploy.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,10 @@ def main():
437437
argparser.add_argument(
438438
"release",
439439
help="Release to deploy",
440-
choices=list(KUBECONFIG_CLUSTERS) + list(GCP_PROJECTS.keys()) + list(AWS_DEPLOYMENTS.keys()) + list(AZURE_RGs.keys())
440+
choices=list(KUBECONFIG_CLUSTERS)
441+
+ list(GCP_PROJECTS.keys())
442+
+ list(AWS_DEPLOYMENTS.keys())
443+
+ list(AZURE_RGs.keys()),
441444
)
442445
argparser.add_argument(
443446
"--name",

docs/source/deployment/k3s.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ We also need a secrets file, so let's copy `secrets/config/hetzner-2i2c.yaml` to
117117
Let's tell `deploy.py` script that we have a new cluster by adding `<cluster-name>` to `KUBECONFIG_CLUSTERS` variable in `deploy.py`.
118118

119119
Once done, you can do a deployment with `./deploy.py <cluster-name>`! If it errors out, tweak and debug until it works.
120+
120121
## Test and validate
121122

122123
## Add to the redirector

0 commit comments

Comments
 (0)