├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ └── maven.yml ├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ └── maven-wrapper.properties ├── CHANGELOG.md ├── LICENSE ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main └── kotlin │ └── com │ └── deviceinsight │ └── helm │ ├── AbstractHelmMojo.kt │ ├── DeployMojo.kt │ ├── LintMojo.kt │ ├── PackageMojo.kt │ ├── PropertyReplacement.kt │ ├── ResolveHelmMojo.kt │ ├── TemplateMojo.kt │ └── util │ ├── PlatformDetector.kt │ └── ServerAuthentication.kt └── test └── kotlin └── com └── deviceinsight └── helm └── PropertyReplacementTest.kt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/README.md -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/kotlin/com/deviceinsight/helm/AbstractHelmMojo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/src/main/kotlin/com/deviceinsight/helm/AbstractHelmMojo.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/deviceinsight/helm/DeployMojo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/src/main/kotlin/com/deviceinsight/helm/DeployMojo.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/deviceinsight/helm/LintMojo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/src/main/kotlin/com/deviceinsight/helm/LintMojo.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/deviceinsight/helm/PackageMojo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/src/main/kotlin/com/deviceinsight/helm/PackageMojo.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/deviceinsight/helm/PropertyReplacement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/src/main/kotlin/com/deviceinsight/helm/PropertyReplacement.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/deviceinsight/helm/ResolveHelmMojo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/src/main/kotlin/com/deviceinsight/helm/ResolveHelmMojo.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/deviceinsight/helm/TemplateMojo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/src/main/kotlin/com/deviceinsight/helm/TemplateMojo.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/deviceinsight/helm/util/PlatformDetector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/src/main/kotlin/com/deviceinsight/helm/util/PlatformDetector.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/deviceinsight/helm/util/ServerAuthentication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/src/main/kotlin/com/deviceinsight/helm/util/ServerAuthentication.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/deviceinsight/helm/PropertyReplacementTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviceinsight/helm-maven-plugin/HEAD/src/test/kotlin/com/deviceinsight/helm/PropertyReplacementTest.kt --------------------------------------------------------------------------------