1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-26 00:39:41 +02:00

feat(network-creation): enhance UX with macvlan driver for swarm mode (#2082) (#2122)

* feat(network-creation): macvlan driver for swarm

* refactor(network-creation): layout rework to make it simpler with MACVLAN and keep it consistent with other drivers

* fix(network-creation): MACVLAN - parent network card is now properly saved, names are not prefixed anymore and the --attachable option is now supported

* refactor(network-creation): PR macvlan review - rework of macvlan view + code optimisation

* fix(network-creation): disable attachable and internal options on macvlan config creation
This commit is contained in:
baron_l 2018-08-16 12:29:15 +02:00 committed by Anthony Lapenna
parent 8769fadd5c
commit bda5eac0c1
10 changed files with 559 additions and 154 deletions

View file

@ -23,4 +23,7 @@ function NetworkViewModel(data) {
this.NodeName = data.Portainer.Agent.NodeName;
}
}
}
this.ConfigFrom = data.ConfigFrom;
this.ConfigOnly = data.ConfigOnly;
}