File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -87,20 +87,20 @@ def get_pathways_sidecar_container(args) -> str:
8787 str: yaml containing arguments for the Pathways sidecar container.
8888 """
8989 yaml = """initContainers:
90- - name: remote-python-sidecar
91- image: {args.remote_python_sidecar_image}
92- imagePullPolicy: Always
93- securityContext:
94- privileged: true
95- volumeMounts:
96- - mountPath: /tmp # Shared volume mount with the main container.
97- name: shared-tmp
98- restartPolicy: Always
99- ports:
100- - containerPort: 50051
101- env:
102- - name: GRPC_SERVER_ADDRESS
103- value: '0.0.0.0:50051'"""
90+ - name: remote-python-sidecar
91+ image: {args.remote_python_sidecar_image}
92+ imagePullPolicy: Always
93+ securityContext:
94+ privileged: true
95+ volumeMounts:
96+ - mountPath: /tmp # Shared volume mount with the main container.
97+ name: shared-tmp
98+ restartPolicy: Always
99+ ports:
100+ - containerPort: 50051
101+ env:
102+ - name: GRPC_SERVER_ADDRESS
103+ value: '0.0.0.0:50051'"""
104104 if args .use_pathways and args .remote_python_sidecar_image is not None :
105105 return yaml .format (args = args )
106106 else :
You can’t perform that action at this time.
0 commit comments