22 lines
415 B
YAML
22 lines
415 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: backend
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: backend
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: backend
|
|
spec:
|
|
containers:
|
|
- name: http-echo
|
|
image: hashicorp/http-echo:0.2.3
|
|
args:
|
|
- "-listen=:8080"
|
|
- "-text=Hello from the Backend!"
|
|
ports:
|
|
- containerPort: 8080 |