docs: add Kubernetes deployment guide with overlays structure#219
Merged
docs: add Kubernetes deployment guide with overlays structure#219
Conversation
Unify to use runtime.sh for all deployment commands, removing the distinction between "official images" and "Aliyun mirror". The --aliyun parameter is preserved for users in China to specify the mirror. Changes: - Remove runtime-github.sh references, use runtime.sh uniformly - Default command uses GHCR images - Add --aliyun parameter for China users - Update README.md, README_zh.md, and docs/skillhub/ quickstart files
Merge the two documentation links into a single "Documentation" section with clear descriptions of each: - User Guide: skill publishing, search, CLI usage - Developer Docs: architecture, API reference, deployment This makes it easier for users to find the right documentation.
Merge the two documentation links into a single "Documentation" section with clear descriptions of each: - User Guide: skill publishing, search, CLI usage - Developer Docs: architecture, API reference, deployment This makes it easier for users to find the right documentation.
When starting with a custom --home directory, the generated shutdown command now includes the same --home parameter to ensure it can find the correct compose files.
- 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/
zhaieryuan
pushed a commit
to zhaieryuan/skillhub
that referenced
this pull request
Apr 2, 2026
* main: docs: add Kubernetes deployment guide with overlays structure (iflytek#219) docs: simplify runtime script usage (iflytek#217) fix: add --public-url parameter for docker deployment (iflytek#216) chore: update .gitignore to include .codex directory (iflytek#211) organize .gitignore (iflytek#206) docs: add VitePress bilingual documentation site (iflytek#208)
zhaieryuan
pushed a commit
to zhaieryuan/skillhub
that referenced
this pull request
Apr 2, 2026
* main: docs: add Kubernetes deployment guide with overlays structure (iflytek#219) docs: simplify runtime script usage (iflytek#217) fix: add --public-url parameter for docker deployment (iflytek#216) chore: update .gitignore to include .codex directory (iflytek#211) organize .gitignore (iflytek#206) docs: add VitePress bilingual documentation site (iflytek#208)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes
K8s Configuration
deploy/k8s/base/- Base configuration shared by all deploymentsdeploy/k8s/overlays/with-infra/- Full deployment with PostgreSQL + Redisdeploy/k8s/overlays/external/- Use external databaseBug Fixes
/actuator/health/readinessto/actuator/health(auth required)SKILLHUB_API_UPSTREAMenvironment variable for frontendSESSION_COOKIE_SECURE=falsefor HTTP environmentsDocumentation
docs/skillhub/guide/kubernetes.md- Chinese documentationdocs/skillhub/en/guide/kubernetes.md- English documentationTest Plan
kubectl apply -k overlays/with-infra/