-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bec46a8
commit 65ee13e
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Flavors | ||
|
||
In `clusterctl` the infrastructure provider authors can provide different types | ||
of cluster templates referred to as "flavors". You can use the `--flavor` flag | ||
to specify which flavor to use for a cluster, e.g: | ||
|
||
```shell | ||
clusterctl generate cluster test-cluster --flavor clusterclass | ||
``` | ||
|
||
To use the default flavor, omit the `--flavor` flag. | ||
|
||
See the [`clusterctl` flavors docs](https://cluster-api.sigs.k8s.io/clusterctl/commands/generate-cluster.html#flavors) for more information. | ||
|
||
This directory contains each of the flavors for CAPL. Each directory besides `base` will be used to | ||
create a flavor by running `kustomize build` on the directory. The name of the directory will be | ||
appended to the end of the cluster-template.yaml, e.g cluster-template-{directory-name}.yaml. That | ||
flavor can be used by specifying `--flavor {directory-name}`. | ||
|
||
To generate all CAPL flavors, run `make generate-flavors`. |