Skip to content

Commit

Permalink
Add exclusion group support to update play
Browse files Browse the repository at this point in the history
  • Loading branch information
teddyphreak committed Mar 1, 2024
1 parent e45709e commit e522713
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
namespace: nephelaiio
name: mongodb
version: 0.2.14
version: 0.2.15
readme: README.md
authors:
- Ted Cook <[email protected]>
Expand Down
6 changes: 3 additions & 3 deletions playbooks/update.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
- name: Update config nodes
serial: 1
hosts: "{{ __mongodb_config }}"
hosts: "{{ __mongodb_config }}:!mongodb_update_skip"
become: true
vars_files:
- main.yml
Expand Down Expand Up @@ -29,7 +29,7 @@

- name: Update shard1 nodes
serial: 1
hosts: "{{ __mongodb_shard1 }}"
hosts: "{{ __mongodb_shard1 }}:!mongodb_update_skip"
become: true
vars_files:
- main.yml
Expand All @@ -56,7 +56,7 @@


- name: Update Mongos nodes
hosts: "{{ __mongodb_mongos }}"
hosts: "{{ __mongodb_mongos }}:!mongodb_update_skip"
become: true
serial: 1
vars_files:
Expand Down
2 changes: 1 addition & 1 deletion roles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ roles:
scm: git
- name: mongodb
src: https://github.com/wpnops/ansible-role-mongodb.git
version: 0.1.27
version: 0.1.28
scm: git
- name: update
src: https://github.com/robertdebock/ansible-role-update.git
Expand Down

0 comments on commit e522713

Please sign in to comment.