aboutsummaryrefslogtreecommitdiffstats
path: root/kud/deployment_infra/emco/examples/03-addons-app.yaml
blob: 0fd15e0f7e6ee1a20f4f321ca3da7023b392e132 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) 2020 Intel Corporation

---
#creating composite app entry
version: emco/v2
resourceContext:
  anchor: projects/{{ .ProjectName }}/composite-apps
metadata :
  name: {{ .AddonsApp }}
  description: "KUD addons"
spec:
  version: v1

{{- range $index, $addon := .Addons }}
---
#adding app to the composite app
version: emco/v2
resourceContext:
  anchor: projects/{{ $.ProjectName }}/composite-apps/{{ $.AddonsApp }}/v1/apps
metadata :
  name: {{ $addon }}
file:
  {{ $.PackagesPath }}/{{ $addon }}.tar.gz
{{- end }}

---
#creating composite profile entry
version: emco/v2
resourceContext:
  anchor: projects/{{ .ProjectName }}/composite-apps/{{ .AddonsApp }}/v1/composite-profiles
metadata :
  name: {{ .AddonsProfile }}

{{- range $index, $addon := .Addons }}
---
#adding app profiles to the composite profile
version: emco/v2
resourceContext:
  anchor: projects/{{ $.ProjectName }}/composite-apps/{{ $.AddonsApp }}/v1/composite-profiles/{{ $.AddonsProfile }}/profiles
metadata :
  name: {{ $addon }}-profile
spec:
  app-name: {{ $addon }}
file:
  {{ $.PackagesPath }}/{{ $addon }}_profile.tar.gz
{{- end }}

---
#create deployment intent group
version: emco/v2
resourceContext:
  anchor: projects/{{ .ProjectName }}/composite-apps/{{ .AddonsApp }}/v1/deployment-intent-groups
metadata :
  name: {{ .AddonsDeploymentIntentGroup }}
  description: "description"
spec:
  profile: {{ .AddonsProfile }}
  version: r1
  logical-cloud: {{ .LogicalCloud }}
  override-values: []

---
#create intent in deployment intent group
version: emco/v2
resourceContext:
  anchor: projects/{{ .ProjectName }}/composite-apps/{{ .AddonsApp }}/v1/deployment-intent-groups/{{ .AddonsDeploymentIntentGroup }}/intents
metadata :
  name: {{ .AddonsDeploymentIntent }}
spec:
  intent:
    genericPlacementIntent: {{ .AddonsPlacementIntent }}

---
#create the generic placement intent
version: emco/v2
resourceContext:
  anchor: projects/{{ .ProjectName }}/composite-apps/{{ .AddonsApp }}/v1/deployment-intent-groups/{{ .AddonsDeploymentIntentGroup }}/generic-placement-intents
metadata :
  name: {{ .AddonsPlacementIntent }}
spec:
  logical-cloud: {{ .LogicalCloud }}

{{- range $index, $addon := .Addons }}
---
#add the app placement intent to the generic placement intent
version: emco/v2
resourceContext:
  anchor: projects/{{ $.ProjectName }}/composite-apps/{{ $.AddonsApp }}/v1/deployment-intent-groups/{{ $.AddonsDeploymentIntentGroup }}/generic-placement-intents/{{ $.AddonsPlacementIntent }}/app-intents
metadata:
  name: {{ $addon }}-placement-intent
spec:
  app-name: {{ $addon }}
  intent:
    allOf:
    - provider-name: {{ $.ClusterProvider }}
      cluster-label-name: {{ $.ClustersLabel }}
{{- end }}

---
#Approve
version: emco/v2
resourceContext:
  anchor: projects/{{ .ProjectName }}/composite-apps/{{ .AddonsApp }}/v1/deployment-intent-groups/{{ .AddonsDeploymentIntentGroup }}/approve

---
#Instantiate
version: emco/v2
resourceContext:
  anchor: projects/{{ .ProjectName }}/composite-apps/{{ .AddonsApp }}/v1/deployment-intent-groups/{{ .AddonsDeploymentIntentGroup }}/instantiate