crio.conf.j2 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. # {{ ansible_managed }}
  2. # The "crio" table contains all of the server options.
  3. [crio]
  4. # root is a path to the "root directory". CRIO stores all of its data,
  5. # including container images, in this directory.
  6. root = "/var/lib/containers/storage"
  7. # run is a path to the "run directory". CRIO stores all of its state
  8. # in this directory.
  9. runroot = "/var/run/containers/storage"
  10. # storage_driver select which storage driver is used to manage storage
  11. # of images and containers.
  12. storage_driver = "overlay"
  13. # storage_option is used to pass an option to the storage driver.
  14. storage_option = [
  15. {% if ansible_distribution in ['RedHat', 'CentOS'] %}
  16. "overlay.override_kernel_check=1"
  17. {% endif %}
  18. ]
  19. # The "crio.api" table contains settings for the kubelet/gRPC
  20. # interface (which is also used by crioctl).
  21. [crio.api]
  22. # listen is the path to the AF_LOCAL socket on which crio will listen.
  23. listen = "/var/run/crio.sock"
  24. # stream_address is the IP address on which the stream server will listen
  25. stream_address = ""
  26. # stream_port is the port on which the stream server will listen
  27. stream_port = "10010"
  28. # file_locking is whether file-based locking will be used instead of
  29. # in-memory locking
  30. file_locking = true
  31. # The "crio.runtime" table contains settings pertaining to the OCI
  32. # runtime used and options for how to set up and manage the OCI runtime.
  33. [crio.runtime]
  34. # runtime is the OCI compatible runtime used for trusted container workloads.
  35. # This is a mandatory setting as this runtime will be the default one
  36. # and will also be used for untrusted container workloads if
  37. # runtime_untrusted_workload is not set.
  38. runtime = "/usr/bin/runc"
  39. # runtime_untrusted_workload is the OCI compatible runtime used for untrusted
  40. # container workloads. This is an optional setting, except if
  41. # default_container_trust is set to "untrusted".
  42. runtime_untrusted_workload = ""
  43. # default_workload_trust is the default level of trust crio puts in container
  44. # workloads. It can either be "trusted" or "untrusted", and the default
  45. # is "trusted".
  46. # Containers can be run through different container runtimes, depending on
  47. # the trust hints we receive from kubelet:
  48. # - If kubelet tags a container workload as untrusted, crio will try first to
  49. # run it through the untrusted container workload runtime. If it is not set,
  50. # crio will use the trusted runtime.
  51. # - If kubelet does not provide any information about the container workload trust
  52. # level, the selected runtime will depend on the default_container_trust setting.
  53. # If it is set to "untrusted", then all containers except for the host privileged
  54. # ones, will be run by the runtime_untrusted_workload runtime. Host privileged
  55. # containers are by definition trusted and will always use the trusted container
  56. # runtime. If default_container_trust is set to "trusted", crio will use the trusted
  57. # container runtime for all containers.
  58. default_workload_trust = "trusted"
  59. # no_pivot instructs the runtime to not use pivot_root, but instead use MS_MOVE
  60. no_pivot = false
  61. # conmon is the path to conmon binary, used for managing the runtime.
  62. conmon = "/usr/libexec/crio/conmon"
  63. # conmon_env is the environment variable list for conmon process,
  64. # used for passing necessary environment variable to conmon or runtime.
  65. conmon_env = [
  66. "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
  67. ]
  68. # selinux indicates whether or not SELinux will be used for pod
  69. # separation on the host. If you enable this flag, SELinux must be running
  70. # on the host.
  71. selinux = true
  72. # seccomp_profile is the seccomp json profile path which is used as the
  73. # default for the runtime.
  74. seccomp_profile = "/etc/crio/seccomp.json"
  75. # apparmor_profile is the apparmor profile name which is used as the
  76. # default for the runtime.
  77. apparmor_profile = "crio-default"
  78. # cgroup_manager is the cgroup management implementation to be used
  79. # for the runtime.
  80. cgroup_manager = "systemd"
  81. # hooks_dir_path is the oci hooks directory for automatically executed hooks
  82. hooks_dir_path = "/usr/share/containers/oci/hooks.d"
  83. # default_mounts is the mounts list to be mounted for the container when created
  84. default_mounts = [
  85. "/usr/share/rhel/secrets:/run/secrets",
  86. ]
  87. # pids_limit is the number of processes allowed in a container
  88. pids_limit = 1024
  89. # log_size_max is the max limit for the container log size in bytes.
  90. # Negative values indicate that no limit is imposed.
  91. log_size_max = 52428800
  92. # The "crio.image" table contains settings pertaining to the
  93. # management of OCI images.
  94. [crio.image]
  95. # default_transport is the prefix we try prepending to an image name if the
  96. # image name as we receive it can't be parsed as a valid source reference
  97. default_transport = "docker://"
  98. # pause_image is the image which we use to instantiate infra containers.
  99. pause_image = "kubernetes/pause"
  100. # pause_command is the command to run in a pause_image to have a container just
  101. # sit there. If the image contains the necessary information, this value need
  102. # not be specified.
  103. pause_command = "/pause"
  104. # signature_policy is the name of the file which decides what sort of policy we
  105. # use when deciding whether or not to trust an image that we've pulled.
  106. # Outside of testing situations, it is strongly advised that this be left
  107. # unspecified so that the default system-wide policy will be used.
  108. signature_policy = ""
  109. # image_volumes controls how image volumes are handled.
  110. # The valid values are mkdir and ignore.
  111. image_volumes = "mkdir"
  112. # insecure_registries is used to skip TLS verification when pulling images.
  113. insecure_registries = [
  114. {{ l_insecure_crio_registries|default("") }}
  115. ]
  116. # registries is used to specify a comma separated list of registries to be used
  117. # when pulling an unqualified image (e.g. fedora:rawhide).
  118. registries = [
  119. {{ l_additional_crio_registries|default("") }}
  120. ]
  121. # The "crio.network" table contains settings pertaining to the
  122. # management of CNI plugins.
  123. [crio.network]
  124. # network_dir is is where CNI network configuration
  125. # files are stored.
  126. network_dir = "/etc/cni/net.d/"
  127. # plugin_dir is is where CNI plugin binaries are stored.
  128. plugin_dir = "/opt/cni/bin/"