skillhub/deploy/k8s/base/kustomization.yaml
xiose d84537a901 docs: add Kubernetes deployment guide with overlays structure
- Restructure k8s configs with base/overlays pattern for flexibility
- Add overlays/with-infra for full deployment (PostgreSQL + Redis)
- Add overlays/external for external database scenarios
- Add comprehensive ConfigMap with bootstrap admin settings
- Fix health check path to /actuator/health (auth issue)
- Add SKILLHUB_API_UPSTREAM env for frontend
- Set SESSION_COOKIE_SECURE=false for HTTP environments
- Add Chinese and English documentation in docs/skillhub/
2026-04-02 20:40:40 +08:00

26 lines
573 B
YAML

# 基础配置(所有场景共用)
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: skillhub
resources:
- configmap.yaml
- services.yaml
- backend-deployment.yaml
- frontend-deployment.yaml
- scanner-deployment.yaml
- ingress.yaml
images:
- name: ghcr.io/iflytek/skillhub-server
newTag: latest
- name: ghcr.io/iflytek/skillhub-web
newTag: latest
- name: ghcr.io/iflytek/skillhub-scanner
newTag: latest
labels:
- pairs:
app.kubernetes.io/part-of: skillhub
app.kubernetes.io/managed-by: kustomize