We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We are trying to set the nodeSelector attribute in the taskManagerConfig and jobManagerConfig, but, it gets ignored.
nodeSelector
jobManagerConfig: nodeSelector: instancezone: primary resources: requests: memory: "1Gi" cpu: "500m" limits: memory: "1Gi" envConfig: ...
Here's how it is being defined in the schema:
jobManagerConfig: type: object properties: replicas: type: integer minimum: 1 offHeapMemoryFraction: type: number minimum: 0 maximum: 1 systemMemoryFraction: type: number minimum: 0 maximum: 1 nodeSelector: type: object properties: additionalProperties: type: string
taskManagerConfig: type: object properties: taskSlots: type: integer minimum: 1 offHeapMemoryFraction: type: number minimum: 0 maximum: 1 systemMemoryFraction: type: number minimum: 0 maximum: 1 nodeSelector: type: object properties: additionalProperties: type: string
The text was updated successfully, but these errors were encountered:
So, in k8s 1.20 we added x-kubernetes-preserve-unknown-fields: true to the validation schema. That seems to help for now.
k8s 1.20
x-kubernetes-preserve-unknown-fields: true
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
We are trying to set the
nodeSelector
attribute in the taskManagerConfig and jobManagerConfig, but, it gets ignored.Here's how it is being defined in the schema:
The text was updated successfully, but these errors were encountered: