Skip to content
Open
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
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{{- range $conf := .Values.dpuServices }}
---
apiVersion: svc.dpu.nvidia.com/v1alpha1
kind: DPUService
metadata:
name: {{ $conf.name | quote }}
namespace: {{ $.Release.Namespace }}
spec:
{{- if $conf.configPorts }}
configPorts: {{ $conf.configPorts | toYaml | nindent 4 }}
{{- end }}
{{- if $conf.deployInCluster }}
deployInCluster: {{ $conf.deployInCluster }}
{{- end }}
{{- if $conf.helmChart }}
helmChart: {{ $conf.helmChart | toYaml | nindent 4 }}
{{- end }}
{{- if $conf.interfaces }}
interfaces: {{ $conf.interfaces | toYaml | nindent 4 }}
{{- end }}
{{- if $conf.paused }}
paused: {{ $conf.paused }}
{{- end }}
{{- if $conf.serviceDaemonSet }}
serviceDaemonSet: {{ $conf.serviceDaemonSet | toYaml | nindent 4 }}
{{- end }}
{{- if $conf.serviceID }}
serviceID: {{ $conf.serviceID }}
{{- end }}
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,32 @@ dpuSets:
nodeEffect:
noEffect: true

dpuServices:
- name: doca-hna-service
helmChart:
source:
repoURL: "https://myrepo.company.com/charts"
chart: "hna-chart"
version: "0.1.0"
values:
image:
repository: download.6wind.com/vsr/aarch64-generic-ce/3.999
tag: 3.999.0.2026.02.09
resources:
limits:
cpu: "4"
requests:
cpu: "4"
serviceDaemonSet:
updateStrategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 1
labels:
dpuservice.dpu.nvidia.com/name: doca-hna-service
annotations:
dpuservice.dpu.nvidia.com/name: doca-hna-service

dpuServiceChains:
- name: passthrough
template:
Expand Down
4 changes: 4 additions & 0 deletions packs/nvidia-dpf-deployment-25.10.1/presets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ presets:
raw: ""
permissions: "0644"

dpuServices: []

dpuServiceConfigurations:
- name: blueman
- name: dts
Expand Down Expand Up @@ -461,6 +463,8 @@ presets:
nodeEffect:
noEffect: true

dpuServices: []

dpuServiceConfigurations: []

dpuDeployments: []
Expand Down
13 changes: 12 additions & 1 deletion packs/nvidia-dpf-deployment-25.10.1/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,16 @@ pack:
images: []

charts:
dpf-deployment: {}
dpf-deployment:
bfb: {}
dpuFlavors: []
dpuSets: []
dpuServices: []
dpuServiceChains: []
dpuServiceConfigurations: []
dpuDeployments: []
dpuServiceTemplates: []
dpuServiceInterfaces: []
dpuServiceCredentialRequests: []
dpuServiceIPAMs: []
# Please select a preset to populate a starting configuration
Loading