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
It is pretty exhausting to specify many K8s manifests in the zarf.yaml. I end up using find to get all paths together.
zarf.yaml
find
manifests
components: - name: manifests required: true manifests: - name: manifests namespace: default files: - manifests/**/*.yaml
.yaml
The text was updated successfully, but these errors were encountered:
This would probably be reasonably easy to accomplish with filepath.Glob
filepath.Glob
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe.
It is pretty exhausting to specify many K8s manifests in the
zarf.yaml
. I end up usingfind
to get all paths together.Describe the solution you'd like
manifests
with all K8s manifests relative to yourzarf.yaml
zarf.yaml
:.yaml
withinmanifests
and all of it's subfolders should be in the package on create.The text was updated successfully, but these errors were encountered: