etcdctl.yml 289 B

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