Skip to content

Commit be91f3a

Browse files
update-version-0.10.1 (#1301)
* [create-pull-request] automated change * Updated RAY_NODE_IMAGE default image --------- Co-authored-by: Tansito <[email protected]> Co-authored-by: David <[email protected]>
1 parent c37a3d7 commit be91f3a

File tree

9 files changed

+21
-21
lines changed

9 files changed

+21
-21
lines changed

charts/quantum-serverless/Chart.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
dependencies:
22
- name: gateway
33
repository: ""
4-
version: 0.10.0
4+
version: 0.10.1
55
- name: nginx-ingress-controller
66
repository: https://charts.bitnami.com/bitnami
77
version: 9.11.0
@@ -11,5 +11,5 @@ dependencies:
1111
- name: kuberay-operator
1212
repository: https://ray-project.github.io/kuberay-helm
1313
version: 1.0.0
14-
digest: sha256:fcc325b4f04c33f7673a80b07ee58618282815529fe1efe505211d43adfcd1b0
15-
generated: "2024-04-22T19:48:36.266347434Z"
14+
digest: sha256:c9635374c2022481190e791838a9fd768dafd60c0bb58b0393af5ebd0b76d27b
15+
generated: "2024-04-29T20:20:06.29087398Z"

charts/quantum-serverless/Chart.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ description: Quantum-Serverless helm chart that contains different dependencies.
44

55
type: application
66

7-
version: 0.10.0
8-
appVersion: "0.10.0"
7+
version: 0.10.1
8+
appVersion: "0.10.1"
99

1010
dependencies:
1111
- name: gateway
1212
condition: gatewayEnable
13-
version: 0.10.0
13+
version: 0.10.1
1414
- name: nginx-ingress-controller
1515
condition: nginxIngressControllerEnable
1616
version: 9.11.0

charts/quantum-serverless/charts/gateway/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.10.0
18+
version: 0.10.1
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "0.10.0"
24+
appVersion: "0.10.1"

charts/quantum-serverless/charts/gateway/values.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ application:
1717
superuser:
1818
enable: true
1919
ray:
20-
nodeImage: "icr.io/quantum-public/quantum-serverless-ray-node:0.10.0-py39"
21-
nodeImage_py39: "icr.io/quantum-public/quantum-serverless-ray-node:0.10.0-py39"
22-
nodeImage_py310: "icr.io/quantum-public/quantum-serverless-ray-node:0.10.0-py310"
20+
nodeImage: "icr.io/quantum-public/quantum-serverless-ray-node:0.10.1-py39"
21+
nodeImage_py39: "icr.io/quantum-public/quantum-serverless-ray-node:0.10.1-py39"
22+
nodeImage_py310: "icr.io/quantum-public/quantum-serverless-ray-node:0.10.1-py310"
2323
cpu: 2
2424
memory: 2
2525
replicas: 1

charts/quantum-serverless/values.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Quantum Serverless Info
33
# ===================
44
global:
5-
version: 0.10.0
5+
version: 0.10.1
66

77
# ===================
88
# Quantum Serverless configs
@@ -47,7 +47,7 @@ gateway:
4747
image:
4848
repository: "icr.io/quantum-public/quantum-serverless-gateway"
4949
pullPolicy: IfNotPresent
50-
tag: "0.10.0"
50+
tag: "0.10.1"
5151
application:
5252
siteHost: "http://gateway:8000"
5353
rayHost: "http://kuberay-head-svc:8265"
@@ -59,7 +59,7 @@ gateway:
5959
type: ClusterIP
6060
port: 8000
6161
ray:
62-
nodeImage: "icr.io/quantum-public/quantum-serverless-ray-node:0.10.0-py310"
62+
nodeImage: "icr.io/quantum-public/quantum-serverless-ray-node:0.10.1-py310"
6363
opensslImage: registry.access.redhat.com/ubi8/openssl:8.8-9
6464
kubectlImage: alpine/k8s:1.29.2@sha256:a51aa37f0a34ff827c7f2f9cb7f6fbb8f0e290fa625341be14c2fcc4b1880f60
6565
limits:

client/quantum_serverless/VERSION.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.0
1+
0.10.1

docker-compose.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
services:
33
ray-head:
44
container_name: ray-head
5-
image: icr.io/quantum-public/quantum-serverless-ray-node:${VERSION:-0.10.0}-py310
5+
image: icr.io/quantum-public/quantum-serverless-ray-node:${VERSION:-0.10.1}-py310
66
entrypoint: [
77
"ray", "start", "--head", "--port=6379",
88
"--dashboard-host=0.0.0.0", "--block"
@@ -27,7 +27,7 @@ services:
2727
always
2828
gateway:
2929
container_name: gateway
30-
image: icr.io/quantum-public/quantum-serverless-gateway:${VERSION:-0.10.0}
30+
image: icr.io/quantum-public/quantum-serverless-gateway:${VERSION:-0.10.1}
3131
command: gunicorn main.wsgi:application --bind 0.0.0.0:8000 --workers=4
3232
ports:
3333
- 8000:8000
@@ -52,7 +52,7 @@ services:
5252
- postgres
5353
scheduler:
5454
container_name: scheduler
55-
image: icr.io/quantum-public/quantum-serverless-gateway:${VERSION:-0.10.0}
55+
image: icr.io/quantum-public/quantum-serverless-gateway:${VERSION:-0.10.1}
5656
entrypoint: "./scripts/scheduler.sh"
5757
environment:
5858
- DEBUG=0

docs/deployment/cloud.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Once your cluster is ready, the installation is relatively straightforward with
8484
and run the next commands:
8585

8686
.. code-block::
87-
:caption: run this commands with the release version like 0.10.0 in x.y.z (2 places)
87+
:caption: run this commands with the release version like 0.10.1 in x.y.z (2 places)
8888
8989
$ helm -n <INSERT_YOUR_NAMESPACE> install quantum-serverless --create-namespace https://github.com/Qiskit-Extensions/quantum-serverless/releases/download/vx.y.z/quantum-serverless-x.y.z.tgz
9090
@@ -119,6 +119,6 @@ with the configuration of your domain and provider.
119119
Optionally, you can install an observability package to handle logging and monitoring on your cluster by running the following command:
120120

121121
.. code-block::
122-
:caption: run this commands with the release version like 0.10.0 in x.y.z (2 places) using the same namespace as in the previous helm command
122+
:caption: run this commands with the release version like 0.10.1 in x.y.z (2 places) using the same namespace as in the previous helm command
123123
124124
$ helm -n <INSERT_YOUR_NAMESPACE> install qs-observability https://github.com/Qiskit-Extensions/quantum-serverless/releases/download/vx.y.z/qs-observability-x.y.z.tgz

gateway/main/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@
310310
),
311311
}
312312
RAY_NODE_IMAGE = os.environ.get(
313-
"RAY_NODE_IMAGE", "icr.io/quantum-public/quantum-serverless-ray-node:0.10.0-py310"
313+
"RAY_NODE_IMAGE", "icr.io/quantum-public/quantum-serverless-ray-node:0.10.1-py310"
314314
)
315315
RAY_NODE_IMAGES_MAP = {
316316
"default": RAY_NODE_IMAGE,

0 commit comments

Comments
 (0)