-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli-config.yml
50 lines (37 loc) · 2.17 KB
/
cli-config.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# The IBM version of this configuration
version : 0.0.3
# The container name used for the run container
container-name-run : "labibmcloudspringservice"
# The container name used for the tools container
container-name-tools : "bx-dev-labibmcloudspringservice-tools"
# The name of image to create from dockerfile-run
image-name-run : "labibmcloudspringservice"
# The name of image to create from dockerfile-tools
image-name-tools : "bx-dev-java-maven-tools"
# The project root on the host for the run container to mount to container-path-run
host-path-run : "target"
# The command to build the code and docker image for RUN
build-cmd-run : "mvn install -Dmaven.repo.local=/project/.m2/repository"
# The command to execute tests for the code in the tools container
test-cmd : "mvn install -Dmaven.repo.local=/project/.m2/repository"
# The command to build the code and docker image for DEBUG
build-cmd-debug : "mvn install -Dmaven.repo.local=/project/.m2/repository"
# The project root in the run container to mount to host-path-run
container-path-run : "/project"
# The project root in the tools container that will be mounted to host-path-tools
container-path-tools : "/project"
# The port mappings between the host and the container in the form [host:container]
container-port-map : "8080:8080,8443:8443"
# The port mappings between the host and the container for the debug port in the form [host:container]
container-port-map-debug : "8000:8000"
# The command to execute debug of the code in the tools container
debug-cmd : "java -Dspring.profiles.active=local -Xdebug -Xrunjdwp:server=y,transport=dt_socket,address=8000,suspend=y -jar ./target/labibmcloudspringservice-1.0-SNAPSHOT.jar"
# The name for the dockerfile for the run container
dockerfile-run : "Dockerfile"
# The name for the dockerfile for the tools container
dockerfile-tools : "Dockerfile-tools"
# The relative path to the helm chart used for Kubernetes deployment
chart-path : "chart/labibmcloudspringservice"
ibm-generated-id : "9bcf5c12-549a-4bb5-958e-163a82e33634"
ibm-cloud-app-id : "80fa0fe0-0ee1-48ad-b18c-fadaf94e0fa2"
credentials-filepath : "src/main/resources/application-local.properties, src/main/resources/localdev-config.json"