diff --git a/apps/whoami/Deployment.yaml b/apps/whoami/Deployment.yaml new file mode 100644 index 0000000..df77b35 --- /dev/null +++ b/apps/whoami/Deployment.yaml @@ -0,0 +1,25 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: whoami +spec: + replicas: 1 + selector: + matchLabels: + app: whoami + template: + metadata: + labels: + app: whoami + spec: + containers: + - name: whoami + image: traefik/whoami:v1.10 + ports: + - containerPort: 80 + resources: + requests: + cpu: 10m + memory: 16Mi + limits: + memory: 64Mi