Skip to content

Commit

Permalink
modified the github workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Dipankar Das <65275144+dipankardas011@users.noreply.github.com>
  • Loading branch information
dipankardas011 committed Dec 1, 2024
1 parent c508f1d commit 2821285
Show file tree
Hide file tree
Showing 32 changed files with 69 additions and 219 deletions.
23 changes: 11 additions & 12 deletions .github/workflows/sync-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,9 @@ jobs:
with:
path: cli-repo

- name: Checkout Docs repository
uses: actions/checkout@v4
with:
path: docs-repo
repository: 'ksctl/docs'
ref: 'main'
- name: checkout docs repo
run: |
git clone https://github.com/ksctl/docs.git docs-repo
- name: Set up Go
uses: actions/setup-go@v4
Expand All @@ -47,15 +44,17 @@ jobs:
run: |
# Copy generated docs
cp -rv cli-repo/gen/docs.md/. docs-repo/content/en/docs/${{ github.event.inputs.branch }}/Reference/.
ls -l docs-repo/content/en/docs/${{ github.event.inputs.branch }}/Reference/
- name: Commit and Push Changes
working-directory: docs-repo
env:
GITHUB_TOKEN: ${{ secrets.PAT_SYNC_CLI_DOCS_TO_DOCS_REPO }}
# env:
# GITHUB_TOKEN: ${{ secrets.PAT_SYNC_CLI_DOCS_TO_DOCS_REPO }}
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git config user.name "Dipankar Das"
git config user.email "65275144+dipankardas011@users.noreply.github.com"
git remote add docs https://${{ secrets.PAT_SYNC_CLI_DOCS_TO_DOCS_REPO }}@github.com/ksctl/docs.git
git add content/en/docs/${{ github.event.inputs.branch }}/Reference
git diff --quiet && git diff --staged --quiet || (git commit -m "chore(cicd): Update CLI documentation" && git push)
git remote -v
git branch -v
git diff --quiet && git diff --staged --quiet || (git commit -m "chore(cicd): Update CLI documentation" && git push docs main)
4 changes: 4 additions & 0 deletions cli/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ var (
cloud map[int]string
)

var (
DisableHeaderBanner bool
)

type CobraCmd struct {
ClusterName string
Region string
Expand Down
3 changes: 3 additions & 0 deletions cli/cmd/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ func newLogo() string {
}

func LongMessage(message string) string {
if !DisableHeaderBanner {
return "Ksctl ascii [logo]"
}
return fmt.Sprintf("%s\n\n%s", newLogo(), color.New(color.BgHiYellow).Add(color.FgBlack).SprintFunc()(message))
}

Expand Down
11 changes: 2 additions & 9 deletions gen/docs.md/ksctl.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,7 @@ CLI tool for managing multiple K8s clusters

### Synopsis


░ ░░░░ ░░░ ░░░░ ░░░ ░░ ░░░░░░░
▒ ▒▒▒ ▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒▒▒
▓ ▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓ ▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
█ ████ ███ ████ ██████ █████ █

CLI tool which can manage multiple K8s clusters from local clusters to cloud provider specific clusters.
Ksctl ascii [logo]

### Options

Expand All @@ -36,4 +29,4 @@ CLI tool for managing multiple K8s clusters
* [ksctl self-update](ksctl_self-update.md) - update the ksctl cli
* [ksctl version](ksctl_version.md) - Print the version number of ksctl

###### Auto generated by spf13/cobra on 1-Dec-2024
###### Auto generated by spf13/cobra on 2-Dec-2024
11 changes: 2 additions & 9 deletions gen/docs.md/ksctl_connect-cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,7 @@ Use to switch between clusters

### Synopsis


░ ░░░░ ░░░ ░░░░ ░░░ ░░ ░░░░░░░
▒ ▒▒▒ ▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒▒▒
▓ ▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓ ▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
█ ████ ███ ████ ██████ █████ █

It is used to switch cluster with the given ClusterName from user.
Ksctl ascii [logo]

```
ksctl connect-cluster [flags]
Expand Down Expand Up @@ -61,4 +54,4 @@ ksctl connect-context -s external-store-mongodb -p civo -n <clustername> -r <reg

* [ksctl](ksctl.md) - CLI tool for managing multiple K8s clusters

###### Auto generated by spf13/cobra on 1-Dec-2024
###### Auto generated by spf13/cobra on 2-Dec-2024
11 changes: 2 additions & 9 deletions gen/docs.md/ksctl_create-cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,7 @@ Use to create a cluster

### Synopsis


░ ░░░░ ░░░ ░░░░ ░░░ ░░ ░░░░░░░
▒ ▒▒▒ ▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒▒▒
▓ ▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓ ▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
█ ████ ███ ████ ██████ █████ █

It is used to create cluster with the given name from user
Ksctl ascii [logo]

### Examples

Expand All @@ -43,4 +36,4 @@ ksctl create --help
* [ksctl create-cluster ha-civo](ksctl_create-cluster_ha-civo.md) - Use to create a self-managed Highly Available cluster on Civo
* [ksctl create-cluster local](ksctl_create-cluster_local.md) - Use to create a kind cluster

###### Auto generated by spf13/cobra on 1-Dec-2024
###### Auto generated by spf13/cobra on 2-Dec-2024
11 changes: 2 additions & 9 deletions gen/docs.md/ksctl_create-cluster_aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,7 @@ Use to create a EKS cluster in Aws

### Synopsis


░ ░░░░ ░░░ ░░░░ ░░░ ░░ ░░░░░░░
▒ ▒▒▒ ▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒▒▒
▓ ▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓ ▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
█ ████ ███ ████ ██████ █████ █

It is used to create cluster with the given name from user
Ksctl ascii [logo]

```
ksctl create-cluster aws [flags]
Expand Down Expand Up @@ -51,4 +44,4 @@ ksctl create-cluster aws -n demo -r ap-south-1 -s store-local --nodeSizeMP t2.mi

* [ksctl create-cluster](ksctl_create-cluster.md) - Use to create a cluster

###### Auto generated by spf13/cobra on 1-Dec-2024
###### Auto generated by spf13/cobra on 2-Dec-2024
11 changes: 2 additions & 9 deletions gen/docs.md/ksctl_create-cluster_azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,7 @@ Use to create a AKS cluster in Azure

### Synopsis


░ ░░░░ ░░░ ░░░░ ░░░ ░░ ░░░░░░░
▒ ▒▒▒ ▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒▒▒
▓ ▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓ ▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
█ ████ ███ ████ ██████ █████ █

It is used to create cluster with the given name from user
Ksctl ascii [logo]

```
ksctl create-cluster azure [flags]
Expand Down Expand Up @@ -51,4 +44,4 @@ ksctl create-cluster azure -n demo -r eastus -s store-local --nodeSizeMP Standar

* [ksctl create-cluster](ksctl_create-cluster.md) - Use to create a cluster

###### Auto generated by spf13/cobra on 1-Dec-2024
###### Auto generated by spf13/cobra on 2-Dec-2024
11 changes: 2 additions & 9 deletions gen/docs.md/ksctl_create-cluster_civo.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,7 @@ Use to create a Civo managed k3s cluster

### Synopsis


░ ░░░░ ░░░ ░░░░ ░░░ ░░ ░░░░░░░
▒ ▒▒▒ ▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒▒▒
▓ ▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓ ▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
█ ████ ███ ████ ██████ █████ █

It is used to create cluster with the given name from user
Ksctl ascii [logo]

```
ksctl create-cluster civo [flags]
Expand Down Expand Up @@ -51,4 +44,4 @@ ksctl create-cluster civo --name demo --region LON1 --storage store-local --node

* [ksctl create-cluster](ksctl_create-cluster.md) - Use to create a cluster

###### Auto generated by spf13/cobra on 1-Dec-2024
###### Auto generated by spf13/cobra on 2-Dec-2024
11 changes: 2 additions & 9 deletions gen/docs.md/ksctl_create-cluster_ha-aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,7 @@ Use to create a self-managed Highly Available cluster on AWS

### Synopsis


░ ░░░░ ░░░ ░░░░ ░░░ ░░ ░░░░░░░
▒ ▒▒▒ ▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒▒▒
▓ ▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓ ▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
█ ████ ███ ████ ██████ █████ █

It is used to create cluster with the given name from user.
Ksctl ascii [logo]

```
ksctl create-cluster ha-aws [flags]
Expand Down Expand Up @@ -57,4 +50,4 @@ ksctl create-cluster ha-aws -n demo -r us-east-1 --bootstrap k3s -s store-local
* [ksctl create-cluster](ksctl_create-cluster.md) - Use to create a cluster
* [ksctl create-cluster ha-aws add-nodes](ksctl_create-cluster_ha-aws_add-nodes.md) - Use to add more worker nodes in self-managed Highly-Available cluster on Aws

###### Auto generated by spf13/cobra on 1-Dec-2024
###### Auto generated by spf13/cobra on 2-Dec-2024
2 changes: 1 addition & 1 deletion gen/docs.md/ksctl_create-cluster_ha-aws_add-nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ ksctl create ha-aws add-nodes -n demo -r ap-south-1 -s store-local --noWP 3 --no

* [ksctl create-cluster ha-aws](ksctl_create-cluster_ha-aws.md) - Use to create a self-managed Highly Available cluster on AWS

###### Auto generated by spf13/cobra on 1-Dec-2024
###### Auto generated by spf13/cobra on 2-Dec-2024
11 changes: 2 additions & 9 deletions gen/docs.md/ksctl_create-cluster_ha-azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,7 @@ Use to create a self-managed Highly-Available cluster on Azure

### Synopsis


░ ░░░░ ░░░ ░░░░ ░░░ ░░ ░░░░░░░
▒ ▒▒▒ ▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒▒▒
▓ ▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓ ▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
█ ████ ███ ████ ██████ █████ █

It is used to create cluster with the given name from user
Ksctl ascii [logo]

```
ksctl create-cluster ha-azure [flags]
Expand Down Expand Up @@ -58,4 +51,4 @@ ksctl create-cluster ha-azure --name demo --region eastus --bootstrap kubeadm --
* [ksctl create-cluster](ksctl_create-cluster.md) - Use to create a cluster
* [ksctl create-cluster ha-azure add-nodes](ksctl_create-cluster_ha-azure_add-nodes.md) - Use to add more worker nodes in self-managed Highly-Available cluster on Azure

###### Auto generated by spf13/cobra on 1-Dec-2024
###### Auto generated by spf13/cobra on 2-Dec-2024
2 changes: 1 addition & 1 deletion gen/docs.md/ksctl_create-cluster_ha-azure_add-nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ ksctl create ha-azure add-nodes -n demo -r eastus -s store-local --noWP 3 --node

* [ksctl create-cluster ha-azure](ksctl_create-cluster_ha-azure.md) - Use to create a self-managed Highly-Available cluster on Azure

###### Auto generated by spf13/cobra on 1-Dec-2024
###### Auto generated by spf13/cobra on 2-Dec-2024
11 changes: 2 additions & 9 deletions gen/docs.md/ksctl_create-cluster_ha-civo.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,7 @@ Use to create a self-managed Highly Available cluster on Civo

### Synopsis


░ ░░░░ ░░░ ░░░░ ░░░ ░░ ░░░░░░░
▒ ▒▒▒ ▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒▒▒
▓ ▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓ ▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
█ ████ ███ ████ ██████ █████ █

It is used to create cluster with the given name from user
Ksctl ascii [logo]

```
ksctl create-cluster ha-civo [flags]
Expand Down Expand Up @@ -58,4 +51,4 @@ ksctl create-cluster ha-civo --name demo --region LON1 --bootstrap kubeadm --sto
* [ksctl create-cluster](ksctl_create-cluster.md) - Use to create a cluster
* [ksctl create-cluster ha-civo add-nodes](ksctl_create-cluster_ha-civo_add-nodes.md) - Use to add more worker nodes in self-managed Highly-Available cluster on Civo

###### Auto generated by spf13/cobra on 1-Dec-2024
###### Auto generated by spf13/cobra on 2-Dec-2024
2 changes: 1 addition & 1 deletion gen/docs.md/ksctl_create-cluster_ha-civo_add-nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ ksctl create ha-civo add-nodes -n demo -r LON1 -s store-local --noWP 3 --nodeSiz

* [ksctl create-cluster ha-civo](ksctl_create-cluster_ha-civo.md) - Use to create a self-managed Highly Available cluster on Civo

###### Auto generated by spf13/cobra on 1-Dec-2024
###### Auto generated by spf13/cobra on 2-Dec-2024
11 changes: 2 additions & 9 deletions gen/docs.md/ksctl_create-cluster_local.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,7 @@ Use to create a kind cluster

### Synopsis


░ ░░░░ ░░░ ░░░░ ░░░ ░░ ░░░░░░░
▒ ▒▒▒ ▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒▒▒
▓ ▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓ ▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
█ ████ ███ ████ ██████ █████ █

It is used to create cluster with the given name from user
Ksctl ascii [logo]

```
ksctl create-cluster local [flags]
Expand Down Expand Up @@ -49,4 +42,4 @@ ksctl create-cluster local --name demo --storage store-local --noMP 3

* [ksctl create-cluster](ksctl_create-cluster.md) - Use to create a cluster

###### Auto generated by spf13/cobra on 1-Dec-2024
###### Auto generated by spf13/cobra on 2-Dec-2024
11 changes: 2 additions & 9 deletions gen/docs.md/ksctl_cred.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,7 @@ Login to your Cloud-provider Credentials

### Synopsis


░ ░░░░ ░░░ ░░░░ ░░░ ░░ ░░░░░░░
▒ ▒▒▒ ▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒▒▒
▓ ▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓ ▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
█ ████ ███ ████ ██████ █████ █

login to your cloud provider credentials
Ksctl ascii [logo]

```
ksctl cred [flags]
Expand All @@ -34,4 +27,4 @@ ksctl cred [flags]

* [ksctl](ksctl.md) - CLI tool for managing multiple K8s clusters

###### Auto generated by spf13/cobra on 1-Dec-2024
###### Auto generated by spf13/cobra on 2-Dec-2024
11 changes: 2 additions & 9 deletions gen/docs.md/ksctl_delete-cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,7 @@ Use to delete a cluster

### Synopsis


░ ░░░░ ░░░ ░░░░ ░░░ ░░ ░░░░░░░
▒ ▒▒▒ ▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒▒▒
▓ ▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓ ▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
█ ████ ███ ████ ██████ █████ █

It is used to delete cluster of given provider
Ksctl ascii [logo]

### Examples

Expand All @@ -43,4 +36,4 @@ ksctl delete --help
* [ksctl delete-cluster ha-civo](ksctl_delete-cluster_ha-civo.md) - Use to delete a self-managed Highly Available cluster on Civo
* [ksctl delete-cluster local](ksctl_delete-cluster_local.md) - Use to delete a kind cluster

###### Auto generated by spf13/cobra on 1-Dec-2024
###### Auto generated by spf13/cobra on 2-Dec-2024
11 changes: 2 additions & 9 deletions gen/docs.md/ksctl_delete-cluster_aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,7 @@ Use to deletes a EKS cluster

### Synopsis


░ ░░░░ ░░░ ░░░░ ░░░ ░░ ░░░░░░░
▒ ▒▒▒ ▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒▒▒
▓ ▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓ ▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
█ ████ ███ ████ ██████ █████ █

It is used to delete cluster of given provider
Ksctl ascii [logo]

```
ksctl delete-cluster aws [flags]
Expand Down Expand Up @@ -45,4 +38,4 @@ ksctl delete aws --name demo --region ap-south-1 --storage store-local

* [ksctl delete-cluster](ksctl_delete-cluster.md) - Use to delete a cluster

###### Auto generated by spf13/cobra on 1-Dec-2024
###### Auto generated by spf13/cobra on 2-Dec-2024
11 changes: 2 additions & 9 deletions gen/docs.md/ksctl_delete-cluster_azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,7 @@ Use to deletes a AKS cluster

### Synopsis


░ ░░░░ ░░░ ░░░░ ░░░ ░░ ░░░░░░░
▒ ▒▒▒ ▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒▒▒
▓ ▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓ ▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
█ ████ ███ ████ ██████ █████ █

It is used to delete cluster of given provider
Ksctl ascii [logo]

```
ksctl delete-cluster azure [flags]
Expand Down Expand Up @@ -46,4 +39,4 @@ ksctl delete azure --name demo --region eastus --storage store-local

* [ksctl delete-cluster](ksctl_delete-cluster.md) - Use to delete a cluster

###### Auto generated by spf13/cobra on 1-Dec-2024
###### Auto generated by spf13/cobra on 2-Dec-2024
Loading

0 comments on commit 2821285

Please sign in to comment.