this repo has no description

Fix PLC rotation key format and add frontend routes

PLC_ROTATION_KEY expects did:key (public) not hex private key.
Route /app, /assets, /oauth to tranquil-frontend for account
verification and OAuth flows.

+11
+9
k8s/pds/ingress.yaml
··· 45 45 services: 46 46 - name: tranquil-pds 47 47 port: 3000 48 + # Frontend (account verification, settings, etc) 49 + - match: Host(`sans-self.org`) && (PathPrefix(`/app`) || PathPrefix(`/assets`) || PathPrefix(`/oauth`)) 50 + kind: Rule 51 + priority: 50 52 + middlewares: 53 + - name: strip-server-headers 54 + services: 55 + - name: tranquil-frontend 56 + port: 80 48 57 # Everything else (xrpc, OAuth, .well-known, etc) 49 58 - match: Host(`sans-self.org`) 50 59 kind: Rule
+2
k8s/pds/tranquil-deployment.yaml
··· 73 73 secretKeyRef: 74 74 name: tranquil-secrets 75 75 key: master_key 76 + - name: PLC_ROTATION_KEY 77 + value: did:key:zQ3shqeSNmj7mgsxGbZofhCJ36uYzSM8WPFLcxy26WADVaH8c 76 78 volumeMounts: 77 79 - name: data 78 80 mountPath: /data