etcdctl.yml 270 B

123456789101112
  1. ---
  2. - name: Install etcd for etcdctl
  3. package: name=etcd state=present
  4. when: not openshift.common.is_atomic | bool
  5. - name: Configure etcd profile.d alises
  6. copy:
  7. src: etcdctl.sh
  8. dest: /etc/profile.d/etcdctl.sh
  9. mode: 0755
  10. owner: root
  11. group: root