use of org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment.PodData in project che-server by eclipse-che.
the class PodsVolumesTest method setUp.
@BeforeMethod
public void setUp() {
Pod pod = newPod(POD_1_NAME).withContainers(newContainer(CONTAINER_1_NAME).build(), newContainer(CONTAINER_2_NAME).build()).build();
podData = new PodData(pod.getSpec(), pod.getMetadata());
podsVolumes = new PodsVolumes();
}
use of org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment.PodData in project che-server by eclipse-che.
the class KubernetesInternalRuntimeTest method testInjectablePodsMergedIntoRuntimePods.
@Test
public void testInjectablePodsMergedIntoRuntimePods() throws Exception {
// given
Map<String, Pod> injectedPods = ImmutableMap.of("injected", mockPod(singletonList(mockContainer("injectedContainer"))));
doReturn(ImmutableMap.of(M1_NAME, injectedPods)).when(k8sEnv).getInjectablePodsCopy();
doReturn(concat(podsMap.entrySet().stream(), injectedPods.entrySet().stream()).collect(toMap(Map.Entry::getKey, e -> new PodData(e.getValue())))).when(k8sEnv).getPodsData();
doReturn(ImmutableMap.of(M1_NAME, mock(InternalMachineConfig.class), M2_NAME, mock(InternalMachineConfig.class), WORKSPACE_POD_NAME + "/injectedContainer", mock(InternalMachineConfig.class))).when(k8sEnv).getMachines();
// when
internalRuntime.start(emptyMap());
// then
ArgumentCaptor<Deployment> podCaptor = ArgumentCaptor.forClass(Deployment.class);
verify(deployments).deploy(podCaptor.capture());
List<Deployment> depls = podCaptor.getAllValues();
assertEquals(depls.size(), 1);
Deployment deployedPod = depls.get(0);
List<String> containerNames = deployedPod.getSpec().getTemplate().getSpec().getContainers().stream().map(Container::getName).collect(toList());
assertEquals(containerNames.size(), 3);
assertEquals(new HashSet<>(containerNames), new HashSet<>(asList(CONTAINER_NAME_1, CONTAINER_NAME_2, "injectedContainer")));
}
use of org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment.PodData in project che-server by eclipse-che.
the class KubernetesArtifactsBrokerApplier method apply.
/**
* Apply plugin broker as init container to workspace environment. Workspace environment will have
* broker's configmap, machines, and volumes added in addition to the init container
*/
public void apply(E workspaceEnvironment, RuntimeIdentity runtimeID, Collection<PluginFQN> pluginFQNs, boolean mergePlugins) throws InfrastructureException {
E brokerEnvironment = brokerEnvironmentFactory.createForArtifactsBroker(pluginFQNs, runtimeID, mergePlugins);
Map<String, PodData> workspacePods = workspaceEnvironment.getPodsData();
if (workspacePods.size() != 1) {
throw new InfrastructureException("Che plugins tooling configuration can be applied to a workspace with one pod only.");
}
PodData workspacePod = workspacePods.values().iterator().next();
Map<String, PodData> brokerPods = brokerEnvironment.getPodsData();
if (brokerPods.size() != 1) {
throw new InfrastructureException("Broker environment must have only one Pod.");
}
PodData brokerPod = brokerPods.values().iterator().next();
// Add broker machines to workspace environment so that the init containers can be provisioned.
List<Container> brokerContainers = brokerPod.getSpec().getContainers();
for (Container container : brokerContainers) {
InternalMachineConfig brokerMachine = brokerEnvironment.getMachines().get(Names.machineName(brokerPod, container));
if (brokerMachine == null) {
throw new InfrastructureException(String.format("Could not retrieve the specification of the plugin broker container %s", container.getName()));
}
workspaceEnvironment.getMachines().put(Names.machineName(workspacePod, container), brokerMachine);
}
workspaceEnvironment.getConfigMaps().putAll(brokerEnvironment.getConfigMaps());
workspacePod.getSpec().getInitContainers().addAll(brokerPod.getSpec().getContainers());
workspacePod.getSpec().getVolumes().addAll(brokerPod.getSpec().getVolumes());
}
use of org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment.PodData in project che-server by eclipse-che.
the class KubernetesPluginsToolingApplier method addSidecar.
/**
* Adds k8s and Che specific configuration of a sidecar into the environment. For example:
* <li>k8s container configuration {@link Container}
* <li>k8s service configuration {@link Service}
* <li>Che machine config {@link InternalMachineConfig}
* <li>Fill in machine name attribute in related commands
*
* @throws InfrastructureException when any error occurs
*/
private void addSidecar(PodData pod, CheContainer container, ChePlugin chePlugin, KubernetesEnvironment k8sEnv, Collection<CommandImpl> sidecarRelatedCommands, Component pluginRelatedComponent, RuntimeIdentity runtimeIdentity) throws InfrastructureException {
K8sContainerResolver k8sContainerResolver = toK8sContainerResolver(container, chePlugin.getEndpoints());
List<ChePluginEndpoint> containerEndpoints = k8sContainerResolver.getEndpoints();
Container k8sContainer = k8sContainerResolver.resolve();
envVars.apply(k8sContainer, pluginRelatedComponent.getEnv());
chePluginsVolumeApplier.applyVolumes(pod, k8sContainer, container.getVolumes(), k8sEnv);
String machineName = k8sContainer.getName();
Names.putMachineName(pod.getMetadata(), k8sContainer.getName(), machineName);
pod.getSpec().getContainers().add(k8sContainer);
MachineResolver machineResolver = new MachineResolverBuilder().setCheContainer(container).setContainer(k8sContainer).setContainerEndpoints(containerEndpoints).setDefaultSidecarMemoryLimitAttribute(defaultSidecarMemoryLimitBytes).setDefaultSidecarMemoryRequestAttribute(defaultSidecarMemoryRequestBytes).setDefaultSidecarCpuLimitAttribute(defaultSidecarCpuLimitCores).setDefaultSidecarCpuRequestAttribute(defaultSidecarCpuRequestCores).setProjectsRootPathEnvVar(projectsRootEnvVariableProvider.get(runtimeIdentity)).setComponent(pluginRelatedComponent).build();
InternalMachineConfig machineConfig = machineResolver.resolve();
machineConfig.getAttributes().put(CONTAINER_SOURCE_ATTRIBUTE, TOOL_CONTAINER_SOURCE);
machineConfig.getAttributes().put(PLUGIN_MACHINE_ATTRIBUTE, chePlugin.getId());
k8sEnv.getMachines().put(machineName, machineConfig);
sidecarRelatedCommands.forEach(c -> c.getAttributes().put(org.eclipse.che.api.core.model.workspace.config.Command.MACHINE_NAME_ATTRIBUTE, machineName));
container.getCommands().stream().map(c -> asCommand(machineName, c)).forEach(c -> k8sEnv.getCommands().add(c));
SidecarServicesProvisioner sidecarServicesProvisioner = new SidecarServicesProvisioner(containerEndpoints, pod.getMetadata().getName());
sidecarServicesProvisioner.provision(k8sEnv);
}
use of org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment.PodData in project che-server by eclipse-che.
the class KubernetesEnvironmentFactoryTest method createPodData.
private static PodData createPodData(String machineName, long ramLimit, long ramRequest) {
final String containerName = "container_" + machineName;
final Container containerMock = mock(Container.class);
final ResourceRequirements resourcesMock = mock(ResourceRequirements.class);
final Quantity limitQuantityMock = mock(Quantity.class);
final Quantity requestQuantityMock = mock(Quantity.class);
final PodSpec specMock = mock(PodSpec.class);
final ObjectMeta metadataMock = mock(ObjectMeta.class);
when(limitQuantityMock.getAmount()).thenReturn(String.valueOf(ramLimit));
when(requestQuantityMock.getAmount()).thenReturn(String.valueOf(ramRequest));
when(resourcesMock.getLimits()).thenReturn(ImmutableMap.of("memory", limitQuantityMock));
when(resourcesMock.getRequests()).thenReturn(ImmutableMap.of("memory", requestQuantityMock));
when(containerMock.getName()).thenReturn(containerName);
when(containerMock.getResources()).thenReturn(resourcesMock);
when(metadataMock.getAnnotations()).thenReturn(Names.createMachineNameAnnotations(containerName, machineName));
when(specMock.getContainers()).thenReturn(ImmutableList.of(containerMock));
return new PodData(specMock, metadataMock);
}
Aggregations