Search in sources :

Example 1 with CHE_WORKSPACE_ID_LABEL

use of org.eclipse.che.workspace.infrastructure.kubernetes.Constants.CHE_WORKSPACE_ID_LABEL in project che-server by eclipse-che.

the class PVCProvisioner method addMachineVolumes.

private void addMachineVolumes(String workspaceId, KubernetesEnvironment k8sEnv, Map<String, PersistentVolumeClaim> volumeName2PVC, PodData pod, Container container, Map<String, Volume> volumes) {
    if (volumes.isEmpty()) {
        return;
    }
    for (Entry<String, Volume> volumeEntry : volumes.entrySet()) {
        final String volumePath = volumeEntry.getValue().getPath();
        final String volumeName = LOGS_VOLUME_NAME.equals(volumeEntry.getKey()) ? volumeEntry.getKey() + '-' + pod.getMetadata().getName() : volumeEntry.getKey();
        final PersistentVolumeClaim pvc;
        // checks whether PVC for given workspace and volume present in environment
        if (volumeName2PVC.containsKey(volumeName)) {
            pvc = volumeName2PVC.get(volumeName);
        } else // when PVC is not found in environment then create new one
        {
            final String uniqueName = Names.generateName(pvcNamePrefix);
            pvc = newPVC(uniqueName, pvcAccessMode, pvcQuantity, pvcStorageClassName);
            putLabel(pvc, CHE_WORKSPACE_ID_LABEL, workspaceId);
            putLabel(pvc, CHE_VOLUME_NAME_LABEL, volumeName);
            k8sEnv.getPersistentVolumeClaims().put(uniqueName, pvc);
            volumeName2PVC.put(volumeName, pvc);
        }
        // binds pvc to pod and container
        String pvcName = pvc.getMetadata().getName();
        PodSpec podSpec = pod.getSpec();
        Optional<io.fabric8.kubernetes.api.model.Volume> volumeOpt = podSpec.getVolumes().stream().filter(volume -> volume.getPersistentVolumeClaim() != null && pvcName.equals(volume.getPersistentVolumeClaim().getClaimName())).findAny();
        io.fabric8.kubernetes.api.model.Volume podVolume;
        if (volumeOpt.isPresent()) {
            podVolume = volumeOpt.get();
        } else {
            podVolume = newVolume(pvcName, pvcName);
            podSpec.getVolumes().add(podVolume);
        }
        container.getVolumeMounts().add(newVolumeMount(podVolume.getName(), volumePath, ""));
    }
}
Also used : Container(io.fabric8.kubernetes.api.model.Container) MachineConfig(org.eclipse.che.api.core.model.workspace.config.MachineConfig) KubernetesEnvironment(org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment) HashMap(java.util.HashMap) ArrayList(java.util.ArrayList) Inject(javax.inject.Inject) Names(org.eclipse.che.workspace.infrastructure.kubernetes.Names) KubernetesObjectUtil.putLabel(org.eclipse.che.workspace.infrastructure.kubernetes.namespace.KubernetesObjectUtil.putLabel) PodSpec(io.fabric8.kubernetes.api.model.PodSpec) Map(java.util.Map) Named(javax.inject.Named) KubernetesObjectUtil.newPVC(org.eclipse.che.workspace.infrastructure.kubernetes.namespace.KubernetesObjectUtil.newPVC) LOGS_VOLUME_NAME(org.eclipse.che.workspace.infrastructure.kubernetes.provision.LogsVolumeMachineProvisioner.LOGS_VOLUME_NAME) CHE_VOLUME_NAME_LABEL(org.eclipse.che.workspace.infrastructure.kubernetes.Constants.CHE_VOLUME_NAME_LABEL) Collection(java.util.Collection) KubernetesObjectUtil.newVolume(org.eclipse.che.workspace.infrastructure.kubernetes.namespace.KubernetesObjectUtil.newVolume) InternalMachineConfig(org.eclipse.che.api.workspace.server.spi.environment.InternalMachineConfig) List(java.util.List) Volume(org.eclipse.che.api.core.model.workspace.config.Volume) CHE_WORKSPACE_ID_LABEL(org.eclipse.che.workspace.infrastructure.kubernetes.Constants.CHE_WORKSPACE_ID_LABEL) ObjectMeta(io.fabric8.kubernetes.api.model.ObjectMeta) Entry(java.util.Map.Entry) PodData(org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment.PodData) PersistentVolumeClaim(io.fabric8.kubernetes.api.model.PersistentVolumeClaim) Optional(java.util.Optional) KubernetesObjectUtil.newVolumeMount(org.eclipse.che.workspace.infrastructure.kubernetes.namespace.KubernetesObjectUtil.newVolumeMount) PodSpec(io.fabric8.kubernetes.api.model.PodSpec) KubernetesObjectUtil.newVolume(org.eclipse.che.workspace.infrastructure.kubernetes.namespace.KubernetesObjectUtil.newVolume) Volume(org.eclipse.che.api.core.model.workspace.config.Volume) PersistentVolumeClaim(io.fabric8.kubernetes.api.model.PersistentVolumeClaim)

Example 2 with CHE_WORKSPACE_ID_LABEL

use of org.eclipse.che.workspace.infrastructure.kubernetes.Constants.CHE_WORKSPACE_ID_LABEL in project devspaces-images by redhat-developer.

the class PVCProvisioner method addMachineVolumes.

private void addMachineVolumes(String workspaceId, KubernetesEnvironment k8sEnv, Map<String, PersistentVolumeClaim> volumeName2PVC, PodData pod, Container container, Map<String, Volume> volumes) {
    if (volumes.isEmpty()) {
        return;
    }
    for (Entry<String, Volume> volumeEntry : volumes.entrySet()) {
        final String volumePath = volumeEntry.getValue().getPath();
        final String volumeName = LOGS_VOLUME_NAME.equals(volumeEntry.getKey()) ? volumeEntry.getKey() + '-' + pod.getMetadata().getName() : volumeEntry.getKey();
        final PersistentVolumeClaim pvc;
        // checks whether PVC for given workspace and volume present in environment
        if (volumeName2PVC.containsKey(volumeName)) {
            pvc = volumeName2PVC.get(volumeName);
        } else // when PVC is not found in environment then create new one
        {
            final String uniqueName = Names.generateName(pvcNamePrefix);
            pvc = newPVC(uniqueName, pvcAccessMode, pvcQuantity, pvcStorageClassName);
            putLabel(pvc, CHE_WORKSPACE_ID_LABEL, workspaceId);
            putLabel(pvc, CHE_VOLUME_NAME_LABEL, volumeName);
            k8sEnv.getPersistentVolumeClaims().put(uniqueName, pvc);
            volumeName2PVC.put(volumeName, pvc);
        }
        // binds pvc to pod and container
        String pvcName = pvc.getMetadata().getName();
        PodSpec podSpec = pod.getSpec();
        Optional<io.fabric8.kubernetes.api.model.Volume> volumeOpt = podSpec.getVolumes().stream().filter(volume -> volume.getPersistentVolumeClaim() != null && pvcName.equals(volume.getPersistentVolumeClaim().getClaimName())).findAny();
        io.fabric8.kubernetes.api.model.Volume podVolume;
        if (volumeOpt.isPresent()) {
            podVolume = volumeOpt.get();
        } else {
            podVolume = newVolume(pvcName, pvcName);
            podSpec.getVolumes().add(podVolume);
        }
        container.getVolumeMounts().add(newVolumeMount(podVolume.getName(), volumePath, ""));
    }
}
Also used : Container(io.fabric8.kubernetes.api.model.Container) MachineConfig(org.eclipse.che.api.core.model.workspace.config.MachineConfig) KubernetesEnvironment(org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment) HashMap(java.util.HashMap) ArrayList(java.util.ArrayList) Inject(javax.inject.Inject) Names(org.eclipse.che.workspace.infrastructure.kubernetes.Names) KubernetesObjectUtil.putLabel(org.eclipse.che.workspace.infrastructure.kubernetes.namespace.KubernetesObjectUtil.putLabel) PodSpec(io.fabric8.kubernetes.api.model.PodSpec) Map(java.util.Map) Named(javax.inject.Named) KubernetesObjectUtil.newPVC(org.eclipse.che.workspace.infrastructure.kubernetes.namespace.KubernetesObjectUtil.newPVC) LOGS_VOLUME_NAME(org.eclipse.che.workspace.infrastructure.kubernetes.provision.LogsVolumeMachineProvisioner.LOGS_VOLUME_NAME) CHE_VOLUME_NAME_LABEL(org.eclipse.che.workspace.infrastructure.kubernetes.Constants.CHE_VOLUME_NAME_LABEL) Collection(java.util.Collection) KubernetesObjectUtil.newVolume(org.eclipse.che.workspace.infrastructure.kubernetes.namespace.KubernetesObjectUtil.newVolume) InternalMachineConfig(org.eclipse.che.api.workspace.server.spi.environment.InternalMachineConfig) List(java.util.List) Volume(org.eclipse.che.api.core.model.workspace.config.Volume) CHE_WORKSPACE_ID_LABEL(org.eclipse.che.workspace.infrastructure.kubernetes.Constants.CHE_WORKSPACE_ID_LABEL) ObjectMeta(io.fabric8.kubernetes.api.model.ObjectMeta) Entry(java.util.Map.Entry) PodData(org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment.PodData) PersistentVolumeClaim(io.fabric8.kubernetes.api.model.PersistentVolumeClaim) Optional(java.util.Optional) KubernetesObjectUtil.newVolumeMount(org.eclipse.che.workspace.infrastructure.kubernetes.namespace.KubernetesObjectUtil.newVolumeMount) PodSpec(io.fabric8.kubernetes.api.model.PodSpec) KubernetesObjectUtil.newVolume(org.eclipse.che.workspace.infrastructure.kubernetes.namespace.KubernetesObjectUtil.newVolume) Volume(org.eclipse.che.api.core.model.workspace.config.Volume) PersistentVolumeClaim(io.fabric8.kubernetes.api.model.PersistentVolumeClaim)

Aggregations

Container (io.fabric8.kubernetes.api.model.Container)2 ObjectMeta (io.fabric8.kubernetes.api.model.ObjectMeta)2 PersistentVolumeClaim (io.fabric8.kubernetes.api.model.PersistentVolumeClaim)2 PodSpec (io.fabric8.kubernetes.api.model.PodSpec)2 ArrayList (java.util.ArrayList)2 Collection (java.util.Collection)2 HashMap (java.util.HashMap)2 List (java.util.List)2 Map (java.util.Map)2 Entry (java.util.Map.Entry)2 Optional (java.util.Optional)2 Inject (javax.inject.Inject)2 Named (javax.inject.Named)2 MachineConfig (org.eclipse.che.api.core.model.workspace.config.MachineConfig)2 Volume (org.eclipse.che.api.core.model.workspace.config.Volume)2 InternalMachineConfig (org.eclipse.che.api.workspace.server.spi.environment.InternalMachineConfig)2 CHE_VOLUME_NAME_LABEL (org.eclipse.che.workspace.infrastructure.kubernetes.Constants.CHE_VOLUME_NAME_LABEL)2 CHE_WORKSPACE_ID_LABEL (org.eclipse.che.workspace.infrastructure.kubernetes.Constants.CHE_WORKSPACE_ID_LABEL)2 Names (org.eclipse.che.workspace.infrastructure.kubernetes.Names)2 KubernetesEnvironment (org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment)2