0

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"


  }

エラーの原因は何ですか?

4

1 に答える 1

0

configリソースと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)
于 2018-04-09T09:25:46.033 に答える