public class HelmProjectType extends Object
| Constructor and Description |
|---|
HelmProjectType()
Default constructor.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
check(File directory)
To know if the project is an Helm project type.
|
boolean |
createNewUpdateFile(String buildPath,
String buildTempPath,
com.github.zafarkhaja.semver.Version nextVersion,
boolean isIndented,
String[] matchingWords)
Write an updated temporary file with next version
then replace the project config file with it.
|
com.github.zafarkhaja.semver.Version |
getCurrentVersion(File directory,
ProcessHelper processHelper)
Return the next version of the version attribute.
|
void |
writeVersion(File directory,
com.github.zafarkhaja.semver.Version nextVersion,
ProcessHelper processHelper)
Write back to the Chart.yaml the new Version.
|
public HelmProjectType()
public boolean check(File directory)
directory - The directory to check. Mandatorypublic com.github.zafarkhaja.semver.Version getCurrentVersion(File directory, ProcessHelper processHelper) throws IOException
directory - The project's directory.processHelper - Not used.IOException - If an error occur reading files.public void writeVersion(File directory, com.github.zafarkhaja.semver.Version nextVersion, ProcessHelper processHelper) throws IOException, InterruptedException
directory - The directory where is the Chart.yaml. MandatorynextVersion - The next version to write. MandatoryprocessHelper - Can be null, not used.IOException - If an error occurred when accessing files or directory.InterruptedException - Not used.public boolean createNewUpdateFile(String buildPath, String buildTempPath, com.github.zafarkhaja.semver.Version nextVersion, boolean isIndented, String[] matchingWords) throws IOException
buildPath - Path of the file updatedbuildTempPath - Path of a temporary file to replace buildPathnextVersion - Version to update config fileisIndented - Can the config file have indentationmatchingWords - Tab of word to match the versionIOException - If errors occurs when write the fileCopyright © 2016–2022. All rights reserved.