deploy-envoy-proxy

Step

  1. create file deploy-envoy.yml
- hosts: envoy
  become: yes
  roles:
    - deploy-envoy-proxy
  1. create file inventory
[envoy]
192.168.0.5

[all:vars]
ansible_user=user
ansible_become_pass=password
  1. mkdir roles
  2. cd roles
  3. git clone https://github.com/doko89/deploy-envoy-proxy.git
  4. cd ..
  5. ansible-playbook -i inventory deploy-envoy.yml