@aipt/idp-deploy 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/docs/config-dir-security.md +3 -0
- package/docs/local-deployment.md +3 -0
- package/docs/vibe-delivery.md +3 -0
- package/documentation-manifest.json +10 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# IDP Deploy
|
|
2
2
|
|
|
3
|
+
业务项目不复制本仓部署长文档。Dyyto Bootstrap 锁定本包版本和 `local-deployment` 文档 ID;`dyyto docs show --id local-deployment` 提供面向 Agent 的精简入口。
|
|
4
|
+
|
|
3
5
|
`idp-deploy` 是企业内部开发者平台的轻量部署与运维控制面。它把 PostgreSQL、私有 npm Registry、Tech、Flow、Portal、SmartGo 和 Caddy 组合为可独立启停的服务片段;Dyyto、Bench、Forge 仍是按需运行的 CLI/MCP 工具,不被强制常驻。SmartGo 是显式选择的业务 Profile,不进入默认 IDP Core。
|
|
4
6
|
|
|
5
7
|
Kubernetes/GitOps 已进入当前 CLI:应用通过 ComponentContract、Bench EnvironmentBinding 和 ReleaseCandidate 生成不可变 DeploymentPlan,再由同一 Kernel 完成确定性 Render、Repository Apply、Git commit、Preimage/CAS 保护和 Repository Verify。它保留历史 `kubernetes-config` 的中央期望状态与 Argo 收敛能力,但不复制跨仓 `sed`、可变 tag、明文 Secret 或宽权限。完整合同与所有权见 [`docs/features/kubernetes-gitops-deployment-backend/DESIGN.md`](docs/features/kubernetes-gitops-deployment-backend/DESIGN.md)。
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"package": "@aipt/idp-deploy",
|
|
4
|
+
"version": "0.1.4",
|
|
5
|
+
"documents": [
|
|
6
|
+
{ "id": "config-dir-security", "path": "docs/config-dir-security.md", "digest": "sha256:057b3f07104255812d2f26f59842c42f995305c64c5494889fee59772041e324" },
|
|
7
|
+
{ "id": "local-deployment", "path": "docs/local-deployment.md", "digest": "sha256:4d86d7e7ed8619fa750430989afefe71e033673adedb924bb60b4272d7d2e3f6" },
|
|
8
|
+
{ "id": "vibe-delivery", "path": "docs/vibe-delivery.md", "digest": "sha256:3e6dee64c85417c1402ad3d9433e24c223acef584bc2f71cec0711085e5438e6" }
|
|
9
|
+
]
|
|
10
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aipt/idp-deploy",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "IDP 私有化部署、外部配置、备份恢复与交付编排 CLI。",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -13,7 +13,11 @@
|
|
|
13
13
|
"contracts",
|
|
14
14
|
"release",
|
|
15
15
|
"governance",
|
|
16
|
+
"docs/config-dir-security.md",
|
|
17
|
+
"docs/local-deployment.md",
|
|
18
|
+
"docs/vibe-delivery.md",
|
|
16
19
|
"docs/restore-runbook.md",
|
|
20
|
+
"documentation-manifest.json",
|
|
17
21
|
"README.md",
|
|
18
22
|
"deploy.sh"
|
|
19
23
|
],
|