Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Configure kubectl with the kubectl-openstack plugin: Ensure that your kubectl is correctly configured with the kubectl-* plugin.

  2. Verify the existence of the 'K8S' security group in the CloudVeneto project with the following rules, or create it:

Egress

IPv4AnyAny0.0.0.0/0
EgressIPv6AnyAny::/0
IngressIPv4ICMPAny0.0.0.0/0
IngressIPv4TCP22 (SSH)0.0.0.0/0
IngressIPv4TCPAny192.168.60.0/24
IngressIPv4UDPAny192.168.60.0/24
IngressIPv4TCPAny10.64.0.0/16
IngressIPv4UDPAny10.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.

...