apiVersion: apps/v1 kind: Deployment metadata: name: front spec: replicas: 1 revisionHistoryLimit: 3 selector: matchLabels: app: front template: metadata: labels: app: front spec: containers: - image: collab-front name: front imagePullPolicy: Always tty: true resources: limits: memory: "256Mi" cpu: "500m" ports: - name: web containerPort: 80 env: - name: BASE_URL value: http://localhost/api/ - name: LOGOUT_URL value: http://localhost