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

Correction for #344 - shootAndSeedSameRegion in GardenerConfigInput #3443

Merged
merged 2 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion components/provisioner/pkg/gqlschema/models_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/provisioner/pkg/gqlschema/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ type GardenerConfig {
shootNetworkingFilterDisabled: Boolean
controlPlaneFailureTolerance: String
euAccess: Boolean
shootAndSeedSameRegion: Boolean
}

union ProviderSpecificConfig = GCPProviderConfig | AzureProviderConfig | AWSProviderConfig | OpenStackProviderConfig
Expand Down Expand Up @@ -243,6 +242,7 @@ input GardenerConfigInput {
shootNetworkingFilterDisabled: Boolean # Indicator for the Shoot Networking Filter extension being disabled. If 'nil' provided, 'true' will be used as a default value
controlPlaneFailureTolerance: String # Shoot control plane HA failure tolerance level to configure. Valid values: 'nil' (left empty, no HA), "node", "zone"
euAccess: Boolean # EU Access indicated whether to annotate the Shoot with the 'support.gardener.cloud/eu-access-for-cluster-nodes' annotation
shootAndSeedSameRegion: Boolean # If set to true, Provisioner will add seedSelector with region matching the one that shoot is created in
}

input OIDCConfigInput {
Expand Down
62 changes: 8 additions & 54 deletions components/provisioner/pkg/gqlschema/schema_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading