drop_etcdctl.yml 380 B

1234567891011121314
  1. ---
  2. - name: Install etcd for etcdctl
  3. package: name=etcd{{ '-' + etcd_version if etcd_version is defined else '' }} state=present
  4. when: not openshift_is_atomic | bool
  5. register: result
  6. until: result is succeeded
  7. - name: Configure etcd profile.d aliases
  8. template:
  9. dest: "/etc/profile.d/etcdctl.sh"
  10. src: etcdctl.sh.j2
  11. mode: 0755
  12. owner: root
  13. group: root