Summary Table
| Categories |
Total Count |
| PII |
0 |
| URL |
0 |
| DNS |
0 |
| EKL |
0 |
| IP |
0 |
| PORT |
0 |
| VsID |
0 |
| CF |
0 |
| AI |
0 |
| VPD |
0 |
| PL |
0 |
| Other |
0 |
File Content
- project:
automationVersion: 3.0.0
name: my-va-images
nexusRepository: mtd
environmentFile: nextgen/app.env
nexusGroupId: $NEXUS_GROUP_ID
nexusArtifactId: $JOB_NAME
nexusFile: $JOB_NAME.BUILD-$BUILD_NUMBER.tar.gz
nexusURL: $NEXUS_URL
nexusProtocol: http
nexusPackaging: tar.gz
startingpath: $STARTING_PATH
ucp-host: $UCP_HOST
dtrhost: $DTR_HOST
dtrorganization: $DTR_ORG
APP_VERSION: $APP_VERSION
jobs:
- '{name}-app-build':
gitrepo: '$STASH_URL/mtd/my-va-images.git'
gitbranch: release/1.0
gitsubmodules: false
compileline: sh ./nextgen/build.sh
scanline: sh ./nextgen/fortify.sh;
packageline: if [ -f ./nextgen/package.sh ]; then chmod 755 ./nextgen/package.sh; ./nextgen/package.sh; fi
jenkinsnode: image-build
gitcreds: STASH_USER
- '{name}-docker-image-build':
jenkinsnode: image-build
nexusPath: "/service/local/repositories/{nexusRepository}/content/{nexusGroupId}/"
tags:
- "{APP_VERSION}"
- '{name}-docker-image-deploy':
jenkinsnode: image-deploy
predeployline: if [ -f ./nextgen/pre-deploy.sh ]; then chmod 755 ./nextgen/pre-deploy.sh; ./nextgen/pre-deploy.sh; fi
postdeployline: if [ -f ./nextgen/post-deploy.sh ]; then chmod 755 ./nextgen/post-deploy.sh; ./nextgen/post-deploy.sh; fi