drop_etcdctl.yml 338 B

123456789101112
  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.common.is_atomic | bool
  5. - name: Configure etcd profile.d alises
  6. template:
  7. dest: "/etc/profile.d/etcdctl.sh"
  8. src: etcdctl.sh.j2
  9. mode: 0755
  10. owner: root
  11. group: root