diff options
| author | Tobias Florek <tob@butter.sh> | 2015-09-23 13:51:41 +0200 | 
|---|---|---|
| committer | Scott Dodson <sdodson@redhat.com> | 2015-12-15 15:43:27 -0500 | 
| commit | a0b6fc7db1be2cf6190d982f90e96f4c39a4c699 (patch) | |
| tree | abab0b910d891a8b419b2231b3a52075ea1f0e49 /playbooks | |
| parent | e26eab4bdc817ef02a16e8b5c6c49e311a721e7b (diff) | |
| download | openshift-a0b6fc7db1be2cf6190d982f90e96f4c39a4c699.tar.gz openshift-a0b6fc7db1be2cf6190d982f90e96f4c39a4c699.tar.bz2 openshift-a0b6fc7db1be2cf6190d982f90e96f4c39a4c699.tar.xz openshift-a0b6fc7db1be2cf6190d982f90e96f4c39a4c699.zip | |
Initial containerization work from @ibotty
copied from https://github.com/eparis/kubernetes-ansible/blob/17f98edd7ff53e649b43e26822b8fbc0be42b233/roles/common/tasks/main.yml
Diffstat (limited to 'playbooks')
4 files changed, 4 insertions, 2 deletions
| diff --git a/playbooks/common/openshift-cluster/update_repos_and_packages.yml b/playbooks/common/openshift-cluster/update_repos_and_packages.yml index 190e2d862..6e4ad7d3f 100644 --- a/playbooks/common/openshift-cluster/update_repos_and_packages.yml +++ b/playbooks/common/openshift-cluster/update_repos_and_packages.yml @@ -8,5 +8,5 @@            ansible_distribution == "RedHat" and            lookup('oo_option', 'rhel_skip_subscription') | default(rhsub_skip, True) |              default('no', True) | lower in ['no', 'false'] -  - openshift_repos +  - {role: openshift_repos, when: not is_atomic}    - os_update_latest diff --git a/playbooks/common/openshift-etcd/config.yml b/playbooks/common/openshift-etcd/config.yml index 6dee196e3..a0dd330e7 100644 --- a/playbooks/common/openshift-etcd/config.yml +++ b/playbooks/common/openshift-etcd/config.yml @@ -87,7 +87,7 @@      when: etcd_server_certs_missing    roles:    - etcd -  - role: nickhammond.logrotate +  - { role: nickhammond.logrotate, when: not is_atomic }  - name: Delete temporary directory on localhost    hosts: localhost diff --git a/playbooks/common/openshift-master/config.yml b/playbooks/common/openshift-master/config.yml index dd638487a..453adb4ff 100644 --- a/playbooks/common/openshift-master/config.yml +++ b/playbooks/common/openshift-master/config.yml @@ -328,6 +328,7 @@    roles:    - openshift_master    - role: nickhammond.logrotate +    when: not is_atomic    - role: fluentd_master      when: openshift.common.use_fluentd | bool    post_tasks: diff --git a/playbooks/common/openshift-node/config.yml b/playbooks/common/openshift-node/config.yml index 69ccb0cb8..6eee75064 100644 --- a/playbooks/common/openshift-node/config.yml +++ b/playbooks/common/openshift-node/config.yml @@ -181,6 +181,7 @@    - role: flannel      when: openshift.common.use_flannel | bool    - role: nickhammond.logrotate +    when: not is_atomic    - role: fluentd_node      when: openshift.common.use_fluentd | bool    tasks: | 
