Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kubespray
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
Kubespray
Commits
2c816f66
Commit
2c816f66
authored
9 years ago
by
Smaine Kahlouch
Browse files
Options
Downloads
Patches
Plain Diff
Check calico network pool
parent
d585ceaf
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
roles/network_plugin/tasks/calico.yml
+35
-5
35 additions, 5 deletions
roles/network_plugin/tasks/calico.yml
with
35 additions
and
5 deletions
roles/network_plugin/tasks/calico.yml
+
35
−
5
View file @
2c816f66
---
-
name
:
Calico | Install calicoctl bin
copy
:
src
=
{{ local_release_dir }}/calico/bin/calicoctl
dest
=
{{ bin_dir }}
mode
=
0755
src
:
"
{{
local_release_dir
}}/calico/bin/calicoctl
"
dest
:
"
{{
bin_dir
}}
"
mode
:
0755
notify
:
restart calico-node
-
name
:
Calico | Create calicoctl symlink (needed by kubelet)
file
:
src=/usr/local/bin/calicoctl dest=/usr/bin/calicoctl state=link
file
:
src
:
/usr/local/bin/calicoctl
dest
:
/usr/bin/calicoctl
state
:
link
-
name
:
Calico | Configure calico-node desired pool
-
name
:
Calico | Check if calico network pool has already been configured
uri
:
url
:
"
http://127.0.0.1:2379/v2/keys/calico/v1/ipam/v4/pool"
return_content
:
yes
status_code
:
200,404
register
:
calico_conf
run_once
:
true
delegate_to
:
"
{{
groups['etcd'][0]
}}"
-
name
:
Calico | Configure calico network pool
shell
:
calicoctl pool add {{ kube_pods_subnet }}
environment
:
ETCD_AUTHORITY
:
"
{{
groups['etcd'][0]
}}:2379"
run_once
:
true
when
:
calico_conf.status ==
404
delegate_to
:
"
{{
groups['etcd'][0]
}}"
-
name
:
Calico | Get calico configuration from etcd
uri
:
url
:
"
http://127.0.0.1:2379/v2/keys/calico/v1/ipam/v4/pool"
return_content
:
yes
register
:
calico_pools
run_once
:
true
delegate_to
:
"
{{
groups['etcd'][0]
}}"
-
name
:
Calico | Check if calico pool is properly configured
fail
:
msg
:
'
Only
one
network
pool
must
be
configured
and
it
must
be
the
subnet
{{
kube_pods_subnet
}}.
Please
erase
calico
configuration
and
run
the
playbook
again
("etcdctl
rm
--recursive
/calico/v1/ipam/v4/pool")'
when
:
( calico_pools.json['node']['nodes'] | length > 1 ) or
( not calico_pools.json['node']['nodes'][0]['key'] | search(".*{{ kube_pods_subnet | ipaddr('network') }}.*") )
run_once
:
true
delegate_to
:
"
{{
groups['etcd'][0]
}}"
-
name
:
Calico | Write calico-node systemd init file
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment