@@ -3,22 +3,22 @@ layout: docs
33menu :
44 docsplatform_{{.version}} :
55 identifier : api-ace-installer-ace-installer
6- name : ACE Installer
6+ name : Platform Installer
77 parent : api-ace-installer
88 weight : 10
99menu_name : docsplatform_{{.version}}
1010section_menu_id : api
1111---
1212
13- # ACE Installer
13+ # Platform Installer
1414
15- The ACE Installer endpoints generate and manage self-host installer bundles for the
16- AppsCode Container Engine (ACE) platform . All paths on this page are relative to the
15+ The Platform Installer endpoints generate and manage self-host installer bundles for the
16+ KubeDB Platform . All paths on this page are relative to the
1717API root ` /api/v1 ` — for example ` /ace-installer/schema.json ` is
1818` /api/v1/ace-installer/schema.json ` .
1919
2020> ** AppsCode-hosted only.** These routes exist only on the AppsCode-hosted (SaaS)
21- > deployment. On self-hosted ACE installations the ` /ace-installer ` routes are not
21+ > deployment. On self-hosted KubeDB Platform installations the ` /ace-installer ` routes are not
2222> registered and every call returns ` 404 Not Found ` . (This was confirmed live — see the
2323> verification notes below.)
2424
@@ -44,7 +44,7 @@ organization's hosted-mode capability:
4444A documented call looks like:
4545
4646```
47- curl -H "Authorization: token $ACE_TOKEN " \
47+ curl -H "Authorization: token $AKP_TOKEN " \
4848 "https://appscode.com/api/v1/ace-installer/latest-version?org=appscode"
4949```
5050
@@ -58,7 +58,7 @@ curl -H "Authorization: token $ACE_TOKEN" \
5858
5959### InstallerMetadata
6060
61- Metadata describing a generated or imported ACE installer.
61+ Metadata describing a generated or imported installer.
6262
6363``` json
6464{
@@ -89,7 +89,7 @@ Metadata describing a generated or imported ACE installer.
8989| -------| ------| -------------|
9090| ` ID ` | string | Installer ID. |
9191| ` installerName ` | string | Installer name (installers are grouped by name). |
92- | ` deploymentType ` | string | ACE deployment type. |
92+ | ` deploymentType ` | string | KubeDB Platform deployment type. |
9393| ` requestedDomain ` | string | Domain requested for the installer. |
9494| ` host ` | string | Effective host for the deployment. |
9595| ` hostType ` | string | Host type. |
@@ -101,7 +101,7 @@ Metadata describing a generated or imported ACE installer.
101101| ` adminEmail ` | string | Email of the platform admin. |
102102| ` accessTokenID ` | integer (int64) | ID of the access token that created the installer. |
103103| ` clusterID ` | string | Cluster identifier bound to the installer. |
104- | ` version ` | string | ACE installer chart version. |
104+ | ` version ` | string | installer chart version. |
105105| ` promotedToProduction ` | boolean | Whether the installer has been promoted to production. |
106106| ` createTimestamp ` | string (date-time) | Creation time. |
107107| ` expiryTimestamp ` | string (date-time) | Expiry time. |
@@ -153,7 +153,7 @@ Metadata describing a generated or imported ACE installer.
153153
154154### GET /ace-installer/schema.json
155155
156- Returns the raw OpenAPI v3 JSON schema for ACE installer options
156+ Returns the raw OpenAPI v3 JSON schema for installer options
157157(` ace-options/values.openapiv3_schema.yaml ` ) as a dynamic JSON object.
158158
159159- ** Auth:** token; org resolved from the ` org ` query param.
@@ -168,12 +168,12 @@ Returns the raw OpenAPI v3 JSON schema for ACE installer options
168168 documented here.
169169
170170> ** Verified:** returned ` 404 ` against ` appscode ` on the self-hosted platform
171- > (` <ace -host> ` ) on 2026-07-14 — the ace-installer routes are AppsCode-hosted only and are
171+ > (` <akp -host> ` ) on 2026-07-14 — the ace-installer routes are AppsCode-hosted only and are
172172> not registered on this install (body: ` {"message":"Not Found"} ` ).
173173
174174### GET /ace-installer/model.json
175175
176- Returns the default ACE options model (` AceOptionsSpec ` ) pre-filled with the requesting
176+ Returns the default options model (` AceOptionsSpec ` ) pre-filled with the requesting
177177user's admin details, as a dynamic JSON object.
178178
179179- ** Auth:** token; org context.
@@ -189,7 +189,7 @@ user's admin details, as a dynamic JSON object.
189189
190190### POST /ace-installer/generate
191191
192- Generates a new ACE installer from the supplied ` AceOptionsSpec ` options and returns the
192+ Generates a new installer from the supplied ` AceOptionsSpec ` options and returns the
193193resulting installer metadata.
194194
195195- ** Auth:** token; org context; requires ` create_installers ` .
@@ -242,7 +242,7 @@ request.
242242
243243### GET /ace-installer/latest-version
244244
245- Returns the latest available ACE installer chart version.
245+ Returns the latest available installer chart version.
246246
247247- ** Auth:** token; org context; requires ` view_installers ` .
248248- ** Query parameters:** ` org ` (string, required).
@@ -254,7 +254,7 @@ Returns the latest available ACE installer chart version.
254254
255255 | Field | Type | Description |
256256 | -------| ------| -------------|
257- | ` version ` | string | Latest ACE installer chart version. |
257+ | ` version ` | string | Latest installer chart version. |
258258
259259> ** Verified:** returned ` 404 ` against ` appscode ` on the self-hosted platform on
260260> 2026-07-14 (AppsCode-hosted only; route not registered).
@@ -356,7 +356,7 @@ Reconfigures an existing installer using the supplied `AceOptionsSpec` options.
356356
357357### POST /ace-installer/installers/{name}/{id}/upgrade
358358
359- Upgrades an existing installer to the latest ACE installer version and returns the updated
359+ Upgrades an existing installer to the latest installer version and returns the updated
360360installer metadata.
361361
362362- ** Auth:** token; org context; requires ` upgrade_installers ` .
0 commit comments