diff --git a/README.md b/README.md index 067cddd..003fbb7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,20 @@ # neo-blog 新的博客,前端由next驱动,后端由hertz驱动 +## 功能列表 + +- [x] 支持Markdown,HTML,Text格式的文章 +- [x] 支持文章分类和标签 +- [ ] 页面管理 +- [ ] 支持文章置顶 +- [x] OIDC认证和注册 +- [x] 支持多用户 +- [ ] 高级评论功能(后端已实装) +- [ ] 支持多语言 +- [x] 移动端适配 +- [ ] 后台管理 +- [ ] 富文本编辑器 + ## 部署 ### 使用容器化部署(Docker Compose)(推荐) @@ -46,7 +60,7 @@ docker compose up -d 启动后,将外部网关请求转发到前端服务的端口即可 -### 使用容器化部署(Kubernetes)(推荐 但是还未发布helm chart) +### 使用容器化部署(Kubernetes 暂未完全支持,有需求者可以查看[helm](./helm)目录) 可以使用[Helm Chart](https://artifacthub.io/packages/helm/snowykami/neo-blog)进行部署。 diff --git a/chart/.helmignore b/helm/.helmignore similarity index 100% rename from chart/.helmignore rename to helm/.helmignore diff --git a/chart/Chart.yaml b/helm/Chart.yaml similarity index 100% rename from chart/Chart.yaml rename to helm/Chart.yaml diff --git a/chart/templates/_helpers.tpl b/helm/templates/_helpers.tpl similarity index 100% rename from chart/templates/_helpers.tpl rename to helm/templates/_helpers.tpl diff --git a/chart/templates/backend-deployment.yaml b/helm/templates/backend-deployment.yaml similarity index 100% rename from chart/templates/backend-deployment.yaml rename to helm/templates/backend-deployment.yaml diff --git a/chart/templates/backend-service.yaml b/helm/templates/backend-service.yaml similarity index 100% rename from chart/templates/backend-service.yaml rename to helm/templates/backend-service.yaml diff --git a/chart/templates/frontend-deployment.yaml b/helm/templates/frontend-deployment.yaml similarity index 100% rename from chart/templates/frontend-deployment.yaml rename to helm/templates/frontend-deployment.yaml diff --git a/chart/templates/frontend-service.yaml b/helm/templates/frontend-service.yaml similarity index 100% rename from chart/templates/frontend-service.yaml rename to helm/templates/frontend-service.yaml diff --git a/chart/templates/hpa.yaml b/helm/templates/hpa.yaml similarity index 100% rename from chart/templates/hpa.yaml rename to helm/templates/hpa.yaml diff --git a/chart/templates/ingress.yaml b/helm/templates/ingress.yaml similarity index 100% rename from chart/templates/ingress.yaml rename to helm/templates/ingress.yaml diff --git a/chart/templates/serviceaccount.yaml b/helm/templates/serviceaccount.yaml similarity index 100% rename from chart/templates/serviceaccount.yaml rename to helm/templates/serviceaccount.yaml diff --git a/chart/values.yaml b/helm/values.yaml similarity index 100% rename from chart/values.yaml rename to helm/values.yaml