You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: prefix ovhcloud guide section headings with 'step'
Update the numbered section headings in the Talos v1.13 OVHcloud installation guide to include the word 'Step' before each number. This improves readability and makes it clearer to users that these headings represent sequential steps in the installation procedure.
Signed-off-by: Kevin Tijssen <kevin.tijssen@siderolabs.com>
First, download the <ahref={`https://factory.talos.dev/image/376567988ad370138ad8b2698212367b8edcb69b5fd68c80be1f2ec7d603b4ba/${release_v1_13}/akamai-amd64.raw.gz`}> OpenStack image</a> from [Image Factory](https://factory.talos.dev/).
If you have an existing network infrastructure, you can skip this step.
59
59
If not, you can follow the instructions below to create the necessary network infrastructure for your cluster.
@@ -98,7 +98,7 @@ Ports have been opened to ensure that connectivity from both inside and outside
98
98
You will want to allow, at a minimum, ports 6443 (Kubernetes API server) and 50000 (Talos API) from external sources.
99
99
It is also recommended to allow communication over all ports from within the subnet.
100
100
101
-
## 3. Compute
101
+
## Step 3. Compute
102
102
103
103
Once the image is uploaded and the network infrastructure is in place, we can create our compute instances.
104
104
We will create 3 control plane nodes.
@@ -144,7 +144,7 @@ for i in $( seq 1 3 ); do
144
144
done
145
145
```
146
146
147
-
## 4. Cluster configuration
147
+
## Step 4. Cluster configuration
148
148
149
149
Now that we have our compute instances and load balancer set up, we can generate our cluster configuration files with `talosctl`.
150
150
We need to get the Public IP of the Load Balancer as this is our Kubernetes API endpoint, and the Public IPs of the control plane nodes as addional-sans for the API certificate.
@@ -165,7 +165,7 @@ talosctl gen config talos-ovhcloud https://$LOADBALANCER_VIP:6443 \
165
165
--additional-sans $CP1_IP,$CP2_IP,$CP3_IP
166
166
```
167
167
168
-
## 5. Applying configuration and bootstrapping the cluster
168
+
## Step 5. Applying configuration and bootstrapping the cluster
169
169
170
170
With our configuration file generated, we can now apply it to our control plane nodes and bootstrap the cluster.
0 commit comments