Skip to content
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

Support for helm plugins #14

Open
ghost opened this issue Oct 1, 2019 · 2 comments
Open

Support for helm plugins #14

ghost opened this issue Oct 1, 2019 · 2 comments
Labels
enhancement New feature or request Hacktoberfest

Comments

@ghost
Copy link

ghost commented Oct 1, 2019

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:

<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>

@ghost ghost added the Hacktoberfest label Oct 1, 2019
@pvorb
Copy link
Member

pvorb commented Oct 1, 2019

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.

@ghost
Copy link
Author

ghost commented Oct 1, 2019

perhaps the tags should be named <helmPlugins>, <helmPlugin> to avoid confusion with the maven tags

@marinabauer marinabauer added the enhancement New feature or request label Jul 21, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request Hacktoberfest
Projects
None yet
Development

No branches or pull requests

2 participants