
This role works both for singlenode and multinode inventories. The role installs all necessary prerequisites and deploys K8s with Containerd as a container runtime. The idea is to use this role to deploy all test singlenode/multinode environments for all test jobs. This PR wraps into a role playbooks that we are currently using for multinode compute-kit tests. Change-Id: I41bbe80d806e614a155e6775c4505a4d81a086e8
11 lines
322 B
TOML
11 lines
322 B
TOML
version = 2
|
|
disabled_plugins = []
|
|
[plugins."io.containerd.grpc.v1.cri".registry]
|
|
config_path = "/etc/containerd/certs.d"
|
|
|
|
{% for item in registry_namespaces %}
|
|
{% if item.auth is defined %}
|
|
[plugins."io.containerd.grpc.v1.cri".registry.configs."{{ item.namespace }}".auth]
|
|
auth = "{{ item.auth }}"
|
|
{% endif %}
|
|
{% endfor %} |