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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
Kubespray
Commits
e83010b7
Commit
e83010b7
authored
8 years ago
by
Smaine Kahlouch
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #445 from kubespray/caliconodechoice
Enable customization of calico-node docker image
parents
0dbde9e9
b92404fd
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
roles/network_plugin/calico/defaults/main.yml
+4
-0
4 additions, 0 deletions
roles/network_plugin/calico/defaults/main.yml
roles/network_plugin/calico/templates/calico-node.service.j2
+2
-2
2 additions, 2 deletions
roles/network_plugin/calico/templates/calico-node.service.j2
with
6 additions
and
2 deletions
roles/network_plugin/calico/defaults/main.yml
+
4
−
0
View file @
e83010b7
...
@@ -7,9 +7,13 @@ ipip: false
...
@@ -7,9 +7,13 @@ ipip: false
# cloud_provider can only be set to 'gce' or 'aws'
# cloud_provider can only be set to 'gce' or 'aws'
# cloud_provider:
# cloud_provider:
calicoctl_image_repo
:
calico/ctl
calicoctl_image_repo
:
calico/ctl
calicoctl_image_tag
:
"
{{
calico_version
}}"
calicoctl_image_tag
:
"
{{
calico_version
}}"
calico_node_image_repo
:
calico/node
calico_node_image_tag
:
"
{{
calico_version
}}"
# Set to true if your Hyperkube has all required components to run
# Set to true if your Hyperkube has all required components to run
# calico. This is required in order to run canalized calico.
# calico. This is required in order to run canalized calico.
use_hyperkube_cni
:
false
use_hyperkube_cni
:
false
...
...
This diff is collapsed.
Click to expand it.
roles/network_plugin/calico/templates/calico-node.service.j2
+
2
−
2
View file @
e83010b7
...
@@ -8,9 +8,9 @@ Wants=docker.socket etcd-proxy.service
...
@@ -8,9 +8,9 @@ Wants=docker.socket etcd-proxy.service
User=root
User=root
PermissionsStartOnly=true
PermissionsStartOnly=true
{% if inventory_hostname in groups['kube-node'] and peer_with_router|default(false)%}
{% if inventory_hostname in groups['kube-node'] and peer_with_router|default(false)%}
ExecStart={{ bin_dir }}/calicoctl node --ip={{ip | default(ansible_default_ipv4.address) }} --as={{ local_as }} --detach=false
ExecStart={{ bin_dir }}/calicoctl node --ip={{ip | default(ansible_default_ipv4.address) }} --as={{ local_as }} --detach=false
--node-image={{ calico_node_image_repo }}:{{ calico_node_image_tag }}
{% else %}
{% else %}
ExecStart={{ bin_dir }}/calicoctl node --ip={{ip | default(ansible_default_ipv4.address) }} --detach=false
ExecStart={{ bin_dir }}/calicoctl node --ip={{ip | default(ansible_default_ipv4.address) }} --detach=false
--node-image={{ calico_node_image_repo }}:{{ calico_node_image_tag }}
{% endif %}
{% endif %}
Restart=always
Restart=always
RestartSec=10s
RestartSec=10s
...
...
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