Skip to content
Snippets Groups Projects
Commit 639010b3 authored by Kevin Schuck's avatar Kevin Schuck
Browse files

Uses environment vars for etcd cert paths

parent 6f9f80ac
No related branches found
No related tags found
No related merge requests found
...@@ -50,8 +50,6 @@ ...@@ -50,8 +50,6 @@
command: |- command: |-
{{ bin_dir }}/etcdctl \ {{ bin_dir }}/etcdctl \
--endpoints={{ etcd_access_addresses }} \ --endpoints={{ etcd_access_addresses }} \
--cert={{ etcd_cert_dir }}/admin-{{ groups['etcd'][0] }}.pem \
--key={{ etcd_cert_dir }}/admin-{{ groups['etcd'][0] }}-key.pem \
put /calico/bgp/v1/rr_v4/{{ rr_ip }} \ put /calico/bgp/v1/rr_v4/{{ rr_ip }} \
'{ '{
"ip": "{{ rr_ip }}", "ip": "{{ rr_ip }}",
...@@ -59,6 +57,8 @@ ...@@ -59,6 +57,8 @@
}' }'
environment: environment:
ETCDCTL_API: 3 ETCDCTL_API: 3
ETCDCTL_CERT: "{{ etcd_cert_dir }}/admin-{{ groups['etcd'][0] }}.pem"
ETCDCTL_KEY: "{{ etcd_cert_dir }}/admin-{{ groups['etcd'][0] }}-key.pem"
retries: 4 retries: 4
delay: "{{ retry_stagger | random + 3 }}" delay: "{{ retry_stagger | random + 3 }}"
delegate_to: "{{groups['etcd'][0]}}" delegate_to: "{{groups['etcd'][0]}}"
...@@ -69,13 +69,14 @@ ...@@ -69,13 +69,14 @@
command: |- command: |-
{{ bin_dir }}/etcdctl \ {{ bin_dir }}/etcdctl \
--peers={{ etcd_access_addresses }} \ --peers={{ etcd_access_addresses }} \
--cert-file {{ etcd_cert_dir }}/admin-{{ groups['etcd'][0] }}.pem \
--key-file {{ etcd_cert_dir }}/admin-{{ groups['etcd'][0] }}-key.pem \
set /calico/bgp/v1/rr_v4/{{ rr_ip }} \ set /calico/bgp/v1/rr_v4/{{ rr_ip }} \
'{ '{
"ip": "{{ rr_ip }}", "ip": "{{ rr_ip }}",
"cluster_id": "{{ cluster_id }}" "cluster_id": "{{ cluster_id }}"
}' }'
environment:
ETCDCTL_CERT_FILE: "{{ etcd_cert_dir }}/admin-{{ groups['etcd'][0] }}.pem"
ETCDCTL_KEY_FILE: "{{ etcd_cert_dir }}/admin-{{ groups['etcd'][0] }}-key.pem"
retries: 4 retries: 4
delay: "{{ retry_stagger | random + 3 }}" delay: "{{ retry_stagger | random + 3 }}"
delegate_to: "{{groups['etcd'][0]}}" delegate_to: "{{groups['etcd'][0]}}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment