Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#4775 from serngawy/issue-4774
Browse files Browse the repository at this point in the history
📖 Improve ROSA quickstart with MachinePool and troubleshooting guide
  • Loading branch information
k8s-ci-robot committed Feb 7, 2024
2 parents faf38c1 + f8caaf9 commit 6ffb575
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions docs/book/src/topics/rosa/enabling.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,34 @@ To enable support for ROSA clusters, the ROSA feature flag must be set to true.

```shell
export EXP_ROSA="true"
export EXP_MACHINE_POOL="true"
clusterctl init --infrastructure aws
```

## Troubleshooting
To check the feature-gates for the Cluster API controller run the following command:

```shell
$ kubectl get deploy capi-controller-manager -n capi-system -o yaml
```
the feature gate container arg should have `MachinePool=true` as shown below.

```yaml
spec:
containers:
- args:
- --feature-gates=MachinePool=true,ClusterTopology=true,...
```
To check the feature-gates for the Cluster API AWS controller run the following command:
```shell
$ kubectl get deploy capa-controller-manager -n capa-system -o yaml
```
the feature gate arg should have `ROSA=true` as shown below.

```yaml
spec:
containers:
- args:
- --feature-gates=ROSA=true,...
```

0 comments on commit 6ffb575

Please sign in to comment.