-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathapplication.yaml
More file actions
82 lines (79 loc) · 2.3 KB
/
application.yaml
File metadata and controls
82 lines (79 loc) · 2.3 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
# 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: sp-app
version: 1.3.0
description: "Smart Parking Sample Application"
helmRegistry: "docker-hub"
chartName: "intel/smart-parking"
chartVersion: "1.3.0"
profiles:
- name: "default"
description: "Uses CPU for inferencing"
valuesFileName: "sp-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: "with-intel-gpu"
description: "Uses Intel GPU for inferencing, needs Intel GPU extension"
valuesFileName: "sp-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: gpu.type
displayName: "GPU type"
type: string
default: "gpu.intel.com/i915"
- name: gpu.count
displayName: "GPU count"
type: number
default: "1"