You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error: UPGRADE FAILED: values don't meet the specifications of the schema(s) in the following chart(s):
redpanda:
- console.ingress.className: Invalid type. Expected: string, given: null
- console.service.targetPort: Invalid type. Expected: integer, given: null
It seems the trigger to get this issue is the --reuse-values flag which behaves a bit more strangely than one would expect IIRC.
The underlying issue is that the console chart's JSON schema isn't being generated as we do with the operator or redpanda chart. According to the redpanda chart className is an optional string but the console chart has it as [string, null] as the default value is null.
We'll want to start generating the console chart's JSON schema from it's values definition the same way we do with redpanda and make any required adjustments.
Discovered by a user in our community slack.
They encountered the following error message:
It seems the trigger to get this issue is the
--reuse-values
flag which behaves a bit more strangely than one would expect IIRC.The underlying issue is that the console chart's JSON schema isn't being generated as we do with the operator or redpanda chart. According to the redpanda chart
className
is an optionalstring
but the console chart has it as[string, null]
as the default value isnull
.We'll want to start generating the console chart's JSON schema from it's values definition the same way we do with redpanda and make any required adjustments.
JIRA Link: K8S-421
The text was updated successfully, but these errors were encountered: