Describe the bug
if you try to inject the following annotation to any deployment
appmesh.k8s.aws/sidecarEnv: '[{"sample_key_1":"value","sample_key_2":"value"}]'
you will get the follwing error
malformed annotation appmesh.k8s.aws/sidecarEnv , expected format: EnvVariableKey=EnvVariableValue
Steps to reproduce
attach any json value with multiple keys to sidecar env var .
Expected outcome
the env variable to have a valid json as it's value
Additional Context:
I think this behavior is expected since in herethe method only split by , and we can't escape this charachter in any way.
Describe the bug
if you try to inject the following annotation to any deployment
you will get the follwing error
Steps to reproduce
attach any json value with multiple keys to sidecar env var .
Expected outcome
the env variable to have a valid json as it's value
Additional Context:
I think this behavior is expected since in herethe method only split by
,and we can't escape this charachter in any way.