in teamcity-helm-plugin-server/src/main/java/jetbrains/buildServer/helm/DeleteCommand.java [39:48]
public PropertiesProcessor getPropertiesProcessor() {
return properties -> {
List<InvalidProperty> result = new Vector<InvalidProperty>();
final String chart = properties.get(HELM_DELETE_COMMAND_NAME + HelmConstants.RELEASE_NAME);
if (PropertiesUtil.isEmptyOrNull(chart)) {
result.add(new InvalidProperty(HELM_DELETE_COMMAND_NAME + HelmConstants.RELEASE_NAME, "Release name must be specified"));
}
return result;
};
}