Added configs

This commit is contained in:
gabenov.s
2025-10-27 21:21:00 +03:00
parent 04add9903c
commit 82744a8abb
3 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
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