diff options
author | Todd Malsbary <todd.malsbary@intel.com> | 2021-06-02 16:31:22 -0700 |
---|---|---|
committer | Todd Malsbary <todd.malsbary@intel.com> | 2021-06-09 10:03:51 -0700 |
commit | 741d0b2bf25ee68eab05c5a768f60515131bb852 (patch) | |
tree | 26285c62bba41355774a62697e6bf4a25229831d /kud/deployment_infra/emco/examples/01-cluster.yaml | |
parent | 99f2be307f194e1f6a60e4098e82f6775c8dad5b (diff) |
Refactor EMCO deploy of addons
Issue-ID: MULTICLOUD-1324
Signed-off-by: Todd Malsbary <todd.malsbary@intel.com>
Change-Id: I90b33cd99c42017b50f3174b6f9033a861e11dd3
Diffstat (limited to 'kud/deployment_infra/emco/examples/01-cluster.yaml')
-rw-r--r-- | kud/deployment_infra/emco/examples/01-cluster.yaml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/kud/deployment_infra/emco/examples/01-cluster.yaml b/kud/deployment_infra/emco/examples/01-cluster.yaml new file mode 100644 index 00000000..6f7ce4ba --- /dev/null +++ b/kud/deployment_infra/emco/examples/01-cluster.yaml @@ -0,0 +1,29 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright (c) 2020 Intel Corporation + +--- +#creating cluster provider +version: emco/v2 +resourceContext: + anchor: cluster-providers +metadata : + name: {{ .ClusterProvider }} + +{{- range $index, $cluster := .Clusters }} +--- +#creating cluster +version: emco/v2 +resourceContext: + anchor: cluster-providers/{{ $.ClusterProvider }}/clusters +metadata : + name: {{ $cluster.Name }} +file: + {{ $cluster.KubeConfig }} + +--- +#Add label cluster +version: emco/v2 +resourceContext: + anchor: cluster-providers/{{ $.ClusterProvider }}/clusters/{{ $cluster.Name }}/labels +label-name: {{ $.ClustersLabel }} +{{- end }}
\ No newline at end of file |