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
The current dhall-kubernetes does not give a generic way for the object type of kubernetes E.g. configMap.core.v1.data which is of type object under the kubernetes API documentation is translated to data : List { mapKey : Text, mapValue : Text } which does not support nested map Values (https://github.com/dhall-lang/dhall-kubernetes/blob/master/types/io.k8s.api.core.v1.ConfigMap.dhall)
dhall-kubernetes
object
kubernetes
data : List { mapKey : Text, mapValue : Text }
dhall 9 now supports weakly-typed JSON (#586) which should solve the issue. Is there a plan to support it?
dhall 9
The text was updated successfully, but these errors were encountered:
Thanks for raising this issue.
I think This is a duplicate of #74
I think weakly typed JSON for object types is indeed the way to go .
Sorry, something went wrong.
No branches or pull requests
The current
dhall-kubernetes
does not give a generic way for theobject
type ofkubernetes
E.g. configMap.core.v1.data which is of type object under the kubernetes API documentation is translated todata : List { mapKey : Text, mapValue : Text }
which does not support nested map Values (https://github.com/dhall-lang/dhall-kubernetes/blob/master/types/io.k8s.api.core.v1.ConfigMap.dhall)dhall 9
now supports weakly-typed JSON (#586) which should solve the issue. Is there a plan to support it?The text was updated successfully, but these errors were encountered: