Skip to content

Commit

Permalink
Revert "[Issue LangStream#741] Add fsGroup for runtime pod (LangStrea…
Browse files Browse the repository at this point in the history
…m#743)"

This reverts commit 2cd631c.
  • Loading branch information
Dobosz committed Dec 14, 2023
1 parent 3db40bd commit 4abf702
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,18 @@
import ai.langstream.runtime.api.application.ApplicationSetupConstants;
import ai.langstream.runtime.api.deployer.RuntimeDeployerConfiguration;
import ai.langstream.runtime.api.deployer.RuntimeDeployerConstants;
import io.fabric8.kubernetes.api.model.*;
import io.fabric8.kubernetes.api.model.Container;
import io.fabric8.kubernetes.api.model.ContainerBuilder;
import io.fabric8.kubernetes.api.model.EmptyDirVolumeSource;
import io.fabric8.kubernetes.api.model.EnvVar;
import io.fabric8.kubernetes.api.model.EnvVarBuilder;
import io.fabric8.kubernetes.api.model.KeyToPathBuilder;
import io.fabric8.kubernetes.api.model.Pod;
import io.fabric8.kubernetes.api.model.Quantity;
import io.fabric8.kubernetes.api.model.Volume;
import io.fabric8.kubernetes.api.model.VolumeBuilder;
import io.fabric8.kubernetes.api.model.VolumeMount;
import io.fabric8.kubernetes.api.model.VolumeMountBuilder;
import io.fabric8.kubernetes.api.model.batch.v1.Job;
import io.fabric8.kubernetes.api.model.batch.v1.JobBuilder;
import io.fabric8.kubernetes.client.KubernetesClient;
Expand Down Expand Up @@ -382,7 +393,6 @@ private static Job generateJob(
.withLabels(labels)
.endMetadata()
.withNewSpec()
.withSecurityContext(getPodSecurityContext())
.withTolerations(podTemplate != null ? podTemplate.tolerations() : null)
.withNodeSelector(podTemplate != null ? podTemplate.nodeSelector() : null)
.withServiceAccountName(serviceAccountName)
Expand Down Expand Up @@ -456,10 +466,6 @@ private static Map<String, String> getPodAnnotations(PodTemplate podTemplate) {
return annotations;
}

private static PodSecurityContext getPodSecurityContext() {
return new PodSecurityContextBuilder().withFsGroup(10_000L).build();
}

public static Map<String, String> getLabelsForDeployer(boolean delete, String applicationId) {
return Map.of(
CRDConstants.COMMON_LABEL_APP,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,6 @@ void testDeployerJob() {
- mountPath: /cluster-runtime-config
name: cluster-runtime-config
restartPolicy: Never
securityContext:
fsGroup: 10000
serviceAccountName: my-tenant
volumes:
- emptyDir: {}
Expand Down Expand Up @@ -228,8 +226,6 @@ void testDeployerJob() {
- mountPath: /cluster-runtime-config
name: cluster-runtime-config
restartPolicy: Never
securityContext:
fsGroup: 10000
serviceAccountName: my-tenant
volumes:
- emptyDir: {}
Expand Down Expand Up @@ -346,8 +342,6 @@ void testSetupJob() {
- mountPath: /cluster-runtime-config
name: cluster-runtime-config
restartPolicy: Never
securityContext:
fsGroup: 10000
serviceAccountName: runtime-my-tenant
volumes:
- emptyDir: {}
Expand Down Expand Up @@ -444,8 +438,6 @@ void testSetupJob() {
- mountPath: /cluster-runtime-config
name: cluster-runtime-config
restartPolicy: Never
securityContext:
fsGroup: 10000
serviceAccountName: runtime-my-tenant
volumes:
- emptyDir: {}
Expand Down

0 comments on commit 4abf702

Please sign in to comment.