Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[specific ci=Group11-Upgrade] Reconfigure VM display name #4134

Merged
merged 58 commits into from
Mar 23, 2017

Conversation

chengwang86
Copy link
Contributor

@chengwang86 chengwang86 commented Mar 2, 2017

Fixes #3972, #4075

This PR is the first step for docker rename support.

  • added ExecutorConfigCommon in container_vm.go with the property of "name" setting to "hidden", so that the containerVM's common/name could be persisted to the vmx file while the user performs docker rename on a running containerVM

  • /etc/hosts does not contain containerName anymore since common/name is set to "hidden". Therefore, we don't need to update /etc/hosts while renaming a container. This will solve tether should update (instead of appending) containerName in /etc/hosts after changing the VM name in guestinfo  #4075

  • when creating the containerVM, set the VM display name to containerName-containerShortID and datastore folder name to containerID for non-vsan setup, and set both names to containerName-containerShortID for vsan setup

  • Updated all the relevant test cases where the containerVM's display name does not match with the new naming convention

  • added a test case in 1-04-Docker-Create.robot: After creating a container, check that the VM displayname=containerName-shortID and datatstore folder name=containerID

  • added a plugin for VCH upgrade since we changed the scope of common.name of the VCH

  • added a plugin for containerVM data migration since we changed the scope of common.name of containerVMs (relies on Migrate container configuration in portlayer in memory #4146 )

  • in vicadmin, obtain the VCH name from vsphere instead of from within the VCH (since the VCH hostname is hidden)

@chengwang86 chengwang86 changed the title [full ci] WIP: VM reconfiguration right after creation [specific ci=8-02-OOB-VM-Register] WIP: VM reconfiguration right after creation Mar 3, 2017
@chengwang86 chengwang86 changed the title [specific ci=8-02-OOB-VM-Register] WIP: VM reconfiguration right after creation [specific ci=Group6-VIC-Machine] WIP: VM reconfiguration right after creation Mar 3, 2017
@chengwang86 chengwang86 changed the title [specific ci=Group6-VIC-Machine] WIP: VM reconfiguration right after creation [specific ci=Group12-VCH-BC] WIP: VM reconfiguration right after creation Mar 3, 2017
@chengwang86 chengwang86 changed the title [specific ci=Group12-VCH-BC] WIP: VM reconfiguration right after creation [specific ci=Group9-VIC-Admin] WIP: VM reconfiguration right after creation Mar 6, 2017
@@ -44,6 +44,21 @@ type Common struct {
Notes string `vic:"0.1" scope:"hidden" key:"notes"`
}

// Common data (specifically for a containerVM) between managed entities, across execution environments.
type Common2 struct {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is the thought process behind naming this Common2, I just want to be sure that there isn't a better or more appropriate name for this.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sgairo We want to persist the name in Common while the containeVM is still running, so we need to set the property of name to hidden. In order not to mess up with the original Common which might require read-only name by other objects, we create common2 instead.

@chengwang86 chengwang86 changed the title [specific ci=Group9-VIC-Admin] WIP: VM reconfiguration right after creation [specific ci=Group9-VIC-Admin] WIP: Reconfigure VM display name Mar 6, 2017
@chengwang86 chengwang86 changed the title [specific ci=Group9-VIC-Admin] WIP: Reconfigure VM display name [specific ci=Group11-Upgrade] WIP: Reconfigure VM display name Mar 6, 2017
@chengwang86 chengwang86 changed the title [specific ci=Group11-Upgrade] WIP: Reconfigure VM display name [full ci] WIP: Reconfigure VM display name Mar 8, 2017
@chengwang86 chengwang86 changed the title [full ci] WIP: Reconfigure VM display name [full ci] Reconfigure VM display name Mar 8, 2017
continue
}
if err != nil {
errs = append(errs, err.Error())
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if error happens, we should continue to avoid delete vch by mistake

@@ -34,10 +36,10 @@ func setUp() {
// register sample plugin into test
log.SetLevel(log.DebugLevel)
trace.Logger.Level = log.DebugLevel
version.MaxPluginVersion = 1
version.MaxPluginVersion = 4
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

version.MaxPluginVersion = version.MaxPluginVersion + 1

@@ -31,7 +31,7 @@ import (
// If only a couple of items changed in the configuration, you don't have to copy all VirtualContainerHost. Only define the few items used by
// this upgrade plugin will simplify the extraconfig encoding/decoding process
const (
version = 1
version = 4
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why do you need to change this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@emlin No need to do this. I will fix it.

import (
_ "github.com/vmware/vic/pkg/version/plugin2"
_ "github.com/vmware/vic/pkg/version/plugin3"
)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add new line

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

plugin sounds really bad, IMHO this should be migrator

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm.. migrator is good, but I have used that in another place. 😢

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

then lets rename all in a separate PR :)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

gonna need a new name for the original migrator as well

}

fullName := fmt.Sprintf("%s-%s", prettyName, shortID)
task, err := c.vm.VirtualMachine.Rename(ctx, fullName)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

using vm.WaitForResult method, that will retry for TaskInProgress error

@@ -35,6 +35,7 @@ import (
"github.com/vmware/vic/pkg/vsphere/vm"

log "github.com/Sirupsen/logrus"
"github.com/docker/docker/pkg/stringid"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we have portlayer rely on docker package?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are right. I will remove this from portlayer.

self2 := vm.NewVirtualMachineFromVM(ctx, sess, self)
vchName, err = self2.Name(ctx)
if err != nil {
log.Infof("Unable to get VCH name: %s", err)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if err != nil, vchname will be ""

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@emlin No, it will be VCH instead of "".

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How? You have reset vchName at line 226

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it will be "". In any case you should return an error from this function if err != nil.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if err != nil {
vchName = defaultVchName
...
}

I think it's fine not to return err since the original cod just attempts to get a name and if not present, then just set to "VCH"

Notes string `vic:"0.1" scope:"hidden" key:"notes"`
}

type NewVirtualContainerHostConfigSpec struct {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this looks like the method name to create struct VirtualContainerHostConfigSpec

@chengwang86 chengwang86 merged commit 27186d0 into vmware:master Mar 23, 2017
hickeng added a commit to hickeng/vic that referenced this pull request May 13, 2020
The Name field was changed to be hidden from the guest in vmware#4134 to
support docker rename. This was a compromise needed due to an ESX
vigor bug, see vmware#5533.

This *requires* that users be on a version of ESX that has the fix
or bad things may happen to cVM configurations. I have not tracked
down what build versions that entails and have not code a check
mechanism.

This change has the effect of the hostname of the VCH endpointVM
being set to the name of the VCH.
It also allows additional live reconfiguration such as hotadd to
a bridge network, in general modification of all container
configuration live is possible, if not necessarily applied.
ading007 pushed a commit to ading007/vic that referenced this pull request Jun 1, 2020
The Name field was changed to be hidden from the guest in vmware#4134 to
support docker rename. This was a compromise needed due to an ESX
vigor bug, see vmware#5533.

This *requires* that users be on a version of ESX that has the fix
or bad things may happen to cVM configurations. I have not tracked
down what build versions that entails and have not code a check
mechanism.

This change has the effect of the hostname of the VCH endpointVM
being set to the name of the VCH.
It also allows additional live reconfiguration such as hotadd to
a bridge network, in general modification of all container
configuration live is possible, if not necessarily applied.
ading007 pushed a commit to ading007/vic that referenced this pull request Jun 1, 2020
The Name field was changed to be hidden from the guest in vmware#4134 to
support docker rename. This was a compromise needed due to an ESX
vigor bug, see vmware#5533.

This *requires* that users be on a version of ESX that has the fix
or bad things may happen to cVM configurations. I have not tracked
down what build versions that entails and have not code a check
mechanism.

This change has the effect of the hostname of the VCH endpointVM
being set to the name of the VCH.
It also allows additional live reconfiguration such as hotadd to
a bridge network, in general modification of all container
configuration live is possible, if not necessarily applied.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.