main.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. # tasks file for auth_proxy
  3. - name: setup iptables for auth proxy
  4. shell: >
  5. ( iptables -L INPUT | grep "{{ auth_proxy_rule_comment }} ({{ item }})" ) || \
  6. iptables -I INPUT 1 -p tcp --dport {{ item }} -j ACCEPT -m comment --comment "{{ auth_proxy_rule_comment }} ({{ item }})"
  7. become: true
  8. with_items:
  9. - "{{ auth_proxy_port }}"
  10. # Load the auth-proxy-image from local tar. Ignore any errors to handle the
  11. # case where the image is not built in
  12. - name: copy auth-proxy image
  13. copy: src={{ auth_proxy_binaries }}/auth-proxy-image.tar dest=/tmp/auth-proxy-image.tar
  14. when: auth_proxy_local_install == True
  15. - name: load auth-proxy image
  16. shell: docker load -i /tmp/auth-proxy-image.tar
  17. when: auth_proxy_local_install == True
  18. - name: create cert folder for proxy
  19. file: path=/var/contiv/certs state=directory
  20. - name: copy shell script for starting auth-proxy
  21. template: src=auth_proxy.j2 dest=/usr/bin/auth_proxy.sh mode=u=rwx,g=rx,o=rx
  22. - name: copy cert for starting auth-proxy
  23. copy: src=cert.pem dest=/var/contiv/certs/auth_proxy_cert.pem mode=u=rw,g=r,o=r
  24. - name: copy key for starting auth-proxy
  25. copy: src=key.pem dest=/var/contiv/certs/auth_proxy_key.pem mode=u=rw,g=r,o=r
  26. - name: copy systemd units for auth-proxy
  27. copy: src=auth-proxy.service dest=/etc/systemd/system/auth-proxy.service
  28. - name: start auth-proxy container
  29. systemd: name=auth-proxy daemon_reload=yes state=started enabled=yes