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
The 744 is then considered to be an int, rather than an octal value, so the app fails to deploy.
As a workaround, I can set this to 484, which is the base 10 equivalent of 744.
The text was updated successfully, but these errors were encountered:
The YAML parser that ktmpl uses adheres to the YAML 1.2 spec, which requires octal values to be prefixed with 0o (that's a zero followed by a lower-case letter O). Try using 0o744 and see if that works for you.
As part of my config I have the following:
But when run through ktmpl this comes out as:
The
744
is then considered to be an int, rather than an octal value, so the app fails to deploy.As a workaround, I can set this to 484, which is the base 10 equivalent of 744.
The text was updated successfully, but these errors were encountered: