...
Configure kubectl with the kubectl-openstack plugin: Ensure that your kubectl is correctly configured with the kubectl-* plugin.
- Verify the existence of the 'K8S' security group in the CloudVeneto project with the following rules, or create it:
Egress | IPv4 | Any | Any | 0.0.0.0/0 |
Egress | IPv6 | Any | Any | ::/0 |
Ingress | IPv4 | ICMP | Any | 0.0.0.0/0 |
Ingress | IPv4 | TCP | 22 (SSH) | 0.0.0.0/0 |
Ingress | IPv4 | TCP | Any | 192.168.60.0/24 |
Ingress | IPv4 | UDP | Any | 192.168.60.0/24 |
Ingress | IPv4 | TCP | Any | 10.64.0.0/16 |
Ingress | IPv4 | UDP | Any | 10.64.0.0/16 |
Creating a New Node
To create a new node in your Kubernetes cluster, you'll use kubectl, the standard Kubernetes command-line interface. Specifically, you will utilize the kubectl apply
command, which takes a YAML file as input.
...