Java 8 Orchestrator
Enterprise
Enterprise
Image | $DATAOPS_JAVA8_RUNNER_IMAGE |
---|
The Java 8 orchestrator provides tools for working with Java 8 projects and code.
Usage
You can run Java 8 commands from a job, for example:
pipelines/includes/local_includes/java8-jobs/my_java8_job.yml
My Java8 Job:
extends:
- .agent_tag
stage: "My Stage"
image: $DATAOPS_JAVA8_RUNNER_IMAGE
variables:
script:
- java -X ... -D ... -jar main.jar
icon: ${JAVA8_ICON}
If you need access to the DataOps.live Vault, include the /dataops
entry point in your script tag, and you can use values
from it, e.g.:
My Java8 Job:
script:
- /dataops
- java -X ... -D ... -jar main.jar
Supported parameters
None
Example jobs
None