File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,29 @@ CABPT provider should be installed alongside with [CACPPT](https://github.com/ta
20
20
clusterctl init --bootstrap talos --control-plane talos --infrastructure < infrastructure provider>
21
21
```
22
22
23
+ If you encounter the following error, this is caused by a rename of our GitHub org from ` talos-systems ` to ` siderolabs ` .
24
+
25
+ ``` bash
26
+ $ clusterctl init -b talos -c talos -i sidero
27
+ Fetching providers
28
+ Error: failed to get provider components for the " talos" provider: target namespace can' t be defaulted. Please specify a target namespace
29
+ ```
30
+
31
+ This can be worked around by adding the following to `~/.cluster-api/clusterctl.yaml` and rerunning the init command:
32
+
33
+ ```yaml
34
+ providers:
35
+ - name: "talos"
36
+ url: "https://github.com/siderolabs/cluster-api-bootstrap-provider-talos/releases/latest/bootstrap-components.yaml"
37
+ type: "BootstrapProvider"
38
+ - name: "talos"
39
+ url: "https://github.com/siderolabs/cluster-api-control-plane-provider-talos/releases/latest/control-plane-components.yaml"
40
+ type: "ControlPlaneProvider"
41
+ - name: "sidero"
42
+ url: "https://github.com/siderolabs/sidero/releases/latest/infrastructure-components.yaml"
43
+ type: "InfrastructureProvider"
44
+ ```
45
+
23
46
## Compatibility
24
47
25
48
This provider' s versions are compatible with the following versions of Cluster API:
You can’t perform that action at this time.
0 commit comments