blob: 6b625ed96d8fa23cc8e0a83ff16432a7f518c137 [file] [log] [blame]
Hyunsun Moone8558652019-08-15 13:16:46 -06001{{/*
2Copyright 2018-present Open Networking Foundation
3Copyright 2018 Intel Corporation
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16*/}}
17
Wei-Yu Chen0f12b9c2019-04-18 11:12:59 -070018---
19kind: ConfigMap
20apiVersion: v1
21metadata:
22 name: sriov-config
Wei-Yu Chen0f12b9c2019-04-18 11:12:59 -070023data:
24 config.json: |
25 {
Hyunsun Moonc4a7d542019-08-22 18:53:40 -050026 "resourceList": [
27 {
28 "resourceName": "sriov_vfio",
29 "selectors": {
30 "pfNames": {{ toJson .Values.config.sriov.resourceList.vfio.pfNames }},
31 "drivers": ["vfio-pci"]
32 }
33 }
34{{- if hasKey .Values.config.sriov.resourceList "netDevice" }}
35 ,
36 {
37 "resourceName": "sriov_netdevice",
38 "selectors": {
39 "pfNames": {{ toJson .Values.config.sriov.resourceList.netDevice.pfNames }},
40 "drivers": {{ toJson .Values.config.sriov.resourceList.netDevice.drivers }}
41 }
42 }
43{{- end }}
44 ]
Wei-Yu Chen0f12b9c2019-04-18 11:12:59 -070045 }