diff options
author | Shashank Kumar Shankar <shashank.kumar.shankar@intel.com> | 2018-09-18 15:24:26 -0700 |
---|---|---|
committer | Victor Morales <victor.morales@intel.com> | 2018-09-19 02:52:12 -0700 |
commit | f5972d3c34b070d55300e2e1ace7b98b5065a3f0 (patch) | |
tree | 3f79b0803a4a631617265fc9d2814540a2ad3269 /vagrant/tests/edgex/deployments/device-bluetooth-deployment.yaml | |
parent | b368dfe25337494060eb8cd85a5becaf7a465643 (diff) |
Add EdgeX Foundry example VNFs
This patch adds EdgeX Foundry sample VNFs for integration testing.
Change-Id: I570850832854b76df3ba9613252b0b46302210f3
Signed-off-by: Shashank Kumar Shankar <shashank.kumar.shankar@intel.com>
Issue-ID: MULTICLOUD-301
Signed-off-by: Victor Morales <victor.morales@intel.com>
Diffstat (limited to 'vagrant/tests/edgex/deployments/device-bluetooth-deployment.yaml')
-rw-r--r-- | vagrant/tests/edgex/deployments/device-bluetooth-deployment.yaml | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/vagrant/tests/edgex/deployments/device-bluetooth-deployment.yaml b/vagrant/tests/edgex/deployments/device-bluetooth-deployment.yaml new file mode 100644 index 00000000..9dc96785 --- /dev/null +++ b/vagrant/tests/edgex/deployments/device-bluetooth-deployment.yaml @@ -0,0 +1,49 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: edgex-device-bluetooth + name: edgex-device-bluetooth +spec: + selector: + matchLabels: + io.kompose.service: edgex-device-bluetooth + replicas: 1 + template: + metadata: + creationTimestamp: null + labels: + io.kompose.service: edgex-device-bluetooth + spec: + containers: + - image: edgexfoundry/docker-device-bluetooth:0.2.1 + name: edgex-device-bluetooth + ports: + - containerPort: 49988 + resources: {} + securityContext: + privileged: true + volumeMounts: + - mountPath: /data/db + name: data-db + - mountPath: /edgex/logs + name: edgex-logs + - mountPath: /consul/config + name: consul-config + - mountPath: /consul/data + name: consul-data + restartPolicy: Always + volumes: + - name: data-db + hostPath: + path: /data/db + - name: edgex-logs + hostPath: + path: /edgex/logs + - name: consul-config + hostPath: + path: /consul/config + - name: consul-data + hostPath: + path: /consul/data +status: {} |