- Ory Hydra + Kratos: fixed secret management, DSN config, DB migrations, OAuth2Client CRD (helm template skips crds/ dir), login-ui env vars - SeaweedFS: added s3.json credentials file via -s3.config CLI flag - OpenBao: standalone mode with auto-unseal sidecar, keys in K8s secret - OpenSearch: increased memory to 1.5Gi / JVM 1g heap - Gitea: SSL_MODE disable, S3 bucket creation fixed - Hive: automountServiceAccountToken: false (Lima virtiofs read-only rootfs quirk) - LiveKit: API keys in values, hostPort conflict resolved - Linkerd: native sidecar (proxy.nativeSidecar=true) to avoid blocking Jobs - All placeholder images replaced: pingora→nginx:alpine, login-ui→oryd/kratos-selfservice-ui-node Full stack running: postgres, valkey, openbao, opensearch, seaweedfs, kratos, hydra, gitea, livekit, hive (placeholder), login-ui
58 lines
1.3 KiB
YAML
58 lines
1.3 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: login-ui
|
|
namespace: ory
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: login-ui
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: login-ui
|
|
spec:
|
|
containers:
|
|
- name: login-ui
|
|
image: oryd/kratos-selfservice-ui-node:v1.3.0
|
|
ports:
|
|
- name: http
|
|
containerPort: 3000
|
|
protocol: TCP
|
|
env:
|
|
- name: KRATOS_PUBLIC_URL
|
|
value: "http://kratos-public.ory.svc.cluster.local:4433"
|
|
- name: KRATOS_BROWSER_URL
|
|
value: "https://auth.DOMAIN_SUFFIX/kratos"
|
|
- name: HYDRA_ADMIN_URL
|
|
value: "http://hydra-admin.ory.svc.cluster.local:4445"
|
|
- name: PORT
|
|
value: "3000"
|
|
- name: COOKIE_SECRET
|
|
value: "localdev-cookie-secret"
|
|
- name: CSRF_COOKIE_NAME
|
|
value: "csrf"
|
|
- name: CSRF_COOKIE_SECRET
|
|
value: "localdev-csrf-secret"
|
|
resources:
|
|
limits:
|
|
memory: 256Mi
|
|
requests:
|
|
memory: 128Mi
|
|
cpu: 25m
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: login-ui
|
|
namespace: ory
|
|
spec:
|
|
selector:
|
|
app: login-ui
|
|
ports:
|
|
- name: http
|
|
port: 3000
|
|
targetPort: 3000
|
|
protocol: TCP
|