Skip to content

Commit

Permalink
missing string quotes breaking agents
Browse files Browse the repository at this point in the history
  • Loading branch information
vtog committed Oct 12, 2018
1 parent eb73660 commit 3ef2038
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion marathon/ansible/playbooks/deploy-mesos.yaml
Expand Up @@ -21,4 +21,4 @@
become: yes
gather_facts: no
tasks:
# - import_tasks: mesos-agent.yaml
- import_tasks: mesos-agent.yaml
6 changes: 3 additions & 3 deletions marathon/ansible/playbooks/mesos-agent.yaml
Expand Up @@ -35,17 +35,17 @@
- name: Configure mesos to use docker containers
copy:
dest: /etc/mesos-slave/containerizers
content: docker,mesos
content: "docker,mesos"

- name: Increase timeout for docker image pull
copy:
dest: /etc/mesos-slave/executor_registration_timeout
content: 5mins
content: "5mins"

- name: Allow non-marathon users ability to create jobs
copy:
dest: /etc/mesos-slave/switch_user
content: false
content: "false"

- name: Disable zookeeper
systemd:
Expand Down
1 change: 0 additions & 1 deletion marathon/ansible/playbooks/mesos-master.yaml
Expand Up @@ -61,7 +61,6 @@
copy:
dest: /etc/mesos-master/quorum
content: "{{ ((host_count | int) / 2) | round | int }}"
#content: "{{ ((groups['mesos-masters'] | length)/2) | round | int }}"

- name: Point zookeeper at the master instance
copy:
Expand Down

0 comments on commit 3ef2038

Please sign in to comment.