From 7a76117b6bc37169bed13d7627a67ccbfe6fc5e3 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Fri, 25 Oct 2024 22:08:53 +0200 Subject: [PATCH] feat(website): add clustertool commands section from autogeneration --- .../clustertool/commands/adv/bootstrap.md | 28 +++++++++++ .../docs/clustertool/commands/adv/health.md | 28 +++++++++++ .../docs/clustertool/commands/adv/index.md | 28 +++++++++++ .../clustertool/commands/adv/precommit.md | 28 +++++++++++ .../docs/clustertool/commands/adv/reset.md | 28 +++++++++++ .../docs/clustertool/commands/adv/test.md | 26 ++++++++++ .../docs/clustertool/commands/apply.md | 28 +++++++++++ .../docs/clustertool/commands/charts/bump.md | 28 +++++++++++ .../docs/clustertool/commands/charts/deps.md | 28 +++++++++++ .../commands/charts/genchangelog.md | 28 +++++++++++ .../commands/charts/genchartlist.md | 28 +++++++++++ .../clustertool/commands/charts/genmeta.md | 28 +++++++++++ .../docs/clustertool/commands/charts/index.md | 33 +++++++++++++ .../clustertool/commands/charts/tagcleaner.md | 28 +++++++++++ .../docs/clustertool/commands/checkcrypt.md | 28 +++++++++++ .../clustertool/commands/completion/bash.md | 47 ++++++++++++++++++ .../clustertool/commands/completion/fish.md | 38 ++++++++++++++ .../clustertool/commands/completion/index.md | 24 +++++++++ .../commands/completion/powershell.md | 35 +++++++++++++ .../clustertool/commands/completion/zsh.md | 49 +++++++++++++++++++ .../docs/clustertool/commands/decrypt.md | 28 +++++++++++ .../docs/clustertool/commands/encrypt.md | 28 +++++++++++ .../clustertool/commands/fluxbootstrap.md | 28 +++++++++++ .../docs/clustertool/commands/genconfig.md | 36 ++++++++++++++ .../clustertool/commands/helmrelease/index.md | 28 +++++++++++ .../commands/helmrelease/install.md | 28 +++++++++++ .../commands/helmrelease/upgrade.md | 28 +++++++++++ .../docs/clustertool/commands/index.md | 25 ++++++++++ .../content/docs/clustertool/commands/info.md | 40 +++++++++++++++ .../content/docs/clustertool/commands/init.md | 37 ++++++++++++++ .../docs/clustertool/commands/scale/export.md | 28 +++++++++++ .../docs/clustertool/commands/scale/index.md | 28 +++++++++++ .../clustertool/commands/scale/migrate.md | 28 +++++++++++ .../docs/clustertool/commands/upgrade.md | 28 +++++++++++ 34 files changed, 1034 insertions(+) create mode 100644 website/src/content/docs/clustertool/commands/adv/bootstrap.md create mode 100644 website/src/content/docs/clustertool/commands/adv/health.md create mode 100644 website/src/content/docs/clustertool/commands/adv/index.md create mode 100644 website/src/content/docs/clustertool/commands/adv/precommit.md create mode 100644 website/src/content/docs/clustertool/commands/adv/reset.md create mode 100644 website/src/content/docs/clustertool/commands/adv/test.md create mode 100644 website/src/content/docs/clustertool/commands/apply.md create mode 100644 website/src/content/docs/clustertool/commands/charts/bump.md create mode 100644 website/src/content/docs/clustertool/commands/charts/deps.md create mode 100644 website/src/content/docs/clustertool/commands/charts/genchangelog.md create mode 100644 website/src/content/docs/clustertool/commands/charts/genchartlist.md create mode 100644 website/src/content/docs/clustertool/commands/charts/genmeta.md create mode 100644 website/src/content/docs/clustertool/commands/charts/index.md create mode 100644 website/src/content/docs/clustertool/commands/charts/tagcleaner.md create mode 100644 website/src/content/docs/clustertool/commands/checkcrypt.md create mode 100644 website/src/content/docs/clustertool/commands/completion/bash.md create mode 100644 website/src/content/docs/clustertool/commands/completion/fish.md create mode 100644 website/src/content/docs/clustertool/commands/completion/index.md create mode 100644 website/src/content/docs/clustertool/commands/completion/powershell.md create mode 100644 website/src/content/docs/clustertool/commands/completion/zsh.md create mode 100644 website/src/content/docs/clustertool/commands/decrypt.md create mode 100644 website/src/content/docs/clustertool/commands/encrypt.md create mode 100644 website/src/content/docs/clustertool/commands/fluxbootstrap.md create mode 100644 website/src/content/docs/clustertool/commands/genconfig.md create mode 100644 website/src/content/docs/clustertool/commands/helmrelease/index.md create mode 100644 website/src/content/docs/clustertool/commands/helmrelease/install.md create mode 100644 website/src/content/docs/clustertool/commands/helmrelease/upgrade.md create mode 100644 website/src/content/docs/clustertool/commands/index.md create mode 100644 website/src/content/docs/clustertool/commands/info.md create mode 100644 website/src/content/docs/clustertool/commands/init.md create mode 100644 website/src/content/docs/clustertool/commands/scale/export.md create mode 100644 website/src/content/docs/clustertool/commands/scale/index.md create mode 100644 website/src/content/docs/clustertool/commands/scale/migrate.md create mode 100644 website/src/content/docs/clustertool/commands/upgrade.md diff --git a/website/src/content/docs/clustertool/commands/adv/bootstrap.md b/website/src/content/docs/clustertool/commands/adv/bootstrap.md new file mode 100644 index 00000000000..c4cc528f1a2 --- /dev/null +++ b/website/src/content/docs/clustertool/commands/adv/bootstrap.md @@ -0,0 +1,28 @@ +--- +title: clustertool adv bootstrap +--- +## clustertool adv bootstrap + +bootstrap first Talos Node + +``` +clustertool adv bootstrap [flags] +``` + +### Examples + +``` +clustertool adv bootstrap +``` + +### Options + +``` + -h, --help help for bootstrap +``` + +### Options inherited from parent commands + +``` + --cluster string Cluster name (default "main") +``` diff --git a/website/src/content/docs/clustertool/commands/adv/health.md b/website/src/content/docs/clustertool/commands/adv/health.md new file mode 100644 index 00000000000..a3614c577b6 --- /dev/null +++ b/website/src/content/docs/clustertool/commands/adv/health.md @@ -0,0 +1,28 @@ +--- +title: clustertool adv health +--- +## clustertool adv health + +Check Talos Cluster Health + +``` +clustertool adv health [flags] +``` + +### Examples + +``` +clustertool adv health +``` + +### Options + +``` + -h, --help help for health +``` + +### Options inherited from parent commands + +``` + --cluster string Cluster name (default "main") +``` diff --git a/website/src/content/docs/clustertool/commands/adv/index.md b/website/src/content/docs/clustertool/commands/adv/index.md new file mode 100644 index 00000000000..481c9d42a96 --- /dev/null +++ b/website/src/content/docs/clustertool/commands/adv/index.md @@ -0,0 +1,28 @@ +--- +title: clustertool adv +--- +## clustertool adv + +Advanced cluster maintanence commands + +### Synopsis + +These are all advanced commands that should generally not be needed + +### Examples + +``` +clustertool adv +``` + +### Options + +``` + -h, --help help for adv +``` + +### Options inherited from parent commands + +``` + --cluster string Cluster name (default "main") +``` diff --git a/website/src/content/docs/clustertool/commands/adv/precommit.md b/website/src/content/docs/clustertool/commands/adv/precommit.md new file mode 100644 index 00000000000..31eaee269d3 --- /dev/null +++ b/website/src/content/docs/clustertool/commands/adv/precommit.md @@ -0,0 +1,28 @@ +--- +title: clustertool adv precommit +--- +## clustertool adv precommit + +Runs the PreCommit encryption check + +``` +clustertool adv precommit [flags] +``` + +### Examples + +``` +clustertool adv precommit +``` + +### Options + +``` + -h, --help help for precommit +``` + +### Options inherited from parent commands + +``` + --cluster string Cluster name (default "main") +``` diff --git a/website/src/content/docs/clustertool/commands/adv/reset.md b/website/src/content/docs/clustertool/commands/adv/reset.md new file mode 100644 index 00000000000..f4d757dcfec --- /dev/null +++ b/website/src/content/docs/clustertool/commands/adv/reset.md @@ -0,0 +1,28 @@ +--- +title: clustertool adv reset +--- +## clustertool adv reset + +Reset Talos Nodes and Kubernetes + +``` +clustertool adv reset [flags] +``` + +### Examples + +``` +clustertool adv reset +``` + +### Options + +``` + -h, --help help for reset +``` + +### Options inherited from parent commands + +``` + --cluster string Cluster name (default "main") +``` diff --git a/website/src/content/docs/clustertool/commands/adv/test.md b/website/src/content/docs/clustertool/commands/adv/test.md new file mode 100644 index 00000000000..1be3f36b72e --- /dev/null +++ b/website/src/content/docs/clustertool/commands/adv/test.md @@ -0,0 +1,26 @@ +--- +title: clustertool adv test +--- +## clustertool adv test + +tests specific code for developer usages + +### Synopsis + +This command is mostly just for development usage and should NEVER be used by end-users. + +``` +clustertool adv test [flags] +``` + +### Options + +``` + -h, --help help for test +``` + +### Options inherited from parent commands + +``` + --cluster string Cluster name (default "main") +``` diff --git a/website/src/content/docs/clustertool/commands/apply.md b/website/src/content/docs/clustertool/commands/apply.md new file mode 100644 index 00000000000..673861d3f4e --- /dev/null +++ b/website/src/content/docs/clustertool/commands/apply.md @@ -0,0 +1,28 @@ +--- +title: clustertool apply +--- +## clustertool apply + +apply TalosConfig + +``` +clustertool apply [flags] +``` + +### Examples + +``` +clustertool apply +``` + +### Options + +``` + -h, --help help for apply +``` + +### Options inherited from parent commands + +``` + --cluster string Cluster name (default "main") +``` diff --git a/website/src/content/docs/clustertool/commands/charts/bump.md b/website/src/content/docs/clustertool/commands/charts/bump.md new file mode 100644 index 00000000000..058aec3efe8 --- /dev/null +++ b/website/src/content/docs/clustertool/commands/charts/bump.md @@ -0,0 +1,28 @@ +--- +title: clustertool charts bump +--- +## clustertool charts bump + +generate a bumped image version + +``` +clustertool charts bump [flags] +``` + +### Examples + +``` +clustertool charts bump +``` + +### Options + +``` + -h, --help help for bump +``` + +### Options inherited from parent commands + +``` + --cluster string Cluster name (default "main") +``` diff --git a/website/src/content/docs/clustertool/commands/charts/deps.md b/website/src/content/docs/clustertool/commands/charts/deps.md new file mode 100644 index 00000000000..add492dcc4c --- /dev/null +++ b/website/src/content/docs/clustertool/commands/charts/deps.md @@ -0,0 +1,28 @@ +--- +title: clustertool charts deps +--- +## clustertool charts deps + +Download, Update and Verify Helm dependencies + +``` +clustertool charts deps [flags] +``` + +### Examples + +``` +clustertool charts deps +``` + +### Options + +``` + -h, --help help for deps +``` + +### Options inherited from parent commands + +``` + --cluster string Cluster name (default "main") +``` diff --git a/website/src/content/docs/clustertool/commands/charts/genchangelog.md b/website/src/content/docs/clustertool/commands/charts/genchangelog.md new file mode 100644 index 00000000000..ad83daba62c --- /dev/null +++ b/website/src/content/docs/clustertool/commands/charts/genchangelog.md @@ -0,0 +1,28 @@ +--- +title: clustertool charts genchangelog +--- +## clustertool charts genchangelog + +Generate changelog for charts + +``` +clustertool charts genchangelog [flags] +``` + +### Examples + +``` +clustertool charts genchangelog