-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(helm): Add available helm repository endpoint
- Loading branch information
1 parent
f639a4b
commit 6710992
Showing
5 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
get: | ||
summary: 'List supported helm repository' | ||
description: List supported helm repository by Qovery and get the mandatory authentification configuration. | ||
operationId: listAvailableHelmRepository | ||
tags: | ||
- Helm Repositories | ||
responses: | ||
'200': | ||
description: 'supported helm repositories' | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '../schemas/AvailableHelmRepositoryResponseList.yaml' | ||
'401': | ||
$ref: '../responses/NotAuthorized.yaml' | ||
'403': | ||
$ref: '../responses/Forbidden.yaml' | ||
'404': | ||
$ref: '../responses/NotFound.yaml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
type: object | ||
properties: | ||
results: | ||
type: array | ||
items: | ||
$ref: './AvailableHelmRepositoryResponse.yaml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
type: string | ||
enum: | ||
- HTTPS | ||
- OCI | ||
description: The type of your helm repository | ||
|