Sha256: 08b014187823467cad65fe765fb0a7e46aea67e6af33214ef6eb205de8a5437a
Contents?: true
Size: 1.9 KB
Versions: 6
Compression:
Stored size: 1.9 KB
Contents
#cloud-config hostname: <%= name %> write_files: - path: /etc/kontena-agent.env permissions: 0600 owner: root content: | KONTENA_URI="<%= master_uri %>" KONTENA_TOKEN="<%= grid_token %>" KONTENA_PEER_INTERFACE=eth1 KONTENA_VERSION=<%= version %> - path: /etc/systemd/system/docker.service.d/50-kontena.conf content: | [Service] Environment='DOCKER_OPTS=--insecure-registry="10.81.0.0/19" --bip="172.17.43.1/16"' coreos: units: - name: 00-eth.network runtime: true content: | [Match] Name=eth* [Network] DHCP=yes DNS=172.17.43.1 DNS=<%= dns_server %> DOMAINS=kontena.local [DHCP] UseDNS=false - name: 10-weave.network runtime: false content: | [Match] Type=bridge Name=weave* [Network] - name: kontena-agent.service command: start enable: true content: | [Unit] Description=kontena-agent After=network-online.target After=docker.service Description=Kontena Agent Documentation=http://www.kontena.io/ Requires=network-online.target Requires=docker.service [Service] Restart=always RestartSec=5 EnvironmentFile=/etc/kontena-agent.env ExecStartPre=-/usr/bin/docker stop kontena-agent ExecStartPre=-/usr/bin/docker rm kontena-agent ExecStartPre=/usr/bin/docker pull kontena/agent:${KONTENA_VERSION} ExecStart=/usr/bin/docker run --name kontena-agent \ -e KONTENA_URI=${KONTENA_URI} \ -e KONTENA_TOKEN=${KONTENA_TOKEN} \ -e KONTENA_PEER_INTERFACE=${KONTENA_PEER_INTERFACE} \ -v=/var/run/docker.sock:/var/run/docker.sock \ -v=/etc/kontena-agent.env:/etc/kontena.env \ --net=host \ kontena/agent:${KONTENA_VERSION}
Version data entries
6 entries across 6 versions & 1 rubygems