Compare commits

..

No commits in common. "1fdb9651c090db6fada78301b149dc11299574ba" and "2773f537bca9fa7c71afd9527f1a5e5501ef00f6" have entirely different histories.

3 changed files with 3 additions and 4 deletions

View File

@ -5,11 +5,11 @@
- hosts: k8s
roles:
- role: docker
tags: [ k8s, docker, skip-pull ]
tags: [ k8s, docker ]
# Note: the master and all its nodes must run this role at the same time
# in order for the join token to be registered properly.
# Failure to do so will result in nodes not joining the cluster.
- role: k8s
vars:
kubernetes_enable_web_ui: yes
tags: [ k8s, skip-pull ]
tags: [ k8s ]

View File

@ -3,4 +3,3 @@ ansible_pull_boot_delay: 15min
ansible_pull_commit: master
ansible_pull_time: "*-*-* 01:00:00"
ansible_pull_playbook: site.yml
ansible_pull_skip_tags: "skip-pull"

View File

@ -11,7 +11,7 @@ User=ansible
Group=ansible
Type=oneshot
Environment=ANSIBLE_CONFIG=~/ansible-pull-repo/ansible-pull.cfg
ExecStart=ansible-pull --accept-host-key -U "{{ ansible_pull_repo }}" -C "{{ ansible_pull_commit }}" -d "~/ansible-pull-repo" --vault-password-file "~/ansiblevaultpass" "{{ ansible_pull_playbook }}" --skip-tags "{{ ansible_pull_skip_tags }}"
ExecStart=ansible-pull --accept-host-key -U "{{ ansible_pull_repo }}" -C "{{ ansible_pull_commit }}" -d "~/ansible-pull-repo" --vault-password-file "~/ansiblevaultpass" "{{ ansible_pull_playbook }}"
Restart=on-failure
RestartSec=90