Skip to content
Snippets Groups Projects
Unverified Commit 17fb1cee authored by Bas van den Brink's avatar Bas van den Brink Committed by GitHub
Browse files

Allow airgapped CRI-O installation (#6927)

parent 97ff67e5
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,9 @@ crio_pause_image: "{{ pod_infra_image_repo }}:{{ pod_infra_version }}"
# By default unqualified images are not allowed for security reasons
crio_registries: []
# Configure insecure registries.
crio_insecure_registries: []
crio_seccomp_profile: ""
crio_selinux: "{{ (preinstall_selinux_state == 'enforcing')|lower }}"
crio_signature_policy: "{% if ansible_os_family == 'ClearLinux' %}/usr/share/defaults/crio/policy.json{% endif %}"
......@@ -50,3 +53,7 @@ kata_runtimes:
path: /opt/kata/bin/kata-qemu
type: oci
root: /run/kata-containers
# When this is true, CRI-O package repositories are added. Set this to false when using an
# environment with preconfigured CRI-O package repositories.
crio_add_repos: true
......@@ -39,7 +39,9 @@
- (ansible_distribution_major_version | int) >= 31
- ansible_proc_cmdline['systemd.unified_cgroup_hierarchy'] is not defined or ansible_proc_cmdline['systemd.unified_cgroup_hierarchy'] != '0'
- import_tasks: "crio_repo.yml"
- name: import crio repo
import_tasks: "crio_repo.yml"
when: crio_add_repos
- import_tasks: "crictl.yml"
......
......@@ -339,7 +339,11 @@ signature_policy = "{{ crio_signature_policy }}"
# List of registries to skip TLS verification for pulling images. Please
# consider configuring the registries via /etc/containers/registries.conf before
# changing them here.
#insecure_registries = "[]"
insecure_registries = [
{% for insecure_registry in crio_insecure_registries %}
"{{ insecure_registry }}",
{% endfor %}
]
# Controls how image volumes are handled. The valid values are mkdir, bind and
# ignore; the latter will ignore volumes entirely.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment