diff options
author | 2021-06-24 20:45:24 +0000 | |
---|---|---|
committer | 2021-06-24 20:45:24 +0000 | |
commit | cec17f07ca594b45e9781438f0d9b9f9d60f2961 (patch) | |
tree | 86fad4b7b5b22311604b01fb585e5e35a1406ff3 /kud/deployment_infra/emco/examples/00-controllers.yaml | |
parent | 3c09e032b06c18426e59ec38d925e2b4ace24abc (diff) | |
parent | 741d0b2bf25ee68eab05c5a768f60515131bb852 (diff) |
Merge "Refactor EMCO deploy of addons"
Diffstat (limited to 'kud/deployment_infra/emco/examples/00-controllers.yaml')
-rw-r--r-- | kud/deployment_infra/emco/examples/00-controllers.yaml | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/kud/deployment_infra/emco/examples/00-controllers.yaml b/kud/deployment_infra/emco/examples/00-controllers.yaml new file mode 100644 index 00000000..c023ab87 --- /dev/null +++ b/kud/deployment_infra/emco/examples/00-controllers.yaml @@ -0,0 +1,52 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright (c) 2020 Intel Corporation + +--- +#creating controller entries +version: emco/v2 +resourceContext: + anchor: controllers +metadata : + name: rsync +spec: + host: {{ .HostIP }} + port: {{ .RsyncPort }} + +--- +#creating controller entries +version: emco/v2 +resourceContext: + anchor: controllers +metadata : + name: gac +spec: + host: {{ .HostIP }} + port: {{ .GacPort }} + type: "action" + priority: 1 + +--- +#creating controller entries +version: emco/v2 +resourceContext: + anchor: controllers +metadata : + name: ovnaction +spec: + host: {{ .HostIP }} + port: {{ .OvnPort }} + type: "action" + priority: 1 + +--- +#creating controller entries +version: emco/v2 +resourceContext: + anchor: controllers +metadata : + name: dtc +spec: + host: {{ .HostIP }} + port: {{ .DtcPort }} + type: "action" + priority: 1 |