This repository has been archived by the owner on Dec 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 574
Azure deployment option in quickstart.sh #177
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Signed-off-by: Markos Rendell <[email protected]>
Volume on the slave for Docker use during builds
… 1.10 client, env is not auto-detected appropriately in all situations
Added script to allow setting of passwords and updated compose file to include new env variables
Uncommented lines in local setup script
Fixing readme typos
Fix Jenkins & Gerrit checks to use credentials
Updating Jenkins image to 0.1.2
…l. Replaced it with the openssl command which is more universal. Also refactored all of the password generation to a single function. Tested on OS X and it works.
The service checks were failing because they weren't using the passwords for the services, and therefore the Jenkins check would just loop forever waiting for a check that would never succeed.
Replace sha256sum command with openssl
Restructured credential generation with new sourceable secrets file
Sed on OS X works differently than Linux, and so the sed command was failing on OS X. The revised command here works on OS X and Linux.
Fixes sed syntax issue on OS X
Added new option to specify availability zone.
Adding the basic CLI
Fixed credential variable names in quickstart.sh
Signed-off-by: Northard, Robert A <[email protected]>
…dap-port-to-host Expose LDAP container tcp port 389 to host.
…re_good Updating GitHub Pages links to HTTPS
Fix gitter badge image src
…on_update Improving contribution guidelines
Added info about Pluggable SCM
…_h_flag Adding -h to print usage, just to avoid the error message
…_mode_disclaimer Adding evaluation mode disclaimer and documentation
Changed port instruction format in docker-compose file according to the latest format
Updating travis.yml with correct versions of Docker Engine & Compose
The correct command syntax are: |
Absolutely, the Azure CLI v2.0 syntax is now the standard. |
nickdgriffin
added
LEVEL 1 & LEVEL 2
LEVEL 1
LEVEL 2
and removed
LEVEL 1 & LEVEL 2
labels
Oct 17, 2017
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added a "-t azure" option in quickstart.sh, some parameters specific to Azure, and a "provision_azure()" function to implement the Docker Machine call with the Azure driver (https://docs.docker.com/machine/drivers/azure/). The usage text is modified as well.
Azure specific parameters are:
-j AZURE_SUBSCRIPTION_ID: Azure subscription ID. With Azure CLI, use "azure account show" to get your ID
-l AZURE_LOCATION: Azure location. Use "azure location list" to list possible values. For instance, Dublin = northeurope, Amsterdam = westeurope. Default: westeurope.
-g AZURE_RESOURCE_GROUP: New or existing resource group to create the ADOP VM in. If it exists, it must be in the same location as specified with -l. Default: docker-machine.
Thank you!