Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: adding alb controller advanced settings #706

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 19 additions & 11 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12903,7 +12903,7 @@ components:
next_k8s_available_version:
type: string
nullable: true
example: "1.28"
example: '1.28'
last_execution_id:
type: string
example: f73e3833-922a-48a5-9dbd-6163f43f9143-1656410242
Expand Down Expand Up @@ -12937,6 +12937,14 @@ components:
description: Add additional tags on the cluster dedicated registry
additionalProperties:
type: string
aws.eks.enable_alb_controller:
type: boolean
x-stoplight:
id: m2nc6klof8mvh
default: true
description: |-
Enable the AWS ALB controller to manage the load balancer for the cluster.
Note: Changing this feature will create a 10 min max downtime on your application's public access (time to delete, replace and propagate DNS of the new load balancer) and will requiere to update all services with TCP/UDP open ports.
load_balancer.size:
type: string
description: Select the size of the main load_balancer (only effective for Scaleway)
Expand Down Expand Up @@ -16082,16 +16090,16 @@ components:
type: boolean
description: is the default port to use for domain
- oneOf:
- type: object
properties:
service_selectors:
type: array
items:
$ref: '#/components/schemas/KubernetesSelector'
- type: object
properties:
service_name:
type: string
- type: object
properties:
service_selectors:
type: array
items:
$ref: '#/components/schemas/KubernetesSelector'
- type: object
properties:
service_name:
type: string
HelmForceEvent:
type: string
enum:
Expand Down
Loading