use of org.eclipse.che.api.core.model.workspace.devfile.Env in project che-server by eclipse-che.
the class EnvVars method apply.
private void apply(List<EnvVar> targetEnv, Env env) {
Optional<EnvVar> existingOpt = targetEnv.stream().filter(e -> e.getName().equals(env.getName())).findAny();
if (existingOpt.isPresent()) {
EnvVar envVar = existingOpt.get();
envVar.setValue(env.getValue());
envVar.setValueFrom(null);
} else {
targetEnv.add(new EnvVar(env.getName(), env.getValue(), null));
}
}
use of org.eclipse.che.api.core.model.workspace.devfile.Env in project che-server by eclipse-che.
the class DevfileIntegrityValidator method validateComponents.
private Set<String> validateComponents(Devfile devfile) throws DevfileFormatException {
Set<String> definedAliases = new HashSet<>();
Component editorComponent = null;
Map<String, Set<String>> idsPerComponentType = new HashMap<>();
for (Component component : devfile.getComponents()) {
if (component.getAlias() != null && !definedAliases.add(component.getAlias())) {
throw new DevfileFormatException(format("Duplicate component alias found:'%s'", component.getAlias()));
}
Optional<Map.Entry<String, Long>> duplicatedEndpoint = component.getEndpoints().stream().map(Endpoint::getName).collect(Collectors.groupingBy(Function.identity(), Collectors.counting())).entrySet().stream().filter(e -> e.getValue() > 1L).findFirst();
if (duplicatedEndpoint.isPresent()) {
throw new DevfileFormatException(format("Duplicated endpoint name '%s' found in '%s' component", duplicatedEndpoint.get().getKey(), getIdentifiableComponentName(component)));
}
Set<String> tempSet = new HashSet<>();
for (Env env : component.getEnv()) {
if (!tempSet.add(env.getName())) {
throw new DevfileFormatException(format("Duplicate environment variable '%s' found in component '%s'", env.getName(), getIdentifiableComponentName(component)));
}
}
if (!idsPerComponentType.computeIfAbsent(component.getType(), __ -> new HashSet<>()).add(getIdentifiableComponentName(component))) {
throw new DevfileFormatException(format("There are multiple components '%s' of type '%s' that cannot be uniquely" + " identified. Please add aliases that would distinguish the components.", getIdentifiableComponentName(component), component.getType()));
}
if (component.getAutomountWorkspaceSecrets() != null && component.getAlias() == null) {
throw new DevfileFormatException(format("The 'automountWorkspaceSecrets' property cannot be used in component which doesn't have alias. " + "Please add alias to component '%s' that would allow to distinguish its containers.", getIdentifiableComponentName(component)));
}
switch(component.getType()) {
case EDITOR_COMPONENT_TYPE:
if (editorComponent != null) {
throw new DevfileFormatException(format("Multiple editor components found: '%s', '%s'", getIdentifiableComponentName(editorComponent), getIdentifiableComponentName(component)));
}
editorComponent = component;
break;
case PLUGIN_COMPONENT_TYPE:
case KUBERNETES_COMPONENT_TYPE:
case OPENSHIFT_COMPONENT_TYPE:
case DOCKERIMAGE_COMPONENT_TYPE:
// do nothing
break;
default:
throw new DevfileFormatException(format("One of the components has unsupported component type: '%s'", component.getType()));
}
}
return definedAliases;
}
use of org.eclipse.che.api.core.model.workspace.devfile.Env in project che-server by eclipse-che.
the class EnvVars method apply.
/**
* Applies the specified env vars list to the specified containers.
*
* <p>If a container does not have the corresponding env - it will be provisioned, if it has - the
* value will be overridden.
*
* @param container pod to supply env vars
* @param toApply env vars to apply
*/
public void apply(Container container, List<? extends Env> toApply) {
List<EnvVar> targetEnv = container.getEnv();
if (targetEnv == null) {
targetEnv = new ArrayList<>();
container.setEnv(targetEnv);
}
for (Env env : toApply) {
apply(targetEnv, env);
}
}
use of org.eclipse.che.api.core.model.workspace.devfile.Env in project devspaces-images by redhat-developer.
the class EnvVars method apply.
/**
* Applies the specified env vars list to the specified containers.
*
* <p>If a container does not have the corresponding env - it will be provisioned, if it has - the
* value will be overridden.
*
* @param container pod to supply env vars
* @param toApply env vars to apply
*/
public void apply(Container container, List<? extends Env> toApply) {
List<EnvVar> targetEnv = container.getEnv();
if (targetEnv == null) {
targetEnv = new ArrayList<>();
container.setEnv(targetEnv);
}
for (Env env : toApply) {
apply(targetEnv, env);
}
}
use of org.eclipse.che.api.core.model.workspace.devfile.Env in project devspaces-images by redhat-developer.
the class EnvVars method apply.
private void apply(List<EnvVar> targetEnv, Env env) {
Optional<EnvVar> existingOpt = targetEnv.stream().filter(e -> e.getName().equals(env.getName())).findAny();
if (existingOpt.isPresent()) {
EnvVar envVar = existingOpt.get();
envVar.setValue(env.getValue());
envVar.setValueFrom(null);
} else {
targetEnv.add(new EnvVar(env.getName(), env.getValue(), null));
}
}
Aggregations