-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Add linuxkit run azure #1933
Conversation
Please sign your commits following these rules: $ 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. |
src/cmd/linuxkit/push_azure.go
Outdated
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") |
There was a problem hiding this comment.
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.
src/cmd/linuxkit/push_azure.go
Outdated
|
||
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") |
There was a problem hiding this comment.
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.
src/cmd/linuxkit/run_azure.go
Outdated
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") |
There was a problem hiding this comment.
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`. |
There was a problem hiding this comment.
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?
src/cmd/linuxkit/azure.go
Outdated
@@ -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()) |
There was a problem hiding this comment.
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)
src/cmd/linuxkit/azure.go
Outdated
AdminPassword: to.StringPtr("DummyPassword!123"), | ||
ComputerName: to.StringPtr(defaultComputerName), | ||
AdminUsername: to.StringPtr(unusedAdminUsername), | ||
AdminPassword: to.StringPtr(unusedPassword), |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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
src/cmd/linuxkit/push_azure.go
Outdated
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") |
There was a problem hiding this comment.
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
src/cmd/linuxkit/azure.go
Outdated
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() |
There was a problem hiding this comment.
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)?
There was a problem hiding this comment.
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...
There was a problem hiding this comment.
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
There shouldn't be an additional commit with the fixes to the previous commit |
@@ -0,0 +1,101 @@ | |||
kernel: |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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) |
There was a problem hiding this comment.
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
@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? |
sure |
Needs to be rebased (use |
@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. |
@ddebroy Could you point me to an example where this image is used? Still, this does not change the way we do Thanks! |
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 |
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:
|
@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>
Rebased and squashed commits. |
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 |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
- What I did
Add
linuxkit run azure
functionality- How I did it
Integrate with the Azure Go SDK