-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathapplication.yaml
More file actions
204 lines (201 loc) · 6.03 KB
/
application.yaml
File metadata and controls
204 lines (201 loc) · 6.03 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
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
# SPDX-FileCopyrightText: (C) 2025 Intel Corporation
# SPDX-License-Identifier: LicenseRef-Intel
---
specSchema: "Application"
schemaVersion: "0.1"
$schema: "https://schema.intel.com/catalog.orchestrator/0.1/schema"
name: pcb-app
version: 1.2.0-rc1
description: "PCB Anomaly Detection Sample Application"
helmRegistry: "docker-hub"
chartName: "intel/pcb-anomaly-detection"
chartVersion: "1.2.0-rc1"
profiles:
- name: "default"
description: "Uses CPU for inferencing"
valuesFileName: "pcb-values.yaml"
parameterTemplates:
- name: env.HOST_IP
displayName: "IP address of the target Edge Node"
type: string
mandatory: true
- name: webrtcturnserver.username
displayName: "WebRTC user"
type: string
mandatory: true
- name: webrtcturnserver.password
displayName: "WebRTC password"
type: string
secret: true
mandatory: true
- name: env.http_proxy
displayName: "Http proxy"
type: string
default: ""
- name: env.https_proxy
displayName: "Https proxy"
type: string
default: ""
- name: env.MINIO_ACCESS_KEY
displayName: "Minio access key"
type: string
secret: true
mandatory: true
- name: env.MINIO_SECRET_KEY
displayName: "Minio secret key"
type: string
secret: true
mandatory: true
- name: env.POSTGRES_PASSWORD
displayName: "Postgres database password"
type: string
secret: true
mandatory: true
- name: env.S3_STORAGE_PORT
displayName: "MinIO NodePort"
type: number
default: "30800"
- name: config.nginx.ext.http_port
displayName: "Nginx HTTP NodePort"
type: number
default: "30080"
- name: config.nginx.ext.https_port
displayName: "Nginx HTTPS NodePort"
type: number
default: "30443"
- name: config.coturn.ext.coturn_tcp_port
displayName: "Coturn TCP NodePort"
type: number
default: "30478"
- name: config.coturn.ext.coturn_udp_port
displayName: "Coturn UDP NodePort"
type: number
default: "30478"
- name: "with-intel-gpu"
description: "Uses Intel GPU for inferencing, needs Intel GPU extension"
valuesFileName: "pcb-values-with-intel-gpu.yaml"
parameterTemplates:
- name: env.HOST_IP
displayName: "IP address of the target Edge Node"
type: string
mandatory: true
- name: webrtcturnserver.username
displayName: "WebRTC user"
type: string
mandatory: true
- name: webrtcturnserver.password
displayName: "WebRTC password"
type: string
secret: true
mandatory: true
- name: env.http_proxy
displayName: "Http proxy"
type: string
default: ""
- name: env.https_proxy
displayName: "Https proxy"
type: string
default: ""
- name: env.MINIO_ACCESS_KEY
displayName: "Minio access key"
type: string
secret: true
mandatory: true
- name: env.MINIO_SECRET_KEY
displayName: "Minio secret key"
type: string
secret: true
mandatory: true
- name: env.POSTGRES_PASSWORD
displayName: "Postgres database password"
type: string
secret: true
mandatory: true
- name: env.S3_STORAGE_PORT
displayName: "MinIO NodePort"
type: number
default: "30800"
- name: config.nginx.ext.http_port
displayName: "Nginx HTTP NodePort"
type: number
default: "30080"
- name: config.nginx.ext.https_port
displayName: "Nginx HTTPS NodePort"
type: number
default: "30443"
- name: config.coturn.ext.coturn_tcp_port
displayName: "Coturn TCP NodePort"
type: number
default: "30478"
- name: config.coturn.ext.coturn_udp_port
displayName: "Coturn UDP NodePort"
type: number
default: "30478"
- name: gpu.type
displayName: "GPU type"
type: string
default: "gpu.intel.com/i915"
- name: gpu.count
displayName: "GPU count"
type: number
default: "1"
- name: "with-intel-npu"
description: "Uses NPU profile with privileged access enabled"
valuesFileName: "pcb-values-with-intel-npu.yaml"
parameterTemplates:
- name: env.HOST_IP
displayName: "IP address of the target Edge Node"
type: string
mandatory: true
- name: webrtcturnserver.username
displayName: "WebRTC user"
type: string
mandatory: true
- name: webrtcturnserver.password
displayName: "WebRTC password"
type: string
secret: true
mandatory: true
- name: env.http_proxy
displayName: "Http proxy"
type: string
default: ""
- name: env.https_proxy
displayName: "Https proxy"
type: string
default: ""
- name: env.MINIO_ACCESS_KEY
displayName: "Minio access key"
type: string
secret: true
mandatory: true
- name: env.MINIO_SECRET_KEY
displayName: "Minio secret key"
type: string
secret: true
mandatory: true
- name: env.POSTGRES_PASSWORD
displayName: "Postgres database password"
type: string
secret: true
mandatory: true
- name: env.S3_STORAGE_PORT
displayName: "MinIO NodePort"
type: number
default: "30800"
- name: config.nginx.ext.http_port
displayName: "Nginx HTTP NodePort"
type: number
default: "30080"
- name: config.nginx.ext.https_port
displayName: "Nginx HTTPS NodePort"
type: number
default: "30443"
- name: config.coturn.ext.coturn_tcp_port
displayName: "Coturn TCP NodePort"
type: number
default: "30478"
- name: config.coturn.ext.coturn_udp_port
displayName: "Coturn UDP NodePort"
type: number
default: "30478"