Skip to content

Deploy Java Applications Based on Jar Packages

Workbench supports building applications in four ways: Git Repo, Jar package, container image, and Helm chart. This article describes how to deploy a Java application via a Jar file.

prerequisites

  1. Create a workspace and a User. The user needs to join this workspace and have the Workspace Editor role.

  2. Create a credential for accessing the image repository, such as registry .

  3. Prepare an image repository, like a Harbor repository.

  4. Download daocloud-demo.jar.

Steps

  1. Click Wizards on the left navigation bar, and then select Build With Jar .

    Based on Jar

  2. Fill in the basic information with reference to the following requirements, and then click Next .

    • Name: Maximum 63 characters, can only contain lowercase letters, numbers, and a separator ("-"), and must start and end with a lowercase letter or number.
    • Resource Type: Select whether the application to be created is a stateless load or a stateful load.
    • Deployment Location: Select which namespace under which cluster to deploy the application. Only clusters that exist in the current workspace can be selected.
    • Application: Select the group to which the application belongs. Empty means do not group this app.
    • Replicas: Set the number of Pods for the application.

      Basic Info

  3. Refer to the following requirements to configure the pipeline, and then click Next .

    • Target Image Address: Name the target image, including the storage path of the target image, for example release-ci.daocloud.io/test-lfj/fromjar .
    • Tag: Tag the target image, such as the version number v1.0 .
    • Credential: Select the credential to access the registry, such as registry-credential .
    • JAVA_OPTS: Variables used to set JVM-related operating parameters, such as -server -Xms2048m -Xmx2048m -Xss512k .
    • Build Parameters: Build parameters will be passed to the build command in the form of --build-arg , which supports setting the upstream product download address and upstream mirror download address as parameters, and also supports custom arbitrary parameters.

      Build Pipiline

  4. Fill in the container configuration with reference to the following requirements, and click Next .

    • Access Mode: Support access to the application only within the cluster through clusterIP, or allow access outside the cluster through NodePort, or access through a load balancer.
    • Port Settings: fill in the port number that needs to be exposed according to the actual business scenario.

      For more detailed instructions on service configuration, please refer to Create Service.

    • Resource Limit: CPU and memory quotas must not exceed the remaining resources in the current workspace of the application's namespace.

    • Lifecycle: Set the commands that need to be executed when the container starts, after it starts, and before it stops. For details, please refer to Container Lifecycle Configuration.

    • Health Check: used to judge the health status of containers and applications, which helps to improve the availability of applications. For details, please refer to Container Health Check Configuration.

    • Environment Variables: Configure container parameters in Pods, add environment variables or pass configurations to Pods, etc. For details, please refer to Container environment variable configuration.

    • Data Storage: Configure the settings for container mounted data volumes and data persistence.

      Container Settings

  5. Refer to the following instructions to choose whether to enable advanced features, and then click Create and Upload Jar Package .

  6. Select the file to be uploaded and click OK .

    Upload Jar

  7. After the creation is successful, the corresponding pipeline will be triggered to run. Click Pipelines in the left navigation bar to view its running status.

    The naming rule of the pipeline is "corresponding application name-random number". For example, the corresponding application name is demo through the pipeline name demo-4615a8 .

    Pipelines

  8. After the pipeline is successfully executed, click Overview on the left navigation bar and select the Applications tab to view the newly created app.

    Successfully Created

Comments