Add K8s app deployment, Dockerfile, and CI workflow (Option A)

This commit is contained in:
Story Crater Bot
2026-08-23 00:01:30 -07:00
parent 9ca988aeb3
commit eaed7fc42a
8 changed files with 272 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
# Poimen Memory API Service
apiVersion: v1
kind: Service
metadata:
name: poimen-memory
namespace: poimen
labels:
app.kubernetes.io/name: poimen-memory
spec:
type: ClusterIP
ports:
- port: 8080
targetPort: http
protocol: TCP
name: http
selector:
app.kubernetes.io/name: poimen-memory