File tree Expand file tree Collapse file tree
ansible/roles/runnable-domain-proxy/tasks Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010.DS_Store
1111ansible /roles /hipache /templates /runnable *
1212enviroments /** /k8 /** /configMaps /* cert *
13- environments /* /secrets /** /*
13+ environments /gamma /secrets /** /*
14+ environments /delta /secrets /** /*
1415* .retry
1516* .tfstate *
1617terraform /credentials.tfvars
Original file line number Diff line number Diff line change 11---
2+ - name : create chained cert
3+ tags : [ certs ]
4+ shell : |
5+ cat {{ domains_root }}/{{ domain }}/cert.pem > {{ domains_root }}/{{ domain }}/chained.pem
6+ echo "" >> {{ domains_root }}/{{ domain }}/chained.pem # Add newline
7+ cat {{ domains_root }}/{{ domain }}/ca.pem > {{ domains_root }}/{{ domain }}/chained.pem
8+
9+ - name : create dhparam.pem
10+ tags : [ certs ]
11+ command : openssl dhparam -out {{ domains_root }}/{{ domain }}/dhparam.pem 2048
12+
213- set_fact :
314 ca_data : " {{ lookup('file', '{{ domains_root }}/{{ domain }}/ca.pem') }}"
415- set_fact :
819- set_fact :
920 chained_data : " {{ lookup('file', '{{ domains_root }}/{{ domain }}/chained.pem') }}"
1021- set_fact :
22+ # NOTE: We currently have no way of generating this file
1123 dhparam_data : " {{ lookup('file', '{{ domains_root }}/{{ domain }}/dhparam.pem') }}"
1224
1325- name : create configMap folder
You can’t perform that action at this time.
0 commit comments