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://MANAGEMENT_API_SERVER_ENDPOINT/apis/marketplace.gdc.goog/v1
where MANAGEMENT_API_SERVER_ENDPOINT is the endpoint of the
Management 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-03-21 UTC."],[[["The Marketplace API utilizes Kubernetes custom resources and the Kubernetes Resource Model for managing Marketplace services."],["Actions like installing, upgrading, and uninstalling services within a project are facilitated through the Marketplace APIs."],["The API endpoint for the Marketplace APIs is located at `https://`\u003cvar translate=\"no\"\u003eMANAGEMENT_API_SERVER_ENDPOINT\u003c/var\u003e`/apis/marketplace.gdc.goog/v1`."],["The discovery document for the Marketplace API can be accessed via the `kubectl proxy` command."],["`kubectl create`, `kubectl apply`, `kubectl patch`, `kubectl edit`, and `kubectl delete` commands are used to manage service instances."]]],[]]