From 432e3d8d55fa29bc2af0595803e68d5d938d97a1 Mon Sep 17 00:00:00 2001 From: Nico Date: Tue, 31 Mar 2026 01:40:56 +0200 Subject: [PATCH] Rename frontend: assay-frontend -> nyx nyx is the unified frontend, assay is the backend runtime. K8s deployment, service, image all renamed to nyx. Ingress catch-all route updated to point to nyx service. Co-Authored-By: Claude Opus 4.6 (1M context) --- k8s/assay-ingress.yaml | 2 +- k8s/{assay-frontend.yaml => nyx.yaml} | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) rename k8s/{assay-frontend.yaml => nyx.yaml} (84%) diff --git a/k8s/assay-ingress.yaml b/k8s/assay-ingress.yaml index 8af0c06..27dfcb0 100644 --- a/k8s/assay-ingress.yaml +++ b/k8s/assay-ingress.yaml @@ -58,6 +58,6 @@ spec: pathType: Prefix backend: service: - name: assay-frontend + name: nyx port: number: 80 diff --git a/k8s/assay-frontend.yaml b/k8s/nyx.yaml similarity index 84% rename from k8s/assay-frontend.yaml rename to k8s/nyx.yaml index de5328d..18851b9 100644 --- a/k8s/assay-frontend.yaml +++ b/k8s/nyx.yaml @@ -1,13 +1,13 @@ apiVersion: apps/v1 kind: Deployment metadata: - name: assay-frontend + name: nyx namespace: default spec: replicas: 1 selector: matchLabels: - app: assay-frontend + app: nyx strategy: type: RollingUpdate rollingUpdate: @@ -16,11 +16,11 @@ spec: template: metadata: labels: - app: assay-frontend + app: nyx spec: containers: - name: nginx - image: docker.io/library/assay-frontend:latest + image: docker.io/library/nyx:latest imagePullPolicy: Never ports: - containerPort: 80 @@ -47,11 +47,11 @@ spec: apiVersion: v1 kind: Service metadata: - name: assay-frontend + name: nyx namespace: default spec: selector: - app: assay-frontend + app: nyx ports: - port: 80 targetPort: 80