Skip to content
New issue

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

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

Already on GitHub? # to your account

Add linuxkit run azure #1933

Merged
merged 2 commits into from
Jun 5, 2017
Merged

Add linuxkit run azure #1933

merged 2 commits into from
Jun 5, 2017

Conversation

radu-matei
Copy link
Contributor

- What I did
Add linuxkit run azure functionality

- How I did it
Integrate with the Azure Go SDK

@GordonTheTurtle
Copy link
Collaborator

Please sign your commits following these rules:
https://github.com/moby/moby/blob/master/CONTRIBUTING.md#sign-your-work
The easiest way to do this is to amend the last commit:

$ git clone -b "run-azure" git@github.com:radu-matei/linuxkit.git somewhere
$ cd somewhere
$ git rebase -i HEAD~842354307328
editor opens
change each 'pick' to 'edit'
save the file and quit
$ git commit --amend -s --no-edit
$ git rebase --continue # and repeat the amend for each commit
$ git push -f

Amending updates the existing PR. You DO NOT need to open a new one.

fmt.Printf("USAGE: %s run azure [options] [name]\n\n", invoked)
fmt.Printf("'name' specifies either the name of an already uploaded\n")
fmt.Printf("VHD image or the full path to a image file which will be\n")
fmt.Printf("uploaded before it is run.\n\n")
Copy link
Member

Choose a reason for hiding this comment

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

thats a bit odd. push should always take a local file and upload it.


resourceGroupName := flags.String("resourceGroupName", "", "Name of resource group to be used for VM")
accountName := flags.String("accountName", "linuxkitstorage", "Name of the storage account")
imagePath := flags.String("imagePath", "", "Local path of the VHD file to be used as OS image")
Copy link
Member

Choose a reason for hiding this comment

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

this should just be the last argument on the command line, not a flag - see the other push examples.

fmt.Printf("'name' specifies either the name of an already uploaded\n")
fmt.Printf("Azure VM VHD or the full path to a image file which will be\n")
fmt.Printf("uploaded before it is run.\n\n")
fmt.Printf("Options:\n\n")
Copy link
Member

Choose a reason for hiding this comment

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

yes this is the same help text as above, I think it should be different

docs/azure.md Outdated
> This is a preliminary example image with SSHD and Docker services. In the future, there will be an `azure.yml` file in the `examples` directory

Create a new `dev.yml` file [based on the Azure example](../examples/azure.yml), generate a new SSH key and add it in the `yml`, then `moby build dev.yml`.
Create a new `azure.yml` file [based on the Azure example](../examples/azure.yml), generate a new SSH key and add it in the `yml`, then `moby build azure.yml`.
Copy link
Member

Choose a reason for hiding this comment

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

you can use the source functionality in the files section to get an ssh key from a file, rather than hard coding it now. (unfortunately this is not yet used by the other examples).

Azure has a metadata service for keys though? Should we add support for this to the metadata package?

@@ -127,16 +137,14 @@ func createStorageAccount(accountName, location string, resourceGroup resources.
func uploadVMImage(resourceGroupName string, accountName string, imagePath string) {
accountKeys, err := accountsClient.ListKeys(resourceGroupName, accountName)
if err != nil {
fmt.Println(err.Error())
log.Fatalf("Unable to retrieve storage account key")
log.Fatalf("Unable to retrieve storage account key: %s", err.Error())
Copy link
Member

@justincormack justincormack May 31, 2017

Choose a reason for hiding this comment

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

you can just use "blah : %v", err which will do the same thing more simply (its what we use elsewhere)

AdminPassword: to.StringPtr("DummyPassword!123"),
ComputerName: to.StringPtr(defaultComputerName),
AdminUsername: to.StringPtr(unusedAdminUsername),
AdminPassword: to.StringPtr(unusedPassword),
Copy link
Member

Choose a reason for hiding this comment

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

Still somewhat concerned about these - where are these documented? What exactly are they passwords for?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

User creation, SSH and passwords are managed by the Azure Linux Agent, which is not present in the images we create at the moment.

The only purpose for those values right now is for deployment validation. I am still thinking of a better way to achieve this.

Copy link
Member

Choose a reason for hiding this comment

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

Ah yes, ok. I think it is better to make the username and password "unused" and "unused" for now, if they can't be empty.

Copy link
Member

Choose a reason for hiding this comment

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

Or at least put a comment.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yeah, the password requirements are below (3/4 are mandatory):

Has lower characters
Has upper characters
Has a digit
Has a special character (Regex match [\W_])

Will add a comment.

Copy link
Member

Choose a reason for hiding this comment

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

ugh, yes a comment would be best then

fmt.Printf("'name' specifies the path (absolute or relative) of a\n")
fmt.Printf("VHD image be uploaded to an existing Azure Storage Account\n")
fmt.Printf("Options:\n\n")
flags.PrintDefaults()
}

resourceGroupName := flags.String("resourceGroupName", "", "Name of resource group to be used for VM")
accountName := flags.String("accountName", "linuxkitstorage", "Name of the storage account")
accountName := flags.String("accountName", "", "Name of the storage account")
Copy link
Member

Choose a reason for hiding this comment

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

this doesn't seem consistent with run below

storageAccountKeyArg := fmt.Sprintf("STORAGE_ACCOUNT_KEY=%s", *keys[0].Value)
vhdPath := fmt.Sprintf("VHD_PATH=/vhds/%s", image)

output, err := exec.Command("docker", "run", "-v", dockerMount, "-e", vhdPath, "-e", storageAccountNameArg, "-e", storageAccountKeyArg, "radumatei/azure-vhd-upload:alpine").CombinedOutput()
Copy link
Contributor Author

Choose a reason for hiding this comment

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

@justincormack The question still remains on the docker dependency.

Is this an urgent matter that I should address right now, or can I tackle other issues related to Azure (like opening ports on the VM, for example)?

Copy link
Member

Choose a reason for hiding this comment

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

Well I think it needs to be resolved before we merge probably...

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Removed the dependency on docker here

@rn
Copy link
Member

rn commented May 31, 2017

There shouldn't be an additional commit with the fixes to the previous commit

@@ -0,0 +1,101 @@
kernel:
Copy link
Member

Choose a reason for hiding this comment

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

can you base this on the most recent examples? A lot of the lines are no longer necessary. Also, most of the images used here are outdated.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Updated example to sshd.yml (for now)

flags := flag.NewFlagSet("azure", flag.ExitOnError)
invoked := filepath.Base(os.Args[0])
flags.Usage = func() {
fmt.Printf("USAGE: %s run azure [options] imagePath\n\n", invoked)
Copy link
Member

Choose a reason for hiding this comment

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

it's called imagePath here, but name for push

@radu-matei
Copy link
Contributor Author

@rneugeba Can't I just squash the commits just before we merge?

There is still some work to be done here, I would rather commit as I go and squash at the end. Is this ok?

@rn
Copy link
Member

rn commented May 31, 2017

sure

@justincormack
Copy link
Member

Needs to be rebased (use git fetch upstream; git rebase upstream/master not git merge and then it will be easier to squash and so on later...)

@ddebroy
Copy link

ddebroy commented Jun 1, 2017

@radu-matei Is it possible to just kick off https://hub.docker.com/r/docker4x/agent-azure/ from the VHD? As we discussed in another forum, it will take care of getting the WALinux Agent (so that the VM shows up with correct status in Portal) and set up SSHD as well. agent-azure is maintained by Docker.

@radu-matei
Copy link
Contributor Author

radu-matei commented Jun 2, 2017

@ddebroy Could you point me to an example where this image is used?

Still, this does not change the way we do linuxkit run azure or linukit push azure, but the way we create images for Azure. So it would affect the example, azure,yml.

Thanks!

@radu-matei
Copy link
Contributor Author

And if we integrate that image (and it is indeed the WALinux Agent), then we can no longer set unused usernames and passwords when creating the VM

@ddebroy
Copy link

ddebroy commented Jun 2, 2017

You can take a peek at /etc/init.d/azure in the Moby VHD for Docker4Azure on how we kick it off. Essentially we do something like this:

export DOCKER_FOR_IAAS_VERSION="17.04.0-ce-azure1"
...
docker run -d \
		--privileged \
		--name agent \
		--ipc host \
		--pid host \
		--net host \
		--uts host \
		--label com.docker.editions.system \
		--restart unless-stopped \
		-e DOCKER_FOR_IAAS_VERSION \
		-v /usr/bin/docker:/usr/local/bin/docker:ro \
		-v /mnt:/mnt \
		-v /etc:/etc \
		-v /var/etc/ssh:/etc/ssh \
		-v /var/etc/hostname:/etc/hostname \
		-v /var/home:/home \
		-v /var/run/docker.sock:/var/run/docker.sock \
		-v /var/log:/var/log \
		-v /lib/modules:/lib/modules \
		-v /lib/firmware:/lib/firmware \
		-v /var/lib/waagent:/var/lib/waagent \
		"docker4x/agent-azure:$DOCKER_FOR_IAAS_VERSION"

@justincormack
Copy link
Member

@ddebroy I think it would make more sense to add the azure agent to this repo as a package here.

azure: React to change requests

azure: Fix push and run message and update example

azure: Remove docker dependency and upload VHD

Modify %s to %v for Go errors

Signed-off-by: radu-matei <matei.radu94@gmail.com>
azure: Add further vendor dependencies

Signed-off-by: radu-matei <matei.radu94@gmail.com>
@radu-matei
Copy link
Contributor Author

Rebased and squashed commits.

@radu-matei
Copy link
Contributor Author

Is there anything else needed to merge a first version of this?

@@ -11,6 +11,12 @@ github.com/rneugeba/iso9660wrap 4606f848a055435cdef85305960b0e1bb788d506
github.com/satori/go.uuid b061729afc07e77a8aa4fad0a2fd840958f1942a
github.com/surma/gocpio fcb68777e7dc4ea43ffce871b552c0d073c17495
github.com/vmware/govmomi 6f8ebd89d521d9f9af7a6c2219c4deee511020dd
github.com/Azure/azure-sdk-for-go 26132835cbefa2669a306b777f34b929b56aa0a2
github.com/radu-matei/azure-sdk-for-go 3b12823551999669c9a325a32472508e0af7978e
Copy link
Member

Choose a reason for hiding this comment

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

Why are you using both the official and a forked version?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Copy link
Contributor Author

@radu-matei radu-matei Jun 5, 2017

Choose a reason for hiding this comment

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

Basically, the library used for uploading the VHD is based on an older version of the SDK (that is not backwards compatible), so I needed two versions in vendor.conf.

And since vndr does not accept two vendored dependencies with the same base repo, had to fork them and point a specific (older) commit as the dependency.

Copy link
Member

Choose a reason for hiding this comment

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

ok, lets go with this for now and improve later.

@justincormack justincormack merged commit 4b60965 into linuxkit:master Jun 5, 2017
# for free to join this conversation on GitHub. Already have an account? # to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants