Check if helm registry is valid
POSThttps://api.spectrocloud.com/v1/registries/helm/validate
Authorization: ApiKey
name: ApiKeytype: apiKeydescription: API key authorization where API key can be generated from Palette console under Profile > My API Keysin: header
Returns no contents if helm registry is valid else error.
Request
Header Parameters
ProjectUid string
Scope the request to the specified project uid
- application/json
Body
required
auth objectrequired
endpointstringrequired
isPrivateboolean
namestring
registryUidstring
Helm registry uid
scopestring
Responses
- 204
Ok response without content
Response Headers
- curl
- python
- go
- nodejs
- java
- CURL
curl -L -X POST 'https://api.spectrocloud.com/v1/registries/helm/validate' \
-H 'Content-Type: application/json' \
-H 'ApiKey: <API_KEY_VALUE>' \
--data-raw '{
"auth": {
"password": "string",
"tls": {
"ca": "string",
"certificate": "string",
"enabled": true,
"insecureSkipVerify": true,
"key": "string"
},
"token": "string",
"type": "noAuth",
"username": "string"
},
"endpoint": "string",
"isPrivate": true,
"name": "string",
"registryUid": "string",
"scope": "string"
}'