Skip to content

Commit 6ffb575

Browse files
authored
Merge pull request #4775 from serngawy/issue-4774
📖 Improve ROSA quickstart with MachinePool and troubleshooting guide
2 parents faf38c1 + f8caaf9 commit 6ffb575

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

docs/book/src/topics/rosa/enabling.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,34 @@ To enable support for ROSA clusters, the ROSA feature flag must be set to true.
44

55
```shell
66
export EXP_ROSA="true"
7+
export EXP_MACHINE_POOL="true"
78
clusterctl init --infrastructure aws
9+
```
10+
11+
## Troubleshooting
12+
To check the feature-gates for the Cluster API controller run the following command:
13+
14+
```shell
15+
$ kubectl get deploy capi-controller-manager -n capi-system -o yaml
16+
```
17+
the feature gate container arg should have `MachinePool=true` as shown below.
18+
19+
```yaml
20+
spec:
21+
containers:
22+
- args:
23+
- --feature-gates=MachinePool=true,ClusterTopology=true,...
24+
```
25+
26+
To check the feature-gates for the Cluster API AWS controller run the following command:
27+
```shell
28+
$ kubectl get deploy capa-controller-manager -n capa-system -o yaml
29+
```
30+
the feature gate arg should have `ROSA=true` as shown below.
31+
32+
```yaml
33+
spec:
34+
containers:
35+
- args:
36+
- --feature-gates=ROSA=true,...
837
```

0 commit comments

Comments
 (0)