mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 07:19:41 +02:00
feat(vic): fix multiple issues when managing a VIC engine (#1069)
This commit is contained in:
parent
e96e615761
commit
e5666dfdf2
13 changed files with 43 additions and 35 deletions
|
@ -16,7 +16,11 @@ angular.module('portainer.helpers')
|
|||
}
|
||||
} else {
|
||||
if (!info.Swarm || _.isEmpty(info.Swarm.NodeID)) {
|
||||
mode.provider = 'DOCKER_STANDALONE';
|
||||
if (info.ID === 'vSphere Integrated Containers') {
|
||||
mode.provider = 'VMWARE_VIC';
|
||||
} else {
|
||||
mode.provider = 'DOCKER_STANDALONE';
|
||||
}
|
||||
} else {
|
||||
mode.provider = 'DOCKER_SWARM_MODE';
|
||||
if (info.Swarm.ControlAvailable) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue