kralikba
kralikba
Unfortunately this latter is not a solution for "deeper" types, e.g. Option[Seq[Int]]. Jackson believes that it is not a compatible type (that being a collection-like type of a collection-like type...
@nbauernfeind E.g. the following example: ``` scala val mapper = new ObjectMapper with ScalaObjectMapper mapper.registerModule(DefaultScalaModule) case class Y(os: Option[Seq[Int]]) println(mapper.readValue[Y]("{}")) case class X(@JsonDeserialize(contentAs = classOf[java.lang.Integer]) os: Option[Seq[Int]]) println(mapper.readValue[X]("{}")) ``` Outputs...
Yes, 'helm repo update' did help.
> Great! Will close as the issue was resolved I would not consider this resolved. Shouldn't the provider, exactly knowing the required step, actually call it and work without manual...
Thank you. Yes, this is one main use case. The other developer's machine might not even have the `helm` cli installed on their system, requiring one more step from them....
Has there been any update to this? I understand that this is a major design challenge. In my use case, specifying an expected value for a field of the CRD...
> it makes automation difficult :-( what automation are you talking about?
Hey, I'm having the same problem. Both `@model` and `@inherits` directives end up parsed as simple expressions instead of directives - i.e. the following is generated: ``` Write(model); ```
Hello, We have decided not to use AKS so I can't report on this. Maybe this behaviour cannot be correctly described using the schemas used to generate the provider? I...