-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathapplication.yaml
More file actions
167 lines (164 loc) · 4.94 KB
/
application.yaml
File metadata and controls
167 lines (164 loc) · 4.94 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
# 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: ld-app
version: 1.4.0
description: "Loitering Detection Sample Application"
helmRegistry: "docker-hub"
chartName: "intel/loitering-detection"
chartVersion: "1.4.0"
profiles:
- name: "default"
description: "Uses CPU for inferencing"
valuesFileName: "ld-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.no_proxy
displayName: "No proxy"
type: string
default: "localhost,127.0.0.1"
- 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: "30386"
- name: config.coturn.ext.coturn_udp_port
displayName: "Coturn UDP NodePort"
type: number
default: "30386"
- name: "with-intel-gpu"
description: "Uses Intel GPU for inferencing, needs Intel GPU extension"
valuesFileName: "ld-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.no_proxy
displayName: "No proxy"
type: string
default: "localhost,127.0.0.1"
- 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: "30386"
- name: config.coturn.ext.coturn_udp_port
displayName: "Coturn UDP NodePort"
type: number
default: "30386"
- 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 for inferencing"
valuesFileName: "ld-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.no_proxy
displayName: "No proxy"
type: string
default: "localhost,127.0.0.1"
- 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: "30386"
- name: config.coturn.ext.coturn_udp_port
displayName: "Coturn UDP NodePort"
type: number
default: "30386"
- name: gpu.type
displayName: "NPU type"
type: string
default: "npu.intel.com/accel"
- name: gpu.count
displayName: "NPU count"
type: number
default: "1"