WP-0011: deploy scaffolding for revenue.coulomb.social
Record T01 package (in-repo k8s/railiance, combined /ui + API app, dedicated CNPG). Add Dockerfile, healthz, migration/bootstrap scripts, kustomize manifests, ArgoCD Application (in railiance-platform), and docs/deployment.md. T05 left open for operator DNS/OpenBao/image push.
This commit is contained in:
parent
3064c0fe0c
commit
9e4e84f9ee
26 changed files with 691 additions and 142 deletions
30
k8s/railiance/ingress.yaml
Normal file
30
k8s/railiance/ingress.yaml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
# Public surface: revenue.coulomb.social (WP-0011).
|
||||
# Trust Service API at / ; Control Plane UI at /ui/ (combined ASGI app).
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: target-revenue
|
||||
namespace: target-revenue
|
||||
labels:
|
||||
app.kubernetes.io/name: target-revenue
|
||||
app.kubernetes.io/part-of: target-revenue
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||
argocd.argoproj.io/sync-wave: "4"
|
||||
spec:
|
||||
ingressClassName: traefik
|
||||
rules:
|
||||
- host: revenue.coulomb.social
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: target-revenue
|
||||
port:
|
||||
number: 80
|
||||
tls:
|
||||
- hosts:
|
||||
- revenue.coulomb.social
|
||||
secretName: target-revenue-tls
|
||||
Loading…
Add table
Add a link
Reference in a new issue