diff options
author | Peter Mikus <pmikus@cisco.com> | 2019-11-13 13:30:48 +0000 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2019-11-13 13:33:53 +0000 |
commit | 7de465c09018b1cf739a28992fe198ccd5f5699d (patch) | |
tree | e8c02828cf39619e73d0d927012a3aa0a79b598b /resources/templates/kubernetes/pods/contiv-vswitch.yaml | |
parent | 3a42930d52dca48f4df64f9d7816dfc95c286a16 (diff) |
LIGATO: Remove
Signed-off-by: Peter Mikus <pmikus@cisco.com>
Change-Id: I0c9b8b07ed3a113e24a38faaddd5ed06fae67768
Diffstat (limited to 'resources/templates/kubernetes/pods/contiv-vswitch.yaml')
-rw-r--r-- | resources/templates/kubernetes/pods/contiv-vswitch.yaml | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/resources/templates/kubernetes/pods/contiv-vswitch.yaml b/resources/templates/kubernetes/pods/contiv-vswitch.yaml deleted file mode 100644 index e987307195..0000000000 --- a/resources/templates/kubernetes/pods/contiv-vswitch.yaml +++ /dev/null @@ -1,54 +0,0 @@ -apiVersion: v1 -kind: Pod -metadata: - name: vswitch-vpp - namespace: csit -spec: - hostNetwork: true - containers: - - name: "vswitch" - image: prod_vpp_agent - imagePullPolicy: IfNotPresent - securityContext: - privileged: true - ports: - - containerPort: 5002 - - containerPort: 9191 - readinessProbe: - httpGet: - path: /readiness - port: 9191 - periodSeconds: 1 - livenessProbe: - httpGet: - path: /liveness - port: 9191 - periodSeconds: 1 - initialDelaySeconds: 15 - env: - - name: MICROSERVICE_LABEL - value: vswitch - - name: INITIAL_LOGLVL - value: debug - volumeMounts: - - name: vpp-config - mountPath: /etc/vpp - - name: agent-config - mountPath: /opt/vpp-agent/dev - - name: memif-sockets - mountPath: /tmp - - name: device-uio - mountPath: /dev - volumes: - - name: vpp-config - configMap: - name: vswitch-vpp-cfg - - name: agent-config - configMap: - name: vswitch-agent-cfg - - name: memif-sockets - hostPath: - path: /tmp - - name: device-uio - hostPath: - path: /dev |