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 would be good to have an option to execute arbitrary helm plugins.
for this we would need to be able to define plugins in the pom.xml similar to this:
pom.xml
<configuration> ... <plugins> <plugin>https://github.com/xyz/my-plugin</plugin> </plugins> </configuration> <executions> <execution> <goals> <goal>my-plugin</goal> <configuration> <options> <option>arg1</option> <option>arg2</option> </options> </configuration> </goals> </execution> </executions>
The text was updated successfully, but these errors were encountered:
This would be really helpful. It should also be possible to specify the plugin version:
<configuration> ... <plugins> <plugin> <url>https://github.com/xyz/my-plugin</url> <version>master</version> </plugin> </plugins> </configuration>
The <version> tag should be optional.
<version>
Sorry, something went wrong.
perhaps the tags should be named <helmPlugins>, <helmPlugin> to avoid confusion with the maven tags
<helmPlugins>
<helmPlugin>
No branches or pull requests
It would be good to have an option to execute arbitrary helm plugins.
for this we would need to be able to define plugins in the
pom.xml
similar to this:The text was updated successfully, but these errors were encountered: