We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We would like to add a dry-run parameter to the following func in pkg/kustomize:
dry-run
pkg/kustomize
func SubstituteVariables( ctx context.Context, kubeClient client.Client, kustomization unstructured.Unstructured, res *resource.Resource) (*resource.Resource, error){...}
It would become
func SubstituteVariables( ctx context.Context, kubeClient client.Client, kustomization unstructured.Unstructured, res *resource.Resource, dry-run bool) (*resource.Resource, error){...}
When the dry-run parameter resolve to true, we would replace the kubeAPI querys to retrieve substitutable objects by mocks.
true
We could then use it to enabled completely disconnected consumers (e.g flux cli in constrained environments) to use this function.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We would like to add a
dry-run
parameter to the following func inpkg/kustomize
:It would become
When the
dry-run
parameter resolve totrue
, we would replace the kubeAPI querys to retrieve substitutable objects by mocks.We could then use it to enabled completely disconnected consumers (e.g flux cli in constrained environments) to use this function.
The text was updated successfully, but these errors were encountered: