Skip to content

Commit 4960cf7

Browse files
committed
updates, fixes to k8s worker manager
1 parent d298db5 commit 4960cf7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

codalab/worker_manager/kubernetes_worker_manager.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ def start_worker_job(self) -> None:
126126
command.extend(['--bundle-runtime', self.bundle_runtime])
127127
command.extend(['--kubernetes-cluster-host', self.cluster_host])
128128
command.extend(['--kubernetes-auth-token', self.auth_token])
129-
command.extend(['--kubernetes-cert-path', self.cert_path])
130-
command.extend(['--kubernetes-cert', self.cert])
129+
command.extend(['--kubernetes-cert-path', '/dev/null'])
130+
command.extend(['--kubernetes-cert', open(self.cert_path).read()])
131131

132132
worker_image: str = 'codalab/worker:' + os.environ.get('CODALAB_VERSION', 'latest')
133133

@@ -191,7 +191,7 @@ def start_worker_job(self) -> None:
191191
}
192192
},
193193
'volumes': [
194-
{'name': 'certpath', 'hostPath': {'path': self.cert_path}},
194+
# {'name': 'certpath', 'hostPath': {'path': self.cert_path}},
195195
{
196196
"name": self.nfs_volume_name,
197197
# When attaching a volume over NFS, use a persistent volume claim

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ marshmallow==2.15.1
1717
setuptools>=40.0.0
1818
argcomplete==1.12.3
1919
indexed_gzip==1.7.0
20-
ratarmountcore==0.1.3
20+
ratarmountcore==0.3.2
2121
PyYAML==5.4
2222
psutil==5.7.2
2323
six==1.15.0

0 commit comments

Comments
 (0)