Add dbuf and pfcp agent

Change-Id: Iefcdbf1e2f32e0e97ec17abab85941615ba5bac6
diff --git a/sdfabric/values.yaml b/sdfabric/values.yaml
index 74ba821..c44a1a5 100644
--- a/sdfabric/values.yaml
+++ b/sdfabric/values.yaml
@@ -9,6 +9,12 @@
     username: changeit
     password: changeit
 
+import:
+  pfcp-agent:
+    enabled: false
+  dbuf:
+    enabled: false
+
 onos-classic:
   image:
     repository: registry.aetherproject.org/tost/tost
@@ -90,8 +96,6 @@
     repository: stratumproject/stratum-bfrt
     tag: 21.09.24-9.5.0
     pullPolicy: IfNotPresent
-    pullSecrets:
-      - *image-secret-name
 
   annotations:
     fluentbit.io/parser: stratum
@@ -108,3 +112,98 @@
   #     value: switch
   #     effect: NoSchedule
   config: false
+
+pfcp-agent:
+  images:
+    tags:
+      init: registry.aetherproject.org/tools/busybox:stable
+      pfcpiface: "registry.aetherproject.org/proxy/omecproject/upf-epc-pfcpiface:master-fcdbc95"
+    pullPolicy: Always
+    pullSecrets:
+      - *image-secret-name
+  nodeSelectors:
+    enabled: false
+    pfcp:
+      label: omec-upf
+      value: enabled
+  resources:
+    enabled: true
+    pfcpiface:
+      requests:
+        cpu: 256m
+        memory: 128Mi
+      limits:
+        cpu: 256m
+        memory: 128Mi
+  config:
+    coreDump:
+      enabled: false
+      path: /tmp/coredump
+    pfcp:
+      cfgFiles:
+        upf.json:
+          measure: true
+          enable_p4rt: true
+          p4rtciface:
+            access_ip: "172.17.0.1/32"
+            p4rtc_server: "sdfabric-onos-classic-hs.sdfabric"
+            p4rtc_port: "51001"
+  service:
+    type: ClusterIP
+    #externalIp:
+    #annotations:
+
+dbuf:
+  image:
+    repository: registry.aetherproject.org/tost/dbuf
+    pullPolicy: Always
+    tag: "latest"
+    pullSecrets:
+      - *image-secret-name
+  extraParams:
+    - '"-max_queues=1024"'
+  replicaCount: 1
+  sriovNICSize: 1
+  sriovResourceName: intel_sriov_netdevice
+  # Change both in the same time
+  multusNetworkName: dbuf-sriov
+  podAnnotations:
+    k8s.v1.cni.cncf.io/networks: dbuf-sriov@net0
+  podSecurityContext: {}
+  resources:
+    requests:
+      intel.com/intel_sriov_netdevice: "1"
+    limits:
+      intel.com/intel_sriov_netdevice: "1"
+  nodeSelector: {}
+  tolerations: []
+  affinity: {}
+  # onos inforamtion
+  onos:
+    server: sdfabric-onos-classic-hs.sdfabric
+    port: 8181
+    username: onos
+    password: rocks
+  dataplane:
+    port: 2152
+    interface: "net0"
+  prometheus_enable: true
+  service:
+    stats:
+      port: 8080
+      protocol: TCP
+    grpc:
+      port: 10000
+      protocol: TCP
+  # two options for ipam, dhcp or host-local
+  # static is for host-local ipam
+  network:
+    #  ipam: dhcp
+    ipam: host-local
+    static:
+      subnets: "10.56.217.0/24"
+      gateway: "10.56.217.1"
+    # route the following subnets via sr-iov interface
+    # route: 10.56.215.0/24,10.56.214.0/24
+    route: ""
+    #vlan:
\ No newline at end of file