Stay organized with collections
Save and categorize content based on your preferences.
The Marketplace API uses Kubernetes custom resources and relies on the Kubernetes Resource Model. The APIs are used for the provisioning and administration of the Marketplace services in a given project through actions that include installing, upgrading, and uninstalling. The GDC Marketplace APIs are also used to see available versions, create, modify, or delete objects in your project to install, upgrade, or uninstall instances of a service.
Service endpoint and discovery document
The following URL is the API endpoint for the Marketplace APIs:
https://GDC_API_SERVER_ENDPOINT/apis/marketplace.gdc.goog/v1
where GDC_API_SERVER_ENDPOINT is the endpoint of the
GDC API server.
Using the kubectl proxy command, you can access that URL in your browser or with a tool such as curl to get the discovery document for the Marketplace API.
The kubectl proxy command opens up a proxy to the Kubernetes API server on your local machine. When the command is running, access the document at the following URL:
Create an object in a project's namespace with kubectl create to install the service you want. To upgrade a service instance, modify it to indicate which version of that service. You can modify the object directly with an HTTP client or by using the kubectl apply, kubectl patch, or kubectl edit commands. To uninstall a service instance, delete the object with kubectl delete.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-07-26 UTC."],[[["The Marketplace API utilizes Kubernetes custom resources and the Kubernetes Resource Model for managing services."],["It provides actions for installing, upgrading, and uninstalling Marketplace services within a project."],["The API endpoint is accessible at `https://`GDC_API_SERVER_ENDPOINT`/apis/marketplace.gdc.goog/v1`, where GDC_API_SERVER_ENDPOINT is your GDC API server's endpoint."],["You can obtain the discovery document for the Marketplace API using the `kubectl proxy` command, accessible at `http://127.0.0.1:8001/apis/marketplace.gdc.goog/v1` while the command is active."],["Service instances are managed through `kubectl` commands like `create` for installation, `apply`, `patch`, or `edit` for upgrades, and `delete` for uninstallation."]]],[]]