Version: v1.0

Learning Appfile

A sample Appfile is as below:

  1. name: testapp
  2. services:
  3. frontend: # 1st service
  4. image: oamdev/testapp:v1
  5. build:
  6. docker:
  7. file: Dockerfile
  8. context: .
  9. cmd: ["node", "server.js"]
  10. port: 8080
  11. route: # trait
  12. domain: example.com
  13. rules:
  14. - path: /testapp
  15. rewriteTarget: /
  16. backend: # 2nd service
  17. type: task # workload type
  18. image: perl
  19. cmd: ["perl", "-Mbignum=bpi", "-wle", "print bpi(2000)"]

Under the hood, Appfile will build the image from source code, and then generate Application resource with the image name.

Schema

Before learning about Appfile’s detailed schema, we recommend you to get familiar with core concepts in KubeVela.

  1. name: _app-name_
  2. services:
  3. _service-name_:
  4. # If `build` section exists, this field will be used as the name to build image. Otherwise, KubeVela will try to pull the image with given name directly.
  5. image: oamdev/testapp:v1
  6. build:
  7. docker:
  8. file: _Dockerfile_path_ # relative path is supported, e.g. "./Dockerfile"
  9. context: _build_context_path_ # relative path is supported, e.g. "."
  10. push:
  11. local: kind # optionally push to local KinD cluster instead of remote registry
  12. type: webservice (default) | worker | task
  13. # detailed configurations of workload
  14. ... properties of the specified workload ...
  15. _trait_1_:
  16. # properties of trait 1
  17. _trait_2_:
  18. # properties of trait 2
  19. ... more traits and their properties ...
  20. _another_service_name_: # more services can be defined
  21. ...

To learn about how to set the properties of specific workload type or trait, please use vela show <TYPE | TRAIT>.

Example Workflow

In the following workflow, we will build and deploy an example NodeJS app under examples/testapp/.

Prerequisites

1. Download test app code

git clone and go to the testapp directory:

  1. $ git clone https://github.com/oam-dev/kubevela.git
  2. $ cd kubevela/docs/examples/testapp

The example contains NodeJS app code, Dockerfile to build the app.

2. Deploy app in one command

In the directory there is a vela.yaml which follows Appfile format supported by Vela. We are going to use it to build and deploy the app.

NOTE: please change oamdev to your own registry account so you can push. Or, you could try the alternative approach in Local testing without pushing image remotely section.

  1. image: oamdev/testapp:v1 # change this to your image

Run the following command:

  1. $ vela up
  2. Parsing vela.yaml ...
  3. Loading templates ...
  4. Building service (express-server)...
  5. Sending build context to Docker daemon 71.68kB
  6. Step 1/10 : FROM mhart/alpine-node:12
  7. ---> 9d88359808c3
  8. ...
  9. pushing image (oamdev/testapp:v1)...
  10. ...
  11. Rendering configs for service (express-server)...
  12. Writing deploy config to (.vela/deploy.yaml)
  13. Applying deploy configs ...
  14. Checking if app has been deployed...
  15. App has not been deployed, creating a new deployment...
  16. App has been deployed 🚀🚀🚀
  17. Port forward: vela port-forward testapp
  18. SSH: vela exec testapp
  19. Logging: vela logs testapp
  20. App status: vela status testapp
  21. Service status: vela status testapp --svc express-server

Check the status of the service:

  1. $ vela status testapp
  2. About:
  3. Name: testapp
  4. Namespace: default
  5. Created at: 2020-11-02 11:08:32.138484 +0800 CST
  6. Updated at: 2020-11-02 11:08:32.138485 +0800 CST
  7. Services:
  8. - Name: express-server
  9. Type: webservice
  10. HEALTHY Ready: 1/1
  11. Last Deployment:
  12. Created at: 2020-11-02 11:08:33 +0800 CST
  13. Updated at: 2020-11-02T11:08:32+08:00
  14. Routes:

Alternative: Local testing without pushing image remotely

If you have local kind cluster running, you may try the local push option. No remote container registry is needed in this case.

Add local option to build:

  1. build:
  2. # push image into local kind cluster without remote transfer
  3. push:
  4. local: kind
  5. docker:
  6. file: Dockerfile
  7. context: .

Then deploy the app to kind:

  1. $ vela up

(Advanced) Check rendered manifests

By default, Vela renders the final manifests in .vela/deploy.yaml:

  1. apiVersion: core.oam.dev/v1alpha2
  2. kind: ApplicationConfiguration
  3. metadata:
  4. name: testapp
  5. namespace: default
  6. spec:
  7. components:
  8. - componentName: express-server
  9. ---
  10. apiVersion: core.oam.dev/v1alpha2
  11. kind: Component
  12. metadata:
  13. name: express-server
  14. namespace: default
  15. spec:
  16. workload:
  17. apiVersion: apps/v1
  18. kind: Deployment
  19. metadata:
  20. name: express-server
  21. ...
  22. ---
  23. apiVersion: core.oam.dev/v1alpha2
  24. kind: HealthScope
  25. metadata:
  26. name: testapp-default-health
  27. namespace: default
  28. spec:
  29. ...

[Optional] Configure another workload type

By now we have deployed a Web Service, which is the default workload type in KubeVela. We can also add another service of Task type in the same app:

  1. services:
  2. pi:
  3. type: task
  4. image: perl
  5. cmd: ["perl", "-Mbignum=bpi", "-wle", "print bpi(2000)"]
  6. express-server:
  7. ...

Then deploy Appfile again to update the application:

  1. $ vela up

Congratulations! You have just deployed an app using Appfile.

What’s Next?

Play more with your app: