7 lines
180 B
Plaintext
7 lines
180 B
Plaintext
|
#!/bin/bash
|
||
|
DATASTORE_TYPE=kubernetes \
|
||
|
{% if inventory_hostname in groups['kube-master'] %}
|
||
|
KUBECONFIG={{ kube_config_dir }}/admin.conf \
|
||
|
{% endif %}
|
||
|
{{ bin_dir }}/calicoctl "$@"
|