Skip to content

Commit 0dda865

Browse files
authored
fix: use quay for images (#502)
1 parent 88b2518 commit 0dda865

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: src/codeflare_sdk/templates/base-template.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ spec:
130130
- name: RAY_TLS_CA_CERT
131131
value: /home/ray/workspace/tls/ca.crt
132132
name: ray-head
133-
image: rayproject/ray:latest
133+
image: quay.io/project-codeflare/ray:latest-py39-cu118
134134
imagePullPolicy: Always
135135
ports:
136136
- containerPort: 6379
@@ -176,7 +176,7 @@ spec:
176176
- sh
177177
- -c
178178
- cd /home/ray/workspace/tls && openssl req -nodes -newkey rsa:2048 -keyout server.key -out server.csr -subj '/CN=ray-head' && printf "authorityKeyIdentifier=keyid,issuer\nbasicConstraints=CA:FALSE\nsubjectAltName = @alt_names\n[alt_names]\nDNS.1 = 127.0.0.1\nDNS.2 = localhost\nDNS.3 = ${FQ_RAY_IP}\nDNS.4 = $(awk 'END{print $1}' /etc/hosts)\nDNS.5 = rayclient-deployment-name-$(cat /var/run/secrets/kubernetes.io/serviceaccount/namespace).server-name">./domain.ext && cp /home/ray/workspace/ca/* . && openssl x509 -req -CA ca.crt -CAkey ca.key -in server.csr -out server.crt -days 365 -CAcreateserial -extfile domain.ext
179-
image: rayproject/ray:2.7.0
179+
image: quay.io/project-codeflare/ray:latest-py39-cu118
180180
name: create-cert
181181
# securityContext:
182182
# runAsUser: 1000
@@ -252,7 +252,7 @@ spec:
252252
initContainers:
253253
# the env var $RAY_IP is set by the operator if missing, with the value of the head service name
254254
- name: create-cert
255-
image: rayproject/ray:2.7.0
255+
image: quay.io/project-codeflare/ray:latest-py39-cu118
256256
command:
257257
- sh
258258
- -c
@@ -269,7 +269,7 @@ spec:
269269
readOnly: false
270270
containers:
271271
- name: machine-learning # must consist of lower case alphanumeric characters or '-', and must start and end with an alphanumeric character (e.g. 'my-name', or '123-abc'
272-
image: rayproject/ray:latest
272+
image: quay.io/project-codeflare/ray:latest-py39-cu118
273273
env:
274274
- name: MY_POD_IP
275275
valueFrom:

0 commit comments

Comments
 (0)