aboutsummaryrefslogtreecommitdiffstats
path: root/tools/k8s/app-deployment/helm/charts/pod.yaml
blob: 942c8f979d6bb6d487c51a130d998d5e1b5a873e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
apiVersion: v1
kind: Pod
metadata:
  name: nginx
  annotations:
    k8s.v1.cni.cncf.io/networks: mynet

spec:
  containers:
    - name: prox
      image: opnfv/rapid:latest
      imagePullPolicy: IfNotPresent
      ports:
        - containerPort: 3000
    - name: nginx
      image: nginx:alpine
      ports:
        - containerPort: 80