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
fix (kubernetes-model-generator/pkg/schemagen) : Remove check to convert integer array to string
Kubernetes Model Generator script currently converted all byte, integer
lists to string (since there is no byte reflect.type in GoLang , it's
alias to `uint8`). This seems to be incorrectly generating
PodFailurePolicyOnExitCodesRequirement.values field as String.
Add a switch case in `javaType()` to treat `reflect.Uint8` to byte. Limit
`javaTypeArrayList()` to only convert byte array/ `reflect.Uint8` array
to string.
Signed-off-by: Rohan Kumar <[email protected]>
0 commit comments