1
0
mirror of https://github.com/rancher/os.git synced 2025-04-27 19:15:23 +00:00
os/os-config.tpl.yml

436 lines
12 KiB
YAML
Raw Permalink Normal View History

rancher:
shutdown_timeout: 60
http_load_retries: 6
environment:
VERSION: {{.VERSION}}
SUFFIX: {{.SUFFIX}}
REGISTRY_DOMAIN: "docker.io"
defaults:
hostname: {{.HOSTNAME_DEFAULT}}
{{if eq "amd64" .ARCH -}}
docker:
engine: {{.USER_DOCKER_ENGINE_VERSION}}
{{else -}}
docker:
engine: {{.USER_DOCKER_ENGINE_VERSION}}
{{end -}}
network:
2018-10-22 02:11:12 +00:00
dhcp_timeout: 10
dns:
nameservers: [8.8.8.8, 8.8.4.4]
system_docker_logs: /var/log/system-docker.log
ssh:
daemon: true
hypervisor_service: true
2018-12-14 07:39:41 +00:00
services_include:
{{- if eq "true" .AZURE_SERVICE}}
2018-12-14 07:39:41 +00:00
waagent: true
{{- end}}
2019-01-22 02:00:55 +00:00
{{- if eq "true" .PROXMOXVE_SERVICE}}
qemu-guest-agent: true
{{- end}}
bootstrap:
bootstrap:
image: {{.OS_REPO}}/os-bootstrap:{{.VERSION}}{{.SUFFIX}}
command: ros-bootstrap
labels:
io.rancher.os.detach: "false"
io.rancher.os.scope: system
log_driver: json-file
net: none
privileged: true
volumes:
- /dev:/host/dev
- /lib/modules:/lib/modules
- /lib/firmware:/lib/firmware
- /usr/bin/ros:/usr/bin/ros:ro
- /usr/bin/ros:/usr/bin/ros-bootstrap:ro
- /usr/share/ros:/usr/share/ros:ro
- /var/lib/rancher:/var/lib/rancher:ro
- /var/log:/var/log
2016-11-09 19:08:30 +00:00
cloud_init_services:
cloud-init:
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
command: cloud-init-save
labels:
io.rancher.os.detach: "false"
io.rancher.os.scope: system
log_driver: json-file
net: host
uts: host
pid: host
ipc: host
privileged: true
volumes:
- /etc/resolv.conf:/etc/resolv.conf
2016-11-09 19:08:30 +00:00
- /dev:/host/dev
- /etc/ssl/certs/ca-certificates.crt:/etc/ssl/certs/ca-certificates.crt.rancher
- /lib/modules:/lib/modules
- /lib/firmware:/lib/firmware
- /usr/bin/ros:/usr/bin/ros:ro
- /usr/bin/ros:/usr/bin/cloud-init-save
- /usr/share/ros:/usr/share/ros:ro
- /var/lib/rancher:/var/lib/rancher
- /var/lib/rancher/conf:/var/lib/rancher/conf
- /var/log:/var/log
bootstrap_docker:
bridge: none
2018-02-27 09:49:24 +00:00
storage_driver: overlay2
restart: false
graph: /var/lib/system-docker
group: root
2016-10-30 19:07:55 +00:00
host: ["unix:///var/run/system-docker.sock"]
userland_proxy: false
2018-12-18 08:47:42 +00:00
console: {{.OS_CONSOLE}}
cloud_init:
datasources:
- configdrive:/media/config-2
repositories:
core:
2016-07-01 17:13:52 +00:00
url: {{.OS_SERVICES_REPO}}/{{.REPO_VERSION}}
state:
fstype: auto
oem_fstype: auto
oem_dev: LABEL=RANCHER_OEM
boot_fstype: auto
boot_dev: LABEL=RANCHER_BOOT
2018-09-14 08:34:09 +00:00
rngd: true
sysctl:
fs.file-max: 1000000000
services:
2018-02-27 09:49:24 +00:00
command-volumes:
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
command: echo
labels:
2018-02-27 09:49:24 +00:00
io.rancher.os.createonly: "true"
io.rancher.os.scope: system
2018-02-27 09:49:24 +00:00
log_driver: json-file
net: none
privileged: true
2018-02-27 09:49:24 +00:00
read_only: true
volumes:
- /usr/bin/ros:/usr/bin/ros:ro
- /usr/bin/system-docker:/usr/bin/system-docker:ro
- /usr/bin/system-docker-runc:/usr/bin/system-docker-runc:ro
system-volumes:
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
command: echo
labels:
io.rancher.os.createonly: "true"
io.rancher.os.scope: system
log_driver: json-file
net: none
privileged: true
read_only: true
volumes:
- /dev:/host/dev
- /etc/docker:/etc/docker
- /etc/hosts:/etc/hosts
- /etc/logrotate.d:/etc/logrotate.d
- /etc/resolv.conf:/etc/resolv.conf
- /etc/ssl/certs/ca-certificates.crt:/etc/ssl/certs/ca-certificates.crt.rancher
- /etc/selinux:/etc/selinux
- /lib/firmware:/lib/firmware
- /lib/modules:/lib/modules
- /run:/run
- /usr/share/ros:/usr/share/ros
2018-05-03 11:00:50 +00:00
- /var/lib/boot2docker:/var/lib/boot2docker
2018-02-27 09:49:24 +00:00
- /var/lib/rancher/cache:/var/lib/rancher/cache
- /var/lib/rancher/conf:/var/lib/rancher/conf
- /var/lib/rancher:/var/lib/rancher
2018-12-14 07:39:41 +00:00
- /var/lib/waagent:/var/lib/waagent
2018-02-27 09:49:24 +00:00
- /var/log:/var/log
- /var/run:/var/run
container-data-volumes:
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
command: echo
labels:
io.rancher.os.createonly: "true"
io.rancher.os.scope: system
log_driver: json-file
net: none
privileged: true
read_only: true
volumes:
- /var/lib/user-docker:/var/lib/docker
2018-06-27 04:08:32 +00:00
- /var/lib/m-user-docker:/var/lib/m-user-docker
2018-02-27 09:49:24 +00:00
user-volumes:
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
command: echo
labels:
io.rancher.os.createonly: "true"
io.rancher.os.scope: system
log_driver: json-file
net: none
privileged: true
read_only: true
volumes:
- /home:/home
- /opt:/opt
- /var/lib/kubelet:/var/lib/kubelet
media-volumes:
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
command: echo
labels:
io.rancher.os.createonly: "true"
io.rancher.os.scope: system
log_driver: json-file
net: none
privileged: true
read_only: true
volumes:
- /media:/media:shared
- /mnt:/mnt:shared
all-volumes:
2016-06-16 21:26:06 +00:00
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
command: echo
labels:
io.rancher.os.createonly: "true"
io.rancher.os.scope: system
io.docker.compose.rebuild: always
log_driver: json-file
net: none
privileged: true
read_only: true
volumes_from:
2015-10-04 06:07:56 +00:00
- container-data-volumes
- command-volumes
- media-volumes
- user-volumes
- system-volumes
2018-02-27 09:49:24 +00:00
{{if eq "amd64" .ARCH -}}
acpid:
image: {{.OS_REPO}}/os-acpid:{{.VERSION}}{{.SUFFIX}}
command: /usr/sbin/acpid -f
labels:
io.rancher.os.scope: system
net: host
uts: host
privileged: true
volumes_from:
- command-volumes
- system-volumes
{{end -}}
cloud-init-execute:
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
command: cloud-init-execute -pre-console
labels:
io.rancher.os.detach: "false"
io.rancher.os.scope: system
2016-11-09 19:08:30 +00:00
io.rancher.os.after: ntp
net: host
uts: host
privileged: true
volumes_from:
- system-volumes
2016-11-21 19:52:21 +00:00
volumes:
- /usr/bin/ros:/usr/bin/ros:ro
console:
2016-05-06 17:12:09 +00:00
image: {{.OS_REPO}}/os-console:{{.VERSION}}{{.SUFFIX}}
command: ros console-init
labels:
io.rancher.os.scope: system
2016-11-09 19:08:30 +00:00
io.rancher.os.after: cloud-init-execute
io.docker.compose.rebuild: always
io.rancher.os.console: default
environment:
- HTTP_PROXY
- HTTPS_PROXY
- NO_PROXY
net: host
uts: host
pid: host
ipc: host
privileged: true
restart: always
volumes_from:
- all-volumes
volumes:
- /usr/bin/iptables:/sbin/iptables:ro
logrotate:
image: {{.OS_REPO}}/os-logrotate:{{.VERSION}}{{.SUFFIX}}
command: /usr/sbin/logrotate -v /etc/logrotate.conf
labels:
io.rancher.os.createonly: "true"
io.rancher.os.scope: system
io.rancher.os.before: system-cron
cron.schedule: "@hourly"
uts: host
net: none
privileged: true
volumes_from:
- command-volumes
- system-volumes
network:
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
2016-11-09 19:08:30 +00:00
command: netconf
labels:
io.rancher.os.scope: system
2016-11-09 19:08:30 +00:00
io.rancher.os.after: udev
io.rancher.os.reloadconfig: "true"
net: host
uts: host
pid: host
privileged: true
volumes_from:
- system-volumes
2018-02-27 09:49:24 +00:00
- command-volumes
volumes:
- /usr/bin/iptables:/sbin/iptables:ro
ntp:
2016-06-16 21:26:06 +00:00
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
command: /bin/start_ntp.sh
labels:
io.rancher.os.scope: system
2016-11-09 19:08:30 +00:00
io.rancher.os.after: network
net: host
uts: host
privileged: true
restart: always
volumes_from:
- command-volumes
- system-volumes
preload-user-images:
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
command: ros preload-images
net: host
labels:
io.rancher.os.detach: "false"
2015-08-06 19:01:57 +00:00
io.rancher.os.scope: system
io.rancher.os.after: console
privileged: true
volumes_from:
- command-volumes
- system-volumes
syslog:
image: {{.OS_REPO}}/os-syslog:{{.VERSION}}{{.SUFFIX}}
2016-11-03 23:43:41 +00:00
command: rsyslogd -n
labels:
io.rancher.os.scope: system
log_driver: json-file
net: host
uts: host
privileged: true
restart: always
volumes_from:
- command-volumes
- system-volumes
system-cron:
2018-03-15 09:34:57 +00:00
{{if eq "amd64" .ARCH -}}
image: rancher/container-crontab:v0.4.0
2018-03-15 09:34:57 +00:00
{{else -}}
image: niusmallnan/container-crontab:v0.4.0{{.SUFFIX}}
{{end -}}
labels:
io.rancher.os.scope: system
uts: host
net: none
privileged: true
restart: always
volumes:
- /var/run/system-docker.sock:/var/run/docker.sock
environment:
DOCKER_API_VERSION: "1.22"
2015-08-11 05:57:15 +00:00
udev-cold:
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
command: ros udev-settle
2015-08-11 05:57:15 +00:00
labels:
io.rancher.os.detach: "false"
2015-08-11 05:57:15 +00:00
io.rancher.os.scope: system
net: host
uts: host
privileged: true
volumes_from:
- command-volumes
2015-08-11 05:57:15 +00:00
- system-volumes
udev:
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
command: udevd
labels:
io.rancher.os.detach: "true"
io.rancher.os.scope: system
io.rancher.os.after: udev-cold
net: host
uts: host
privileged: true
restart: always
volumes_from:
- command-volumes
- system-volumes
docker:
{{if eq "amd64" .ARCH -}}
image: {{.OS_REPO}}/os-docker:{{.USER_DOCKER_VERSION}}{{.SUFFIX}}
{{else -}}
image: {{.OS_REPO}}/os-docker:{{.USER_DOCKER_VERSION}}{{.SUFFIX}}
{{end -}}
command: ros user-docker
environment:
- HTTP_PROXY
- HTTPS_PROXY
- NO_PROXY
labels:
io.rancher.os.scope: system
io.rancher.os.after: console
net: host
pid: host
ipc: host
uts: host
privileged: true
restart: always
volumes_from:
- all-volumes
2016-09-09 16:06:23 +00:00
volumes:
- /sys:/host/sys
- /var/lib/system-docker:/var/lib/system-docker:shared
2019-01-30 05:32:08 +00:00
subscriber:
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
command: os-subscriber
environment:
- IN_DOCKER=true
labels:
io.rancher.os.scope: system
io.rancher.os.after: console
cron.schedule: "0 0 3 * * ?"
privileged: true
pid: host
ipc: host
net: host
uts: host
volumes_from:
- command-volumes
- system-volumes
volumes:
- /sys:/host/sys
system_docker:
2016-06-01 04:38:10 +00:00
exec: true
2018-02-27 09:49:24 +00:00
storage_driver: overlay2
bip: 172.18.42.1/16
restart: false
graph: /var/lib/system-docker
group: root
2016-10-30 19:07:55 +00:00
host: ["unix:///var/run/system-docker.sock"]
pid_file: /var/run/system-docker.pid
exec_root: /var/run/system-docker
config_file: /etc/docker/system-docker.json
userland_proxy: false
log_opts:
max-size: 25m
max-file: 2
upgrade:
url: {{.OS_RELEASES_YML}}/releases{{.SUFFIX}}.yml
2016-05-06 17:12:09 +00:00
image: {{.OS_REPO}}/os
2019-01-30 05:32:08 +00:00
policy: download
docker:
{{if eq "amd64" .ARCH -}}
engine: {{.USER_DOCKER_ENGINE_VERSION}}
{{else -}}
engine: {{.USER_DOCKER_ENGINE_VERSION}}
{{end -}}
group: docker
2016-10-30 19:07:55 +00:00
host: ["unix:///var/run/docker.sock"]
log_opts:
max-size: 25m
max-file: 2
tls_args: [--tlsverify, --tlscacert=/etc/docker/tls/ca.pem, --tlscert=/etc/docker/tls/server-cert.pem, --tlskey=/etc/docker/tls/server-key.pem,
'-H=0.0.0.0:2376']