21 lines
360 B
YAML
21 lines
360 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: contact-form-deployment
|
|
labels:
|
|
app: contact-form
|
|
spec:
|
|
replicas: 2
|
|
selector:
|
|
matchLabels:
|
|
app: contact-form
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: contact-form
|
|
spec:
|
|
containers:
|
|
- name: contact-form
|
|
image: localhost:30100/contact-form:v0.0.5
|