initial commit

Signed-off-by: Ava Affine <ava@sunnypup.io>
This commit is contained in:
Ava Apples Affine 2025-07-18 11:27:07 -07:00
commit aca076e864
21 changed files with 1558 additions and 0 deletions

39
templates/echo.yaml Normal file
View file

@ -0,0 +1,39 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: echo
spec:
replicas: 1
selector:
matchLabels:
app: echo
template:
metadata:
labels:
app: echo
spec:
containers:
- name: echo-server
image: jmalloc/echo-server
ports:
- name: http-port
containerPort: 8080
env:
- name: LOG_HTTP_BODY
value: "true"
- name: LOG_HTTP_HEADERS
value: "true"
---
apiVersion: v1
kind: Service
metadata:
name: echo
spec:
clusterIP: None
ports:
- name: http-port
port: 8080
targetPort: http-port
protocol: TCP
selector:
app: echo