k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
684 B
24 lines
684 B
---
|
|
- name: Write script for calico/docker bridge configuration
|
|
template: src=create_cbr.j2 dest=/etc/network/if-up.d/create_cbr mode=u+x
|
|
when: kube_network_plugin is defined and kube_network_plugin == "calico"
|
|
|
|
- name: Configure calico/docker bridge
|
|
command: /etc/network/if-up.d/create_cbr
|
|
when: kube_network_plugin is defined and kube_network_plugin == "calico"
|
|
|
|
- name: enable docker
|
|
service:
|
|
name: docker
|
|
enabled: yes
|
|
state: started
|
|
tags:
|
|
- docker
|
|
|
|
- meta: flush_handlers
|
|
|
|
#- name: login to arkena's docker registry
|
|
# shell : >
|
|
# docker login --username={{ dockerhub_user }}
|
|
# --password={{ dockerhub_pass }}
|
|
# --email={{ dockerhub_email }}
|