mirror of
https://github.com/iflytek/skillhub.git
synced 2026-09-08 22:21:09 +00:00
- 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/
26 lines
573 B
YAML
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
|