diff --git a/p2/confs/app1.yaml b/p2/confs/app1.yaml new file mode 100644 index 0000000..2dc7262 --- /dev/null +++ b/p2/confs/app1.yaml @@ -0,0 +1,21 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: app1-deployment + labels: + app: app1 +spec: + replicas: 1 + selector: + matchLabels: + app: app1 + template: + metadata: + labels: + app: app1 + spec: + containers: + - name: app1 + image: nginx:1.14.2 + ports: + - containerPort: 80