Compare commits

..

No commits in common. "7016ab24642fbadfc4323761116d5a72a66635a5" and "24d69d8d662e922f67ca0d6d79647dfa4185117d" have entirely different histories.

2 changed files with 54 additions and 45 deletions

View File

@ -79,11 +79,11 @@
loop_control:
loop_var: outer_item
when: templates_Defined ==1 and outer_item.value.generic is not defined
register: file_changed
register: fileChanged
tags: always
- name: Set the flag to restart the container if file was changed
set_fact: container_restart='yes'
when: file_changed is defined and file_changed.changed
set_fact: containerRestart='yes'
when: fileChanged is defined and fileChanged.changed
tags: always
#Copy templates form a generic dir, allow ansible to search
@ -95,11 +95,11 @@
loop_control:
loop_var: outer_item
when: templates_Defined ==1 and outer_item.value.generic is defined
register: file_changed
register: fileChanged
tags: always
- name: Set the flag to restart the container if file was changed
set_fact: container_restart='yes'
when: file_changed is defined and file_changed.changed
set_fact: containerRestart='yes'
when: fileChanged is defined and fileChanged.changed
tags: always
- name: Append templated files to the mapping list
@ -141,11 +141,11 @@
loop_control:
loop_var: outer_item
when: files_Defined == 1 and outer_item.value.generic is not defined and outer_item.value.src_text is not defined
register: file_changed
register: fileChanged
tags: always
- name: Set the flag to restart the container if file was changed
set_fact: container_restart='yes'
when: file_changed is defined and file_changed.changed
set_fact: containerRestart='yes'
when: fileChanged is defined and fileChanged.changed
tags: always
#Copy files from a generic dir, allow ansible to search
- name: "Generic File mappings for {{ container_Name }}"
@ -156,11 +156,11 @@
loop_control:
loop_var: outer_item
when: files_Defined == 1 and outer_item.value.generic is defined and outer_item.value.src_text is not defined
register: file_changed
register: fileChanged
tags: always
- name: Set the flag to restart the container if file was changed
set_fact: container_restart='yes'
when: file_changed is defined and file_changed.changed
set_fact: containerRestart='yes'
when: fileChanged is defined and fileChanged.changed
tags: always
#Create files based on the suplied src_text param
@ -172,11 +172,11 @@
loop_control:
loop_var: outer_item
when: files_Defined == 1 and outer_item.value.src_text is defined
register: file_changed
register: fileChanged
tags: always
- name: Set the flag to restart the container if file was changed
set_fact: container_restart='yes'
when: file_changed is defined and file_changed.changed
set_fact: containerRestart='yes'
when: fileChanged is defined and fileChanged.changed
tags: always
- name: Append static remote files to the mapping list
@ -191,6 +191,9 @@
tags: always
#----------------------------------/FILES----------------------------------
#----------------------------------LOCAL----------------------------------
#Local files alreeady exist on the host, commonly local time and or netns for namespace, could also be locl disk drives?
#Nothing gets copied for local mappings, just defintiions added to the mapping list
@ -215,12 +218,12 @@
loop_control:
loop_var: outer_item
when: local_Defined == 1
register: file_changed
register: fileChanged
tags: always
- name: Set the flag to restart the container if file was changed
set_fact: container_restart='yes'
when: file_changed is defined and file_changed.changed
set_fact: containerRestart='yes'
when: fileChanged is defined and fileChanged.changed
tags: always
#----------------------------------/LOCAL----------------------------------
@ -238,12 +241,14 @@
tags: always
#----------------------------------/Check ENV----------------------------------
- name: Restart the container if file_changed is defined
set_fact: container_restart1='yes'
when: (container_restart is defined and container_restart=='yes') or (item.value.restart is defined and item.value.restart =='yes')
- name: Restart the container if fileChanged is defined
set_fact: containerRestart1='yes'
when: (containerRestart is defined and containerRestart=='yes') or (item.value.restart is defined and item.value.restart =='yes')
- name: "Container {{ container_Name }}"
become: true
become: yes
docker_container:
name: "{{ container_Name }}"
hostname: "{{ item.value.hostname | default(container_Name) }}"
@ -252,7 +257,7 @@
recreate: "{{ item.value.recreate | default('false') }}"
image: "{{ item.value.image }}"
state: "{{ item.value.start | default ('started') }}"
restart: "{{ container_restart1 | default ('no') }}"
restart: "{{ containerRestart1 | default ('no') }}"
restart_policy: "{{ item.value.restart_policy | default ('always') }}"
purge_networks: "{{ item.value.purge_networks | default ('yes') }}"
networks: "{{ net_checked }}"
@ -262,5 +267,9 @@
network_mode: "{{ item.value.network_mode | default ('default') }}"
shm_size: "{{ item.value.shm_size | default ('64M') }}"
ports: "{{ item.value.ports | default ([]) }}"
ulimits: "{{ item.value.ulimits | default ('') }}"
#log_driver: fluentd
#"{{item.value.ports | default ([json-file])}}"
#log_options:
# fluentd-sub-second-precision: true
# tag: myservice
tags: always