-
Notifications
You must be signed in to change notification settings - Fork 2
/
values.yaml
218 lines (202 loc) · 5.47 KB
/
values.yaml
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
## for NATS service configuration see #scripts/nats-bootstrap/values-nats.yaml.tmpl
image: &image_anchor
image:
pullPolicy: Always
repository:
tag: latest
url: ghcr.io/metal-toolbox
env: &env_anchor
env:
namespace: default
facility: sandbox
log_level: debug
endpoints:
nats:
url: nats://nats:4222
timeout: 60s
otel:
authenticate: false
url: jaeger:4317
fleetdb:
authenticate: false
url: http://fleetdb:8000
oidc_audience_url: # to be filled once oauth is available in the sandbox
oidc_issuer_url: # to be filled once oauth is available in the sandbox
oidc_client_id: # to be filled by each service below (exampe: conditionorc.env.endpoints.fleetdb.client_id)
oidc_scopes: # to be filled by each service below (exampe: conditionorc.env.endpoints.fleetdb.client_scopes)
conditionorc:
authenticate: false
url: http://conditionorc-api:9001
oidc_audience_url: # to be filled once oauth is available in the sandbox
oidc_issuer_url: # to be filled once oauth is available in the sandbox
oidc_client_id: # to be filled by each service below (exampe: flasher.env.endpoints.conditionorc.client_id)
oidc_scopes: # to be filled by each service below (exampe: flasher.env.endpoints.conditionorc.client_scopes)
component_inventory:
authenticate: false
url: http://component-inventory:8020
fleetdb:
enable_oidc: false
<<: *env_anchor
<<: *image_anchor
image: # Temporary until helm chart conversion is done
pullPolicy: Always
repository:
tag: latest
url: localhost:5001
nats:
publishStreamPrefix: com.hollow.sh.fleetdb.events
conditionorc:
<<: *image_anchor
<<: *env_anchor
conditions_api:
enable_server_enroll: true
enable_inband_firmware_install: true
orchestrator_api:
image: # Temporary until helm chart conversion is done
pullPolicy: Always
repository:
tag: latest
url: localhost:5001
# uncomment once oauth service is availble in sandbox
# env:
# endpoints:
# fleetdb:
# client_id: conditionorc-api
# client_scopes: "read:server create:server:attributes update:server:attributes delete:server:attributes"
flasher:
<<: *env_anchor
<<: *image_anchor
image: # Temporary until helm chart conversion is done
pullPolicy: Always
repository:
tag: latest
url: localhost:5001
# uncomment once oauth service is availble in sandbox
# env:
# endpoints:
# fleetdb:
# client_id: flasher
# client_scopes: "read:server read:server:credentials read:server:component read:server:versioned-attributes read:server-component-firmwares read:server-component-firmware-sets"
alloy:
<<: *env_anchor
<<: *image_anchor
image:
pullPolicy: Always
repository:
tag: latest
url: localhost:5001
syncer:
enable_cronjob: false
enable_job: false
enable_env: false
schedule: '"00 08 * * *"'
<<: *env_anchor
<<: *image_anchor
image: # Temporary until helm chart conversion is done
pullPolicy: Always
repository:
tag: latest
url: localhost:5001
endpoints:
s3: &s3_endpoint_anchor
region: us-east-1
url: us-east-1
bucket: bucket1
access_key: accessKey
secret_key: secretKet
asrr:
<<: *s3_endpoint_anchor
github:
openbmc_token: redacted
artifacts:
url: http://minio:9000
firmware_manifest:
url: http://modeldata/modeldata.json
fleet-scheduler:
enable: false # when enabled, metal-toolbox/fleet-scheduler will need to be deployed with `make push-image-devel`
<<: *image_anchor
<<: *env_anchor
# uncomment once oauth service is availble in sandbox
# env:
# endpoints:
# fleetdb:
# client_id: fleetscheduler
# client_scopes: "read:server"
# endpoints:
# conditionorc:
# client_id: fleetscheduler
# client_scopes: "read:condition create:condition"
flipflop:
enable: true
<<: *env_anchor
<<: *image_anchor
image:
pullPolicy: Always
repository:
tag: latest
url: localhost:5001
bioscfg:
enable: true
<<: *env_anchor
<<: *image_anchor
image:
pullPolicy: Always
repository:
tag: latest
url: localhost:5001
minio:
fullnameOverride: minio
environment:
MINIO_DOMAIN: minio
resources:
requests:
memory: 512Mi
replicas: 1
persistence:
enabled: false
mode: standalone
rootUser: rootuser
rootPassword: rootpass123
buckets:
- name: bucket1
policy: none
purge: false
svcaccts:
- user: rootuser
accessKey: accessKey
secretKey: secretKey
crdb:
image: cockroachdb/cockroach:latest-v21.1
chaos-mesh:
enabled: false
#https://github.com/chaos-mesh/chaos-mesh/tree/master/helm/chaos-mesh
controllerManager:
leaderElection:
enabled: false
dashboard:
securityMode: false
chaosDaemon:
runtime: containerd
socketPath: /run/containerd/containerd.sock
# Enable the push gateway to collect metrics from fleetscheduler
prometheus-pushgateway:
enable: false
fullnameOverride: fleet-pushgateway
resources:
limits:
cpu: 300m
memory: 150Mi
requests:
cpu: 300m
memory: 150Mi
service:
port: 9090
broker:
enable: false
<<: *env_anchor
<<: *image_anchor
image:
pullPolicy: Always
repository: "localhost:5001/metal-broker"
tag: latest
pullPolicy: Always