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

Update Helm Schema Validation for topologySpreadConstraints and customCertSecretPath #4112

Merged
merged 5 commits into from
Feb 13, 2025
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
10 changes: 5 additions & 5 deletions install/helm/agones/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@
"type": "integer"
},
"topologySpreadConstraints": {
"type": "object"
"type": "array"
},
"apiServerQPS": {
"type": "integer"
Expand Down Expand Up @@ -736,7 +736,7 @@
]
},
"topologySpreadConstraints": {
"type": "object"
"type": "array"
}
},
"allOf": [
Expand Down Expand Up @@ -1093,7 +1093,7 @@
]
},
"topologySpreadConstraints": {
"type": "object"
"type": "array"
},
"healthCheck": {
"$ref": "#/definitions/healthCheck"
Expand Down Expand Up @@ -1209,7 +1209,7 @@
"type": "boolean"
},
"customCertSecretPath": {
"type": "object"
"type": "array"
},
"allocationApiService": {
"type": "object",
Expand Down Expand Up @@ -1286,7 +1286,7 @@
]
},
"topologySpreadConstraints": {
"type": "object"
"type": "array"
}
},
"allOf": [
Expand Down
10 changes: 5 additions & 5 deletions install/helm/agones/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ agones:
replicas: 2
pdb:
minAvailable: 1
topologySpreadConstraints: {}
topologySpreadConstraints: []
extensions:
resources: {}
# requests:
Expand Down Expand Up @@ -134,7 +134,7 @@ agones:
mutatingWebhook:
annotations: {}
disableCaBundle: false
customCertSecretPath: {}
customCertSecretPath: []
persistentLogs: true
persistentLogsSizeLimitMB: 10000
logLevel: info
Expand All @@ -158,7 +158,7 @@ agones:
initialDelaySeconds: 3
periodSeconds: 3
failureThreshold: 3
topologySpreadConstraints: {}
topologySpreadConstraints: []
ping:
install: true
pdb:
Expand Down Expand Up @@ -202,7 +202,7 @@ agones:
periodSeconds: 3
failureThreshold: 3
timeoutSeconds: 1
topologySpreadConstraints: {}
topologySpreadConstraints: []
allocator:
install: true
pdb:
Expand Down Expand Up @@ -273,7 +273,7 @@ agones:
remoteAllocationTimeout: 10s
totalRemoteAllocationTimeout: 30s
allocationBatchWaitTime: 500ms
topologySpreadConstraints: {}
topologySpreadConstraints: []
image:
registry: us-docker.pkg.dev/agones-images/release
tag: 1.48.0-dev
Expand Down