You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.1 KiB

6 years ago
  1. ---
  2. crio_cgroup_manager: "{{ kubelet_cgroup_driver | default('systemd') }}"
  3. crio_conmon: "/usr/bin/conmon"
  4. crio_enable_metrics: false
  5. crio_log_level: "info"
  6. crio_metrics_port: "9090"
  7. crio_pause_image: "{{ pod_infra_image_repo }}:{{ pod_infra_version }}"
  8. # Trusted registries to pull unqualified images (e.g. alpine:latest) from
  9. # By default unqualified images are not allowed for security reasons
  10. crio_registries: []
  11. crio_runc_path: "/usr/bin/runc"
  12. crio_seccomp_profile: ""
  13. crio_selinux: "{{ (preinstall_selinux_state == 'enforcing')|lower }}"
  14. crio_signature_policy: "{% if ansible_os_family == 'ClearLinux' %}/usr/share/defaults/crio/policy.json{% endif %}"
  15. # Override system default for storage driver
  16. # crio_storage_driver: "overlay"
  17. crio_stream_port: "10010"
  18. crio_required_version: "{{ kube_version | regex_replace('^v(?P<major>\\d+).(?P<minor>\\d+).(?P<patch>\\d+)$', '\\g<major>.\\g<minor>') }}"
  19. crio_kubernetes_version_matrix:
  20. "1.18": "1.18"
  21. "1.17": "1.17"
  22. "1.16": "1.16"
  23. crio_version: "{{ crio_kubernetes_version_matrix[crio_required_version] | default('1.17') }}"