在应用程序中配置数据或环境

    vela 提供 config 命令用于管理配置数据。

    1. $ vela config get test
    2. a: b
    3. c: d
    1. $ vela config set test a=b
    2. $ vela config set test2 c=d
    3. $ vela config ls
    4. NAME
    5. test2

    将以下内容保存为 vela.yaml 到当前目录中:

    1. name: testapp
    2. services:
    3. env-config-demo:
    4. image: heroku/nodejs-hello-world
    5. config: demo

    检查环境变量: