From 1cb66fb0510d3d15d9609855324d3f5a2dfe8a3d Mon Sep 17 00:00:00 2001 From: David Tesar Date: Tue, 14 Nov 2023 10:14:32 -0800 Subject: [PATCH] Add CAPI Operator Quickstart --- docs/book/src/SUMMARY.md | 1 + docs/book/src/user/quick-start-operator.md | 6 ++++++ docs/book/src/user/quick-start.md | 11 +++++++++++ 3 files changed, 18 insertions(+) create mode 100644 docs/book/src/user/quick-start-operator.md diff --git a/docs/book/src/SUMMARY.md b/docs/book/src/SUMMARY.md index 1f4c594806b2..a719aabaeed3 100644 --- a/docs/book/src/SUMMARY.md +++ b/docs/book/src/SUMMARY.md @@ -2,6 +2,7 @@ [Introduction](./introduction.md) [Quick Start](./user/quick-start.md) +[Quick Start Operator](./user/quick-start-operator.md) [Concepts](./user/concepts.md) [Personas](./user/personas.md) - [Tasks](./tasks/index.md) diff --git a/docs/book/src/user/quick-start-operator.md b/docs/book/src/user/quick-start-operator.md new file mode 100644 index 000000000000..533462f40ccc --- /dev/null +++ b/docs/book/src/user/quick-start-operator.md @@ -0,0 +1,6 @@ +# Cluster API Operator Quickstart + +This section provides a quickstart guide for using the Cluster API Operator to create a Kubernetes cluster. +To use the `clusterctl` quickstart path, visit [this quickstart guide](./quick-start.md). + +{{#embed-github repo:"kubernetes-sigs/cluster-api-operator" path:"docs/quickstart.md" }} \ No newline at end of file diff --git a/docs/book/src/user/quick-start.md b/docs/book/src/user/quick-start.md index b2303a356fd3..56d519e68992 100644 --- a/docs/book/src/user/quick-start.md +++ b/docs/book/src/user/quick-start.md @@ -12,6 +12,16 @@ If using a [provider] that does not support v1beta1 or v1alpha4 yet, please foll ## Installation +There are two major quickstart paths: Using clusterctl or the Cluster API Operator. + + This article describes a path that uses the `clusterctl` CLI tool to handle the lifecycle of a Cluster API [management cluster](https://cluster-api.sigs.k8s.io/reference/glossary#management-cluster). + +The clusterctl command line interface is specifically designed for providing a simple “day 1 experience” and a quick start with Cluster API. It automates fetching the YAML files defining [provider components](https://cluster-api.sigs.k8s.io/reference/glossary#provider-components) and installing them. + +Additionally it encodes a set of best practices in managing providers, that helps the user in avoiding mis-configurations or in managing day 2 operations such as upgrades. + +The Cluster API Operator is a Kubernetes Operator built on top of clusterctl and designed to empower cluster administrators to handle the lifecycle of Cluster API providers within a management cluster using a declarative approach. It aims to improve user experience in deploying and managing Cluster API, making it easier to handle day-to-day tasks and automate workflows with GitOps. Visit the [CAPI Operator quickstart] if you want to experiment with this tool. + ### Common Prerequisites - Install and setup [kubectl] in your local environment @@ -1613,3 +1623,4 @@ kind delete cluster [provider components]: ../reference/glossary.md#provider-components [vSphere getting started guide]: https://github.com/kubernetes-sigs/cluster-api-provider-vsphere/blob/master/docs/getting_started.md [workload cluster]: ../reference/glossary.md#workload-cluster +[CAPI Operator quickstart]: ./quick-start-operator.md \ No newline at end of file