-
Notifications
You must be signed in to change notification settings - Fork 0
/
helmwave.yml
90 lines (77 loc) · 1.69 KB
/
helmwave.yml
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
version: 0.19.5
.options: &options
namespace: microservices-demo
wait: true
timeout: 300s
create_namespace: true
releases:
- name: adservice
chart:
name: charts/adservice
tags: [adservice]
values:
- envs-values/stage/adservice.yaml
<<: *options
- name: cartservice
chart:
name: charts/cartservice
tags: [cartservice]
values:
- envs-values/stage/cartservice.yaml
<<: *options
- name: checkoutservice
chart:
name: charts/checkoutservice
tags: [checkoutservice]
values:
- envs-values/stage/checkoutservice.yaml
<<: *options
- name: currencyservice
chart:
name: charts/currencyservice
tags: [currencyservice]
values:
- envs-values/stage/currencyservice.yaml
<<: *options
- name: emailservice
chart:
name: charts/emailservice
tags: [emailservice]
values:
- envs-values/stage/emailservice.yaml
<<: *options
- name: frontend
chart:
name: charts/frontend
tags: [frontend]
values:
- envs-values/stage/frontend.yaml
<<: *options
- name: paymentservice
chart:
name: charts/paymentservice
tags: [paymentservice]
values:
- envs-values/stage/paymentservice.yaml
<<: *options
- name: productcatalogservice
chart:
name: charts/productcatalogservice
tags: [productcatalogservice]
values:
- envs-values/stage/productcatalogservice.yaml
<<: *options
- name: recommendationservice
chart:
name: charts/recommendationservice
tags: [recommendationservice]
values:
- envs-values/stage/recommendationservice.yaml
<<: *options
- name: shippingservice
chart:
name: charts/shippingservice
tags: [shippingservice]
values:
- envs-values/stage/shippingservice.yaml
<<: *options