generated from coulomb/repo-seed
Some checks failed
Test / test (push) Has been cancelled
Helm chart at deploy/helm/inter-hub/ with Deployment, Service, Ingress (Traefik + letsencrypt-prod), and migration init container. Runbook at deploy/railiance/RUNBOOK.md with build, push, rotate, rollback procedures. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
16 lines
317 B
YAML
16 lines
317 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ .Release.Name }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
app: {{ .Release.Name }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
selector:
|
|
app: {{ .Release.Name }}
|
|
ports:
|
|
- port: {{ .Values.service.port }}
|
|
targetPort: 8000
|
|
protocol: TCP
|