mirror of
https://github.com/hcengineering/platform.git
synced 2025-01-30 15:25:15 +00:00
c713a07531
Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
33 lines
488 B
YAML
33 lines
488 B
YAML
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: front
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: front
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: front
|
|
spec:
|
|
containers:
|
|
- name: app
|
|
image: anticrm/front
|
|
ports:
|
|
- containerPort: 8080
|
|
imagePullPolicy: Always
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: front
|
|
spec:
|
|
selector:
|
|
app: front
|
|
ports:
|
|
- port: 80
|
|
targetPort: 8080
|