-
Notifications
You must be signed in to change notification settings - Fork 568
New issue
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
provide special flags to environment for certain stages #794
Comments
And I can't use raw directly, as it's unfeasible to dissect the manifests and massage them into the supported format by raw. |
@Morriz Hey! It's still rough around the edges but I believe you can benefit from #673. With it, you should be able to specify a directory containing k8s manifests in We don't need differentiation between |
Wow, that would be an elaborate solution...awesome! |
Would it also know how to escape |
@Morriz Are you trying to escape Then try:
and
like
This renders to a text of |
Ah sry I misunderstood your question. |
Ah, great. Than I can ditch my custom skeleton app solution...will try soon |
I would like to be able to infer that a chart is beying installed or destroyed, so that I can make better use of exec.
Scenario:
Some apps in the wild don't support helm or not fully (knative, cert-manager etc), but I would like to use helmfile ordering to install their manifests at the right time.
So I create a basic deploy script that either does a
k apply -f $FOLDER
, or, and that is about my request, it does ak delete -f $FOLDER
.The text was updated successfully, but these errors were encountered: