c58bd33af7
Since version 'v1.0.0-beta' calicoctl is written in Go and its API differs from old Python based utility. Added support of both old and new version of the utility.
13 lines
493 B
Django/Jinja
13 lines
493 B
Django/Jinja
#!/bin/bash
|
|
/usr/bin/docker run -i --privileged --rm \
|
|
--net=host --pid=host \
|
|
-e ETCD_ENDPOINTS={{ etcd_access_endpoint }} \
|
|
-e ETCD_CA_CERT_FILE=/etc/calico/certs/ca_cert.crt \
|
|
-e ETCD_CERT_FILE=/etc/calico/certs/cert.crt \
|
|
-e ETCD_KEY_FILE=/etc/calico/certs/key.pem \
|
|
-v /usr/bin/docker:/usr/bin/docker \
|
|
-v /var/run/docker.sock:/var/run/docker.sock \
|
|
-v /var/run/calico:/var/run/calico \
|
|
-v /etc/calico/certs:/etc/calico/certs:ro \
|
|
{{ calicoctl_image_repo }}:{{ calicoctl_image_tag}} \
|
|
$@
|