Skip to content

Commit

Permalink
feat(COR-1018): add the service 'selector' field in the port object
Browse files Browse the repository at this point in the history
  • Loading branch information
pggb25 committed Sep 3, 2024
1 parent eeb5ed9 commit 37c7244
Showing 1 changed file with 110 additions and 53 deletions.
163 changes: 110 additions & 53 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15786,35 +15786,67 @@ components:
ports:
type: array
items:
type: object
required:
- id
- internal_port
- service_name
- protocol
properties:
id:
type: string
format: uuid
name:
type: string
internal_port:
type: integer
example: 8080
description: The listening port of your service.
external_port:
type: integer
example: 8080
description: The exposed port for your service. This is optional. If not set a default port will be used.
service_name:
type: string
namespace:
type: string
protocol:
$ref: '#/components/schemas/HelmPortProtocolEnum'
is_default:
type: boolean
description: is the default port to use for domain
oneOf:
- type: object
required:
- id
- internal_port
- protocol
- service_name
properties:
id:
type: string
format: uuid
name:
type: string
internal_port:
type: integer
example: 8080
description: The listening port of your service.
external_port:
type: integer
example: 8080
description: The exposed port for your service. This is optional. If not set a default port will be used.
service_name:
type: string
namespace:
type: string
protocol:
$ref: '#/components/schemas/HelmPortProtocolEnum'
is_default:
type: boolean
description: is the default port to use for domain
- type: object
required:
- id
- internal_port
- protocol
- service_selectors
properties:
id:
type: string
format: uuid
name:
type: string
internal_port:
type: integer
example: 8080
description: The listening port of your service.
external_port:
type: integer
example: 8080
description: The exposed port for your service. This is optional. If not set a default port will be used.
service_selectors:
type: array
items:
$ref: '#/components/schemas/KubernetesSelector'
namespace:
type: string
protocol:
$ref: '#/components/schemas/HelmPortProtocolEnum'
is_default:
type: boolean
description: is the default port to use for domain
source:
nullable: false
oneOf:
Expand Down Expand Up @@ -16029,30 +16061,55 @@ components:
ports:
type: array
items:
type: object
required:
- service_name
- internal_port
properties:
name:
type: string
internal_port:
type: integer
example: 8080
description: The listening port of your service.
external_port:
type: integer
example: 8080
description: The exposed port for your service. This is optional. If not set a default port will be used.
service_name:
type: string
namespace:
type: string
protocol:
$ref: '#/components/schemas/HelmPortProtocolEnum'
is_default:
type: boolean
description: is the default port to use for domain
oneOf:
- type: object
required:
- internal_port
properties:
name:
type: string
internal_port:
type: integer
example: 8080
description: The listening port of your service.
external_port:
type: integer
example: 8080
description: The exposed port for your service. This is optional. If not set a default port will be used.
service_name:
type: string
namespace:
type: string
protocol:
$ref: '#/components/schemas/HelmPortProtocolEnum'
is_default:
type: boolean
description: is the default port to use for domain
- type: object
required:
- internal_port
properties:
name:
type: string
internal_port:
type: integer
example: 8080
description: The listening port of your service.
external_port:
type: integer
example: 8080
description: The exposed port for your service. This is optional. If not set a default port will be used.
service_selectors:
type: array
items:
$ref: '#/components/schemas/KubernetesSelector'
namespace:
type: string
protocol:
$ref: '#/components/schemas/HelmPortProtocolEnum'
is_default:
type: boolean
description: is the default port to use for domain
HelmForceEvent:
type: string
enum:
Expand Down

0 comments on commit 37c7244

Please sign in to comment.