Skip to content

Commit f376a68

Browse files
authored
Merge pull request #99 from majguo/move-util-scripts-to-cli-directory
move utility scripts to src/main/cli
2 parents 60c289e + 8546f15 commit f376a68

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
mvn -Dgit.repo=<repo_user> -Dgit.tag=<repo_tag> -DibmUserId=<ibmUserId> -DibmUserPwd=<ibmUserPwd> -Ddynamic=<true|false> -DnumberOfNodes=<numberOfNodes> -DvmSize=<vmSize> -DdmgrVMPrefix=<dmgrVMPrefix> -DmanagedVMPrefix=<managedVMPrefix> -DdnsLabelPrefix=<dnsLabelPrefix> -DadminUsername=<adminUsername> -DadminPasswordOrKey=<adminPassword|adminSSHPublicKey> -DauthenticationType=<password|sshPublicKey> -DwasUsername=<wasUsername> -DwasPassword=<wasPassword> -DconfigureIHS=<true|false> -DihsVmSize=<ihsVmSize> -DihsVMPrefix=<ihsVMPrefix> -DihsDnsLabelPrefix=<ihsDnsLabelPrefix> -DihsUnixUsername=<ihsUnixUsername> -DihsUnixPasswordOrKey=<ihsUnixPassword|ihsUnixSSHPublicKey> -DihsAuthenticationType=<password|sshPublicKey> -DihsAdminUsername=<ihsAdminUsername> -DihsAdminPassword=<ihsAdminPassword> -Dtest.args="-Test All" -Ptemplate-validation-tests clean install
2828
```
2929

30-
1. Change to `./target/arm` directory
30+
1. Change to `./target/cli` directory
3131
1. Using `deploy.azcli` to deploy
3232

3333
```bash

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>com.microsoft.azure.iaas</groupId>
2727
<artifactId>azure-javaee-iaas-parent</artifactId>
28-
<version>1.0.7</version>
28+
<version>1.0.11</version>
2929
<relativePath></relativePath>
3030
</parent>
3131

src/main/arm/deploy.azcli renamed to src/main/cli/deploy.azcli

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,15 @@ if [ -z "$deploymentName" ] || [ -z "$subscriptionId" ] || [ -z "$resourceGroupN
8282
fi
8383

8484
#templateFile Path - template file to be used
85-
templateFilePath="mainTemplate.json"
85+
templateFilePath="../arm/mainTemplate.json"
8686

8787
if [ ! -f "$templateFilePath" ]; then
8888
echo "$templateFilePath not found"
8989
exit 1
9090
fi
9191

9292
#parameter file path
93-
parametersFilePath="parameters.json"
93+
parametersFilePath="../arm/parameters.json"
9494

9595
if [ ! -f "$parametersFilePath" ]; then
9696
echo "$parametersFilePath not found"

0 commit comments

Comments
 (0)