Skip to content

Commit

Permalink
fix: container 공유메모리 option 변경 (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
kkkdeon authored Sep 1, 2022
1 parent 97c659a commit e791e38
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions python/mlad/core/kubernetes/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,8 @@ def _obtain_k8s_job_spec(
volumes=_volumes,
node_selector=node_selector,
image_pull_secrets=[client.V1LocalObjectReference(name=secrets)]
if secrets else None
if secrets else None,
host_ipc=True
)
)
)
Expand Down Expand Up @@ -754,7 +755,8 @@ def _obtain_k8s_deployment(
volumes=_volumes,
node_selector=node_selector,
image_pull_secrets=[client.V1LocalObjectReference(name=secrets)]
if secrets else None
if secrets else None,
host_ipc=True
)
)
)
Expand Down

0 comments on commit e791e38

Please sign in to comment.