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

Kubernetes Gradle Plugin's k8sHelm task can't pick maintainers, home, sources from project configuration #1073

Open
rohanKanojia opened this issue Oct 27, 2021 · 0 comments
Labels

Comments

@rohanKanojia
Copy link
Member

Description

While working on #1052 , I couldn't find any way to read the following properties in Helm Configuration from project configuration:

These fields are usually found in project metadata which is available in pom.xml of a maven project. However, I wasn't able to find a place where these meta fields are specified in an equivalent grade project. Probably, there isn't any existing equivalent. For now, the user has to specify it explicitly in Gradle Groovy DSL configuration:

openshift {
    helm {
        sources = ['https://github.com/eclipse/jkube.git']
        home = 'https://www.eclipse.org/jkube'
        maintainers = [{
            name = 'John'
            email = 'john.doe@example.com'
        }]
    }
}

We need to check if there is way to search for these things in gradle configuration model and automatically read it while building up opinionated helm configuration.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants