openstack-helm-infra/roles/deploy-env
Vladimir Kozhukalov 3edbef16f3 [deploy-env] Fix fetching images
Even with the docker proxy cache we often get
jobs failed due to Docker Hub rate limits.
As per recommendation from the Opendev Infra team
let's pull as many as possible images from other
registires.

This PR updates the dnsmasq and nginx images used
for auxiliary purposes during deployments.

Change-Id: I58946e6fc63d726e08d83ea7f96e7fef140ddf21
2024-12-20 14:44:27 -06:00
..
defaults [deploy-env] Fix fetching images 2024-12-20 14:44:27 -06:00
files Update deploy-env role 2024-09-03 17:32:28 -05:00
handlers Add license headers to deploy-env tasks files 2023-12-13 14:19:50 -06:00
tasks Update Chart.yaml apiVersion to v2 2024-12-16 16:48:03 -06:00
README.md Update deploy-env role to support root user 2024-06-13 15:05:54 -05:00

This role is used to deploy test environment which includes

  • install necessary prerequisites including Helm
  • deploy Containerd and a container runtime for Kubernetes
  • deploy Kubernetes using Kubeadm with a single control plane node
  • install Calico as a Kubernetes networking
  • establish tunnel between primary node and K8s control plane ndoe

The role works both for single-node and multi-node inventories. The role totally relies on inventory groups. The primary and k8s_control_plane groups must include only one node and this can be the same node for these two groups.

The primary group is where we install kubectl and helm CLI tools. You can consider this group as a deployer's machine.

The k8s_control_plane is where we deploy the K8s control plane.

The k8s_cluster group must include all the K8s nodes including control plane and worker nodes.

In case of running tests on a single-node environment the group k8s_nodes must be empty. This means the K8s cluster will consist of a single control plane node where all the workloads will be running.

See for example:

all:
  vars:
    ansible_port: 22
    ansible_user: ubuntu
    ansible_ssh_private_key_file: /home/ubuntu/.ssh/id_rsa
    ansible_ssh_extra_args: -o StrictHostKeyChecking=no
  hosts:
    primary:
      ansible_host: 10.10.10.10
    node-1:
      ansible_host: 10.10.10.11
    node-2:
      ansible_host: 10.10.10.12
    node-3:
      ansible_host: 10.10.10.13
  children:
    primary:
      hosts:
        primary:
    k8s_cluster:
      hosts:
        node-1:
        node-2:
        node-3:
    k8s_control_plane:
      hosts:
        node-1:
    k8s_nodes:
      hosts:
        node-2:
        node-3: