Skip to content

Commit

Permalink
Publish docs
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 7, 2023
1 parent c1ab112 commit 8d1ea68
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 1 deletion.
2 changes: 1 addition & 1 deletion index.html

Large diffs are not rendered by default.

54 changes: 54 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12353,6 +12353,60 @@ components:
type: array
items:
$ref: '#/components/schemas/ContainerRegistryResponse'
HelmRepositoryRequest:
type: object
required:
- name
- kind
- config
properties:
name:
type: string
kind:
$ref: '#/components/schemas/HelmRepositoryKindEnum'
description:
type: string
url:
type: string
format: uri
description: |
URL of the helm chart repository:
* For `OCI`: it must start by oci://
* For `HTTPS`: it must be start by https://
config:
type: object
properties:
skip_tls_verification:
type: boolean
default: false
description: Bypass tls certificate verification when connecting to repository
login:
type: string
description: Required if the repository is private
password:
type: string
description: Required if the repository is private
HelmRepositoryResponse:
allOf:
- $ref: '#/components/schemas/Base'
- type: object
properties:
name:
type: string
kind:
$ref: '#/components/schemas/HelmRepositoryKindEnum'
description:
type: string
url:
type: string
description: URL of the helm repository
HelmRepositoryResponseList:
type: object
properties:
results:
type: array
items:
$ref: '#/components/schemas/HelmRepositoryResponse'
ContainerRequest:
allOf:
- $ref: '#/components/schemas/ServiceStorageRequest'
Expand Down

0 comments on commit 8d1ea68

Please sign in to comment.