Deploy Kubernetes Objects

    KubeVela supports you to render, orchestrate and deploy Kubernetes objects. The common usage type is Deployment+Service. Using customized Workflow, you can deploy an application into multi-cluster in sequence. Hence you’ll get to know:

    1. Workflow and its usage.
    2. Multi-env/cluster in application delivery.
    3. The control loop of application deployment: Rollback, Terminate and Continue.
    • Prepare Kubernetes Resources you want to deploy. In this guide, we’ll use a composition of Deployment and Service as example.

    Below is a demo application with Kubernetes objects consist of Deployment and Service.

    There are two policies and three workflow steps in it:

    • The policy means we’re going to deploy into two namespaces as different environments.
    • The workflow step means, we will deploy to one environment first, wait for human review after the first step succeeded, then finish the rest step.

    Deploy this application by the following command:

    • You may need to create the namespace with the name before deploying the application.
    • Deploy the demo application.
    • Check the status of the application.

    You can also check the deployment and service with the kubectl or any other tools you familiar to check the deployment.

    • Approve the workflow if everything looks good.

    KubeVela also allows referring Kubernetes objects from Kubernetes cluster or remote URL links, so that you do not need to write Kubernetes objects inside Application directly. Read more about it in .

    We can do the same process in KubeVela UI Console if you have enabled addon.

    In VelaUX, we use to describe the space where the application resources actually delivered. It’s like syntax sugar to in UI console.

    Refer to targets management doc for details and make sure you have 3 targets: 1 for test and 2 for prod environments for our below example.

    After Target was created, we begin to create an application. Same to Deploy First Application, we need to submit basic Infos:

    (1) Select type: k8s-objects; NOTE that in one application please maintain at most one Workload type of resource, meaning without more than a Deployment or Statefulset.

    (3) Upload your Yaml file. Note that, the name of the resource you specified must not conflict with existing ones. Also, the editor automatically formats the Yaml file.

    Deploy Kubernetes Objects - 图2

    After above, click Create to finish.

    Enter the further page, the application has automatically generated 2 environments and 2 workflows. Each environment has its workflow by default. A workflow consists of one or more steps such as .

    Firstly let’s switch to the Tab of the test environment, click Deploy on the page. Since we only assigned one target for the test environment, there’s one step for workflow. Looking at the status of its execution in the upper-right, it turns green when succeeded. If it shows red means that workflow went into trouble, you can click on the red sign to look through the detailed reason. Fix it accordingly and the deployment will continue to be regained.

    After deployment is finished, refresh the list of instances to see Pods. Click for more if Pod shows abnormality.

    Deploy Kubernetes Objects - 图4

    As for the test environment, it sure can be updated at any time. When we update the parameters(image, instance), execute the workflow for an upgrade. Note that, choose the workflow for the test environment.

    As we have two targets for the prod environment, it’ll execute in sequence. If you hope to set up a manual approval before it gets into the second target, this is where workflow comes in.

    Deploy Kubernetes Objects - 图6

    we can see two generated workflow. Now we click the Edit in the workflow of the prod environment, drag out the into the board at the right. Set up the configuration you needed.

    Then we need to orchestrate their sequence. First disconnect existing steps (by clicking the line + delete button), connect the suspend step in the middle. After editing, you need to click the Save button on the upper right to save.

    Back to the page of prod environment, click Deploy.

    Deploy Kubernetes Objects - 图8

    Monitoring the status on the upper right. When the first target finished deploying, a window pops up for you to give out a command.

    suspend has three operations:

    • Rollback: the revision reverts to the latest one in history, even with the first Target.
    • Terminate: stop the deployment process but it will not change the first Target that already deployed.
    • Continue: enter the execution of the next step.

    If continued, the deployment goes on. In the list of instances, you can check out all the details.

    If you want to learn how to distribute resources across multi-clusters, you can refer to .