forked from duselmann/WQP-WQX-Services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipeline.yml
29 lines (29 loc) · 1.18 KB
/
pipeline.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# docker image path in artifactory
artifactoryPath: "wqp"
# docker image path in gitlab
gitlabPath: "wma/docker/wqp/wqp-wqx-services"
# name of the docker image
dockerImageName: "wqp-wqx-services"
#
repoPath: "NWQMC/WQP-WQX-Services.git"
# name of the git repo
gitRepoUrl: "https://github.com/NWQMC/WQP-WQX-Services.git"
# Jenkins credential for pushing back to repo
gitRepoCredentialsId: "Jenkins-GitHub-Read-Write-Token"
# name of the deploy job to trigger
deployJobName: "WQP-WQX-Services-deploy"
# name of the project
projectName: "wqp-external"
# maximum amount of RAM for running Docker containers in the service
memory: 512
# name of the application or service
applicationName: "wqp-wqx-services"
# integer representing the order of precedence of the ALB rule.
# set to a low priority; services are given higher priority.
rulePriority: 302
# port that is exposed by your container
containerPort: 8080
# string parameter specifying a path that ALB should use to verify that your application is alive
healthCheck: "/wqp/actuator/health"
# string parameter that tells the ALB how to route requests to the containers (e.g. /my-app/*); this forms a listener rule for the load balancer
contextPath: "/wqp/*"