Update to 2022-08-06 13:00

This commit is contained in:
Daniel Berteaud
2022-08-06 13:00:16 +02:00
parent cb2305c394
commit 99b21a541e
9 changed files with 59 additions and 9 deletions

View File

@@ -10,9 +10,11 @@ nomad_archive_sha256: d908811cebe2a8373e93c4ad3d09af5c706241878ff3f21ee0f182b4ec
# List of plugins to install
nomad_plugins:
podman:
version: 0.4.0
archive_url: https://releases.hashicorp.com/nomad-driver-podman/0.4.0/nomad-driver-podman_0.4.0_linux_amd64.zip
sha256: f905f9c38db8cec1542b92f69233488d5bf94e30fe9a0fae9ac03b30c1e2cfea
containerd:
archive_url: https://github.com/Roblox/nomad-driver-containerd/releases/download/v0.9.3/containerd-driver
sha256: 7bbeda63a5e05724c8f8c6d05790fbc175acc89e4309c13839afc9716d4b39c2
# Root dir where Nomad will be installed
nomad_root_dir: /opt/nomad
@@ -102,6 +104,10 @@ nomad_base_conf:
enabled: False
podman:
enabled: False # Note on EL8, it cannot be used with docker as there are package conflicts, see https://bugs.centos.org/view.php?id=16892
containerd-driver:
enabled: False
containerd_runtime: io.containerd.runc.v2
allow_privileged: True
# Server related settings
server:
@@ -161,6 +167,10 @@ nomad_base_services:
proto: [tcp,udp]
src_ip: []
# advertise: x.x.x.x
dynamic:
port: 20000:32000
proto: [tcp,udp]
src_ip: []
nomad_extra_services: {}
nomad_host_services: {}
nomad_services: "{{ nomad_base_services | combine(nomad_extra_services, recursive=True) | combine(nomad_host_services, recursive=True) }}"