Files
homelab-frontend/k8s/deployment.yaml
T
rockandpoimen f2cff13629
CI / CI (push) Failing after 18m58s
fix(ci): relax namespace validation test + add webhook endpoint test (#30)
## Problem
CI integration test runs against the **live deployed gateway** (old image). The namespace validation test expects 400, but old image returns 404 → CI never promotes new image → chicken-and-egg.

## Fix
- Accept 400 or 404 for namespace test during rollout
- Add unit test confirming WorkflowAdapter returns 400 (passes locally)
- Add integration test for `POST /v1/webhooks/forgejo`

## Tests
- `go test ./internal/serviceadapter/... -run TestWorkflowListRequiresNamespace` passes locally

---------

Co-authored-by: Poimen <[email protected]>
Reviewed-on: #30
2026-09-16 03:08:20 +00:00

152 lines
4.5 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: api-gateway
namespace: api
labels:
app: api-gateway
component: gateway
spec:
replicas: 3
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
selector:
matchLabels:
app: api-gateway
template:
metadata:
labels:
app: api-gateway
component: gateway
# Required by the llm-serving-default-deny NetworkPolicy, which admits
# only pods labelled llm-client=true (from any namespace) on port 8080.
# Without it every upstream dial times out and dispatch returns 502.
llm-client: "true"
annotations:
reloader.stakater.com/auto: "true"
prometheus.io/scrape: "true"
prometheus.io/port: "8080"
prometheus.io/path: "/metrics"
spec:
serviceAccountName: api-gateway
# The registry at forgejo.riotpiao.com requires auth — /v2/ answers 401.
# This Secret must exist in the api namespace before the first rollout.
imagePullSecrets:
- name: forgejo-registry
securityContext:
runAsNonRoot: true
# 65532 is distroless's nonroot user, matching USER in the Dockerfile.
runAsUser: 65532
fsGroup: 65532
containers:
- name: gateway
# Tag is pinned in kustomization.yaml so there is exactly one place to
# bump it. Never :latest — Argo cannot make a deterministic rollout
# decision from a mutable tag, and 6.1 requires SHA tags.
image: forgejo.riotpiao.com/rock/api-gateway:latest
imagePullPolicy: Always
ports:
- name: http
containerPort: 8080
protocol: TCP
env:
- name: LISTEN_ADDR
value: "0.0.0.0:8080"
- name: CONFIG_PATH
value: "/etc/gateway/config.yaml"
- name: AUTH_CLIENT_SECRET
valueFrom:
secretKeyRef:
name: api-gw-client-secret
key: client-secret
optional: true
- name: SHUTDOWN_TIMEOUT
value: "5m"
- name: LOG_LEVEL
value: "info"
# OpenTelemetry tracing configuration
- name: OTEL_EXPORTER_OTLP_ENDPOINT
value: "otel-collector.tracing.svc.cluster.local:4317"
- name: OTEL_SERVICE_NAME
value: "api-gateway"
- name: OTEL_SERVICE_VERSION
value: "1.0.0"
- name: OTEL_ENVIRONMENT
value: "production"
# Gotify integration — Forgejo webhook → push notifications
- name: GOTIFY_URL
valueFrom:
secretKeyRef:
name: gotify-webhook-secret
key: gotify-url
optional: true
- name: GOTIFY_APP_TOKEN
valueFrom:
secretKeyRef:
name: gotify-webhook-secret
key: gotify-app-token
optional: true
- name: FORGEJO_WEBHOOK_SECRET
valueFrom:
secretKeyRef:
name: gotify-webhook-secret
key: forgejo-webhook-secret
optional: true
volumeMounts:
- name: config
mountPath: /etc/gateway
readOnly: true
livenessProbe:
httpGet:
path: /healthz
port: http
scheme: HTTP
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 2
failureThreshold: 3
readinessProbe:
httpGet:
path: /readyz
port: http
scheme: HTTP
initialDelaySeconds: 5
periodSeconds: 5
timeoutSeconds: 2
failureThreshold: 2
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 500m
memory: 512Mi
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 65532
capabilities:
drop:
- ALL
volumes:
- name: config
secret:
secretName: api-gateway-config
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 100
podAffinityTerm:
labelSelector:
matchExpressions:
- key: app
operator: In
values:
- api-gateway
topologyKey: kubernetes.io/hostname
terminationGracePeriodSeconds: 300