Skip to main content
PUT
/
organization
/
{organizationId}
/
helmRepository
/
{helmRepositoryId}
Edit a helm repository
curl --request PUT \
  --url https://api.qovery.com/organization/{organizationId}/helmRepository/{helmRepositoryId} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "kind": "HTTPS",
  "description": "<string>",
  "url": "<string>",
  "skip_tls_verification": true,
  "config": {
    "username": "<string>",
    "password": "<string>",
    "access_key_id": "<string>",
    "secret_access_key": "<string>",
    "region": "<string>",
    "scaleway_access_key": "<string>",
    "scaleway_secret_key": "<string>",
    "scaleway_project_id": "<string>",
    "azure_tenant_id": "<string>",
    "azure_subscription_id": "<string>"
  }
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "name": "<string>",
  "kind": "HTTPS",
  "description": "<string>",
  "url": "<string>",
  "skip_tls_verification": true,
  "associated_services_count": 123,
  "config": {
    "username": "<string>",
    "region": "<string>",
    "access_key_id": "<string>",
    "scaleway_access_key": "<string>",
    "scaleway_project_id": "<string>",
    "azure_tenant_id": "<string>",
    "azure_subscription_id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Token API are generated by Qovery to manage machine to machine interaction and do not have a TTL. Prefix your token with "Token ". Curl Example: curl https://console.qovery.com/organization -H "Authorization: Token $qovery_token"

Path Parameters

organizationId
string<uuid>
required

Organization ID

helmRepositoryId
string<uuid>
required

Helm chart repository ID

Body

application/json
name
string
required
kind
enum<string>
required

The type of your helm repository

Available options:
HTTPS,
OCI_ECR,
OCI_SCALEWAY_CR,
OCI_DOCKER_HUB,
OCI_PUBLIC_ECR,
OCI_GENERIC_CR,
OCI_GITHUB_CR,
OCI_GITLAB_CR
skip_tls_verification
boolean
required

Bypass tls certificate verification when connecting to repository

config
object
required
description
string
url
string<uri>

URL of the helm chart repository:

  • For OCI: it must start by oci://
  • For HTTPS: it must be start by https://

Response

Edited the helm repository

id
string<uuid>
required
created_at
string<date-time>
required
name
string
required
updated_at
string<date-time>
kind
enum<string>

The type of your helm repository

Available options:
HTTPS,
OCI_ECR,
OCI_SCALEWAY_CR,
OCI_DOCKER_HUB,
OCI_PUBLIC_ECR,
OCI_GENERIC_CR,
OCI_GITHUB_CR,
OCI_GITLAB_CR
description
string
url
string

URL of the helm repository

skip_tls_verification
boolean

Bypass tls certificate verification when connecting to repository

associated_services_count
integer

The number of services using this helm repository

config
object