- Add Gitea Actions workflow for automated build & deploy - Add K8s manifests: webui, travel-svc, medicine-svc, sandbox-svc - Update kustomization for localhost:5000 registry - Add ingress for gooseek.ru and api.gooseek.ru - Learning cabinet with onboarding, courses, sandbox integration - Medicine service with symptom analysis and doctor matching - Travel service with itinerary planning - Server setup scripts (NVIDIA/CUDA, K3s, Gitea runner) Made-with: Cursor
40 lines
782 B
YAML
40 lines
782 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: gooseek
|
|
|
|
resources:
|
|
- namespace.yaml
|
|
- configmap.yaml
|
|
- postgres.yaml
|
|
- redis.yaml
|
|
- api-gateway.yaml
|
|
- webui.yaml
|
|
- chat-svc.yaml
|
|
- agent-svc.yaml
|
|
- search-svc.yaml
|
|
- discover-svc.yaml
|
|
- llm-svc.yaml
|
|
- scraper-svc.yaml
|
|
- collection-svc.yaml
|
|
- file-svc.yaml
|
|
- thread-svc.yaml
|
|
- learning-svc.yaml
|
|
- medicine-svc.yaml
|
|
- travel-svc.yaml
|
|
- sandbox-svc.yaml
|
|
- opensandbox.yaml
|
|
- ingress.yaml
|
|
|
|
commonLabels:
|
|
app.kubernetes.io/part-of: gooseek
|
|
app.kubernetes.io/managed-by: kustomize
|
|
|
|
images:
|
|
- name: gooseek/backend
|
|
newName: localhost:5000/gooseek/backend
|
|
newTag: latest
|
|
- name: gooseek/webui
|
|
newName: localhost:5000/gooseek/webui
|
|
newTag: latest
|