forked from adobe/himl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.yaml
More file actions
66 lines (58 loc) · 1.49 KB
/
default.yaml
File metadata and controls
66 lines (58 loc) · 1.49 KB
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
env: default
region: default
cluster: default
cluster_info:
name: default # this will be overridden by the inner cluster.yaml file
# Interpolation example
description: "This is cluster: {{cluster}}. It is using {{cluster_info.node_type}} instance type."
node_type: c3.2xlarge # default value, which can be overridden by each cluster
cluster_metrics:
- id: 1
metric: cpu
value: 90
- id: 2
metric: memory
value: 90
- id: 3
metric: disk
value: 90
metrics:
- cpu
- memory
- disk
myList:
- id1
- id4
# Fetching the secret value at runtime, from a secrets store (in this case AWS SSM).
# passphrase: "{{ssm.path(/key/coming/from/aws/secrets/store/manager).aws_profile(myprofile)}}"
# Fetching the value at runtime from S3
# my_secret: "{{s3.bucket(my-bucket).path(path/to/file.txt).base64encode(true).aws_profile(myprofile)}}"
_filters:
# Keep _filters key for all outputs. No selector matches all outputs by default.
# - keys:
# values:
# - "_filters"
- selector:
cluster: "cluster.*"
keys:
values:
- persisted_key
# - persisted_key_referenced
# - persisted_key_to_drop
# - persisted_key_to_drop2
# - cluster_persisted_object
# - cluster_persisted_list
- selector:
cluster: cluster1
keys:
values:
- testkey
- home
- cluster_persisted_key
- selector:
cluster: cluster2
keys:
values:
- metrics
- myList
regex: ".*persisted.*"