运行时配置变量 Google 部署管理器

Runtime config variable Google Deployment manager

无法创建 google 部署管理器运行时配置变量

resources:
- name: star-config
  type: runtimeconfig.v1beta1.config
  properties:
    name: star-config

- name: igurl_variable
  type: runtimeconfig.v1beta1.variable
  properties:
   name: igurl_variable
   value: 'trek'
   parent: $(ref.star-config.name)

我检查了日志,发现创建上述部署时状态设置为 bad_request。

Audit log
status: {
   message:  "BAD_REQUEST"


  }

错误的原因可能是什么?

您应该尝试使用 config and variable 资源的官方文档中的属性字段。

资源文件应该是这样的:

resources:
    - name: star-config
      type: runtimeconfig.v1beta1.config
      properties:
        config: star-config

    - name: igurl_variable
      type: runtimeconfig.v1beta1.variable
      properties:
       variable: igurl_variable
       text: 'trek'
       parent: $(ref.star-config.name)