File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -126,8 +126,8 @@ def start_worker_job(self) -> None:
126
126
command .extend (['--bundle-runtime' , self .bundle_runtime ])
127
127
command .extend (['--kubernetes-cluster-host' , self .cluster_host ])
128
128
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 () ])
131
131
132
132
worker_image : str = 'codalab/worker:' + os .environ .get ('CODALAB_VERSION' , 'latest' )
133
133
@@ -191,7 +191,7 @@ def start_worker_job(self) -> None:
191
191
}
192
192
},
193
193
'volumes' : [
194
- {'name' : 'certpath' , 'hostPath' : {'path' : self .cert_path }},
194
+ # {'name': 'certpath', 'hostPath': {'path': self.cert_path}},
195
195
{
196
196
"name" : self .nfs_volume_name ,
197
197
# When attaching a volume over NFS, use a persistent volume claim
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ marshmallow==2.15.1
17
17
setuptools >= 40.0.0
18
18
argcomplete == 1.12.3
19
19
indexed_gzip == 1.7.0
20
- ratarmountcore == 0.1.3
20
+ ratarmountcore == 0.3.2
21
21
PyYAML == 5.4
22
22
psutil == 5.7.2
23
23
six == 1.15.0
You can’t perform that action at this time.
0 commit comments