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
814760ba
Unverified
Commit
814760ba
authored
2 years ago
by
Kenichi Omichi
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Use blocks for macvlan tasks for each distribution (#8918)
For the code readability, this adds blocks for each distribution.
parent
14c0f368
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/macvlan/tasks/main.yml
+44
-41
44 additions, 41 deletions
roles/network_plugin/macvlan/tasks/main.yml
with
44 additions
and
41 deletions
roles/network_plugin/macvlan/tasks/main.yml
+
44
−
41
View file @
814760ba
...
...
@@ -27,62 +27,65 @@
notify
:
Macvlan | restart network
when
:
ansible_os_family in ["Debian"]
-
name
:
Macvlan | Install macvlan script on centos
copy
:
src
:
"
{{
item
}}"
dest
:
/etc/sysconfig/network-scripts/
owner
:
root
group
:
root
mode
:
"
0755"
with_fileglob
:
-
block
:
-
name
:
Macvlan | Install macvlan script on centos
copy
:
src
:
"
{{
item
}}"
dest
:
/etc/sysconfig/network-scripts/
owner
:
root
group
:
root
mode
:
"
0755"
with_fileglob
:
-
files/*
when
:
ansible_os_family == "RedHat"
-
name
:
Macvlan | Install post-up script on centos
copy
:
src
:
"
files/ifup-local"
dest
:
/sbin/
owner
:
root
group
:
root
mode
:
"
0755"
when
:
ansible_os_family == "RedHat" and
enable_nat_default_gateway
-
name
:
Macvlan | Install post-up script on centos
copy
:
src
:
"
files/ifup-local"
dest
:
/sbin/
owner
:
root
group
:
root
mode
:
"
0755"
when
:
enable_nat_default_gateway
-
name
:
Macvlan | Install network gateway interface on centos
template
:
src
:
"
{{
item.src
}}.j2"
dest
:
"
/etc/sysconfig/network-scripts/{{
item.dst
}}"
mode
:
0644
with_items
:
-
name
:
Macvlan | Install network gateway interface on centos
template
:
src
:
"
{{
item.src
}}.j2"
dest
:
"
/etc/sysconfig/network-scripts/{{
item.dst
}}"
mode
:
0644
with_items
:
-
{
src
:
centos-network-macvlan.cfg
,
dst
:
ifcfg-mac0
}
-
{
src
:
centos-routes-macvlan.cfg
,
dst
:
route-mac0
}
-
{
src
:
centos-postup-macvlan.cfg
,
dst
:
post-up-mac0
}
notify
:
Macvlan | restart network
notify
:
Macvlan | restart network
when
:
ansible_os_family == "RedHat"
-
name
:
Macvlan | Install service nat via gateway on Flatcar Container Linux
template
:
src
:
coreos-service-nat_ouside.j2
dest
:
/etc/systemd/system/enable_nat_ouside.service
mode
:
0644
when
:
ansible_os_family in ["Flatcar", "Flatcar Container Linux by Kinvolk"] and enable_nat_default_gateway
-
block
:
-
name
:
Macvlan | Install service nat via gateway on Flatcar Container Linux
template
:
src
:
coreos-service-nat_ouside.j2
dest
:
/etc/systemd/system/enable_nat_ouside.service
mode
:
0644
when
:
enable_nat_default_gateway
-
name
:
Macvlan | Enable service nat via gateway on Flatcar Container Linux
command
:
"
{{
item
}}"
with_items
:
-
name
:
Macvlan | Enable service nat via gateway on Flatcar Container Linux
command
:
"
{{
item
}}"
with_items
:
-
systemctl daemon-reload
-
systemctl enable enable_nat_ouside.service
when
:
ansible_os_family in ["Flatcar", "Flatcar Container Linux by Kinvolk"] and
enable_nat_default_gateway
when
:
enable_nat_default_gateway
-
name
:
Macvlan | Install network gateway interface on Flatcar Container Linux
template
:
src
:
"
{{
item.src
}}.j2"
dest
:
"
/etc/systemd/network/{{
item.dst
}}"
mode
:
0644
with_items
:
-
name
:
Macvlan | Install network gateway interface on Flatcar Container Linux
template
:
src
:
"
{{
item.src
}}.j2"
dest
:
"
/etc/systemd/network/{{
item.dst
}}"
mode
:
0644
with_items
:
-
{
src
:
coreos-device-macvlan.cfg
,
dst
:
macvlan.netdev
}
-
{
src
:
coreos-interface-macvlan.cfg
,
dst
:
output.network
}
-
{
src
:
coreos-network-macvlan.cfg
,
dst
:
macvlan.network
}
notify
:
Macvlan | restart network
notify
:
Macvlan | restart network
when
:
ansible_os_family in ["Flatcar", "Flatcar Container Linux by Kinvolk"]
-
name
:
Macvlan | Install cni definition for Macvlan
...
...
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