Add Kubernetes manifests for communitarian application including deployments, services, ingress, middleware, PVC, and kustomization

This commit is contained in:
2026-02-18 13:23:04 +00:00
parent 1e8425c98d
commit f9938f4ca6
10 changed files with 242 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
apiVersion: v1
kind: Service
metadata:
name: communitarian-api
namespace: "{{ .namespace }}"
spec:
selector:
component: api
ports:
- port: {{ .apiPort }}
targetPort: {{ .apiPort }}
protocol: TCP
name: http