配置

安装完mifx之后,需要在本地将配置文件放到指定的目录。 默认情况下,配置文件为config,默认路径为~/.mifaas/config. 用户也可以在指定配置文件的时候指定特定路径下的文件,如mifx -c ~/user/configfile.

config文件的内容如下:

 current-context: awsbj
 awsbj:
   accesskey: XXXXXXXXXX
   secretkey: XXXXXXXXXXXXXXXXXXXXXXXXX
   server: https://cnbj.cloud.mi.com
 ksyunbj:
   accesskey: XXXXXXXXXX
   secretkey: XXXXXXXXXXXXXXXXXXXXXXXXX
   server: https://cnbj6.cloud.mi.com
 sg:
    accesskey: XXXXXXXXXX
    secretkey: XXXXXXXXXXXXXXXXXXXXXXXXX
    server: https://sg.cloud.mi.com
 de:
    accesskey: XXXXXXXXXX
    secretkey: XXXXXXXXXXXXXXXXXXXXXXXXX
    server: https://de.cloud.mi.com
 oregon:
    accesskey: XXXXXXXXXX
    secretkey: XXXXXXXXXXXXXXXXXXXXXXXXX
    server: https://us.cloud.mi.com

在使用mifx操作函数计算的时候,既可以完全使用命令参数,也可以将命令所需要的参数保存到文件中, 参数在文件中的可以是json格式保存,也可以是yaml文件保存。以创建命名空间为例:

命令参数,都可以通过使用-h查看到,参数在命令中创建space:

mifx space create --concurrentlimit 100 --description sdkfjgh  --name space

使用配置文件创建space:

mifx space create -f space.yaml

space.yaml文件的内容,既可以是yaml格式,也可以是json格式: yaml格式:

concurrentLimit: 100
description : "space"
meta:
 name: "sapce"

json格式:

{
"concurrentLimit": 100,
"description": "space",
"meta": {
 "name": "space"
 }
}

results matching ""

    No results matching ""