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
sh: manifests/overlays/istio: unknown operandNo authorization data found. Please provide KUBE_CONFIG or KUBE_HOST variables. Exiting...
I found that #12 is related, but the fix only checks for string equality, which means I can't pass a directory argument directly after the kustomize keyword.
Additionally, the uses directive in GitHub Actions does not support setting the working-directory.
Would it be possible to update the condition to use a regex pattern for better flexibility with the kustomize argument? For example:
elif [[ $INPUT_ARGS=~ ^kustomize.* ]];then:;
This change would allow support for passing directories as arguments without encountering the current issue.
The text was updated successfully, but these errors were encountered:
I'm trying to run
kubectl kustomize
on a sub directory of my project, but I'm encountering an issue when passing the directory as an argument:However, I receive the following error:
I found that #12 is related, but the fix only checks for string equality, which means I can't pass a directory argument directly after the
kustomize
keyword.Additionally, the
uses
directive in GitHub Actions does not support setting theworking-directory
.Would it be possible to update the condition to use a regex pattern for better flexibility with the
kustomize
argument? For example:This change would allow support for passing directories as arguments without encountering the current issue.
The text was updated successfully, but these errors were encountered: