module-ballerina-kubernetes
module-ballerina-kubernetes copied to clipboard
Unable to give env vars to non string fields in annotations.
Description: Cannot give environment variables to some fields in annotations as they cannot be assigned in a string.
Steps to reproduce:
@kubernetes:Deployment {
buildImage: "$env{BUILD_IMAGE}"
}
Above cannot be done as buildImage
field is restricted to a boolean
.