forked from mbucknell/WQP_UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipeline.yml
27 lines (27 loc) · 1.08 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
# docker image path in artifactory
artifactoryPath: "wqp_ui"
# docker image path in gitlab
gitlabPath: "wma/docker/wqp"
# name of the docker image
dockerImageName: "wqp_ui"
# type of build
gitRepoUrl: "https://github.com/NWQMC/WQP_UI.git"
# name of the deploy job to trigger
deployJobName: "wqp-ui-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_ui"
# integer representing the order of precedence of the ALB rule.
# set to a low priority; services are given higher priority.
rulePriority: 503
# port that is exposed by your container
containerPort: 5050
# string parameter specifying a path that ALB should use to verify that your application is alive
healthCheck: "/robots.txt"
# 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: "/*"
# the Jenkins credential ID to be use when pushing commits
gitRepoCredentialsId: "Jenkins-GitHub-Read-Write-Token"