You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
384 B
YAML
23 lines
384 B
YAML
3 years ago
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: frontend
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: frontend
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: frontend
|
||
|
spec:
|
||
|
containers:
|
||
|
- image: phico/frontend:1.0
|
||
|
imagePullPolicy: Always
|
||
|
name: frontend
|
||
|
ports:
|
||
|
- name: frontend
|
||
|
containerPort: 4200
|
||
|
|