Procházet zdrojové kódy

Merge pull request #6755 from vrutkovs/packages-containerized

Use openshift_is_containerized instead of openshift_is_atomic when working with packages
Scott Dodson před 7 roky
rodič
revize
7411bdcabf
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      roles/etcd/tasks/auxiliary/drop_etcdctl.yml

+ 1 - 1
roles/etcd/tasks/auxiliary/drop_etcdctl.yml

@@ -1,7 +1,7 @@
 ---
 - name: Install etcd for etcdctl
   package: name=etcd{{ '-' + etcd_version if etcd_version is defined else '' }} state=present
-  when: not openshift_is_atomic | bool
+  when: not openshift_is_containerized | bool
   register: result
   until: result is succeeded