Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,26 @@ profiles:
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: "pdd-values-with-intel-gpu.yaml"
Expand Down Expand Up @@ -94,11 +114,91 @@ profiles:
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"
default: "1"
- name: "with-intel-npu"
description: "Uses NPU profile with privileged access enabled"
valuesFileName: "pdd-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"
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,9 @@ deploymentProfiles:
description: "Uses Intel GPU for inferencing, needs Intel GPU extension"
applicationProfiles:
- application: "pdd-app"
profile: "with-intel-gpu"
profile: "with-intel-gpu"
- name: "with-intel-npu"
description: "Uses NPU profile with privileged access enabled"
applicationProfiles:
- application: "pdd-app"
profile: "with-intel-npu"
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ env:
HOST_IP: # IP address of the target Edge Node, example: HOST_IP: 10.100.100.100
http_proxy: # example: http_proxy: http://proxy.example.com:891
https_proxy: # example: http_proxy: http://proxy.example.com:891
S3_STORAGE_PORT: 30800 # NodePort for MinIO service
MINIO_ACCESS_KEY: # example: MINIO_ACCESS_KEY: intel1234
MINIO_SECRET_KEY: # example: MINIO_SECRET_KEY: intel1234
POSTGRES_PASSWORD: # example: POSTGRES_PASSWORD: intel1234
Expand All @@ -16,6 +17,15 @@ env:
webrtcturnserver:
username: # example: username: myuser
password: # example: password: mypassword
config:
nginx:
ext:
http_port: 30080
https_port: 30443
coturn:
ext:
coturn_tcp_port: 30478
coturn_udp_port: 30478
gpu:
enabled: true
type: # example: type: "gpu.intel.com/i915 , gpu.intel.com/xe"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# SPDX-FileCopyrightText: (C) 2025 Intel Corporation
# SPDX-License-Identifier: LicenseRef-Intel
---
namespace: pdd
env:
HOST_IP: # IP address of the target Edge Node, example: HOST_IP: 10.100.100.100
http_proxy: # example: http_proxy: http://proxy.example.com:891
https_proxy: # example: http_proxy: http://proxy.example.com:891
S3_STORAGE_PORT: 30800 # NodePort for MinIO service
MINIO_ACCESS_KEY: # example: MINIO_ACCESS_KEY: intel1234
MINIO_SECRET_KEY: # example: MINIO_SECRET_KEY: intel1234
POSTGRES_PASSWORD: # example: POSTGRES_PASSWORD: intel1234
OPCUA_SERVER_IP: # IP address of the OPCUA server
OPCUA_SERVER_PORT: # example: 48010
OPCUA_SERVER_USERNAME: # example: root
OPCUA_SERVER_PASSWORD: # example: secret
webrtcturnserver:
username: # example: username: myuser
password: # example: password: mypassword
config:
nginx:
ext:
http_port: 30080
https_port: 30443
coturn:
ext:
coturn_tcp_port: 30478
coturn_udp_port: 30478
privileged_access_required: true
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ env:
HOST_IP: # IP address of the target Edge Node, example: HOST_IP: 10.100.100.100
http_proxy: # example: http_proxy: http://proxy.example.com:891
https_proxy: # example: http_proxy: http://proxy.example.com:891
S3_STORAGE_PORT: 30800 # NodePort for MinIO service
MINIO_ACCESS_KEY: # example: MINIO_ACCESS_KEY: intel1234
MINIO_SECRET_KEY: # example: MINIO_SECRET_KEY: intel1234
POSTGRES_PASSWORD: # example: POSTGRES_PASSWORD: intel1234
Expand All @@ -15,4 +16,13 @@ env:
OPCUA_SERVER_PASSWORD: # example: secret
webrtcturnserver:
username: # example: username: myuser
password: # example: password: mypassword
password: # example: password: mypassword
config:
nginx:
ext:
http_port: 30080
https_port: 30443
coturn:
ext:
coturn_tcp_port: 30478
coturn_udp_port: 30478
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,26 @@ profiles:
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"
Expand Down Expand Up @@ -94,11 +114,91 @@ profiles:
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"
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"
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,9 @@ deploymentProfiles:
description: "Uses Intel GPU for inferencing, needs Intel GPU extension"
applicationProfiles:
- application: "pcb-app"
profile: "with-intel-gpu"
profile: "with-intel-gpu"
- name: "with-intel-npu"
description: "Uses NPU profile with privileged access enabled"
applicationProfiles:
- application: "pcb-app"
profile: "with-intel-npu"
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ env:
HOST_IP: # IP address of the target Edge Node, example: HOST_IP: 10.100.100.100
http_proxy: # example: http_proxy: http://proxy.example.com:891
https_proxy: # example: http_proxy: http://proxy.example.com:891
S3_STORAGE_PORT: 30800 # NodePort for MinIO service
MINIO_ACCESS_KEY: # example: MINIO_ACCESS_KEY: intel1234
MINIO_SECRET_KEY: # example: MINIO_SECRET_KEY: intel1234
POSTGRES_PASSWORD: # example: POSTGRES_PASSWORD: intel1234
Expand All @@ -16,6 +17,15 @@ env:
webrtcturnserver:
username: # example: username: myuser
password: # example: password: mypassword
config:
nginx:
ext:
http_port: 30080
https_port: 30443
coturn:
ext:
coturn_tcp_port: 30478
coturn_udp_port: 30478
gpu:
enabled: true
type: # example: type: "gpu.intel.com/i915, gpu.intel.com/xe"
Expand Down
Loading