Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump 0.1.2 #645

Merged
merged 2 commits into from
Jun 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/quantum_serverless/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
0.1.2
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
services:
jupyter:
container_name: qs-jupyter
image: icr.io/quantum-public/quantum-serverless-notebook:${VERSION:-0.1.1}-py39
image: icr.io/quantum-public/quantum-serverless-notebook:${VERSION:-0.1.2}-py39
profiles: ["jupyter", "full"]
ports:
- 8888:8888
Expand All @@ -13,7 +13,7 @@ services:
- safe-tier
ray-head:
container_name: ray-head
image: icr.io/quantum-public/quantum-serverless-ray-node:${VERSION:-0.1.1}-py39
image: icr.io/quantum-public/quantum-serverless-ray-node:${VERSION:-0.1.2}-py39
entrypoint: [
"ray", "start", "--head", "--port=6379",
"--dashboard-host=0.0.0.0", "--block"
Expand Down Expand Up @@ -64,7 +64,7 @@ services:
always
gateway:
container_name: gateway
image: icr.io/quantum-public/quantum-serverless-gateway:${VERSION:-0.1.1}
image: icr.io/quantum-public/quantum-serverless-gateway:${VERSION:-0.1.2}
command: gunicorn main.wsgi:application --bind 0.0.0.0:8000 --workers=4
ports:
- 8000:8000
Expand Down Expand Up @@ -95,7 +95,7 @@ services:
- postgres
gateway_scheduler:
container_name: gateway_scheduler
image: icr.io/quantum-public/quantum-serverless-gateway:${VERSION:-0.1.0}
image: icr.io/quantum-public/quantum-serverless-gateway:${VERSION:-0.1.2}
entrypoint: "./scripts/scheduler.sh"
environment:
- DEBUG=0
Expand All @@ -115,7 +115,7 @@ services:
- postgres
repository-server:
container_name: repository-server
image: icr.io/quantum-public/quantum-repository-server:${VERSION:-0.1.0}
image: icr.io/quantum-public/quantum-repository-server:${VERSION:-0.1.2}
profiles: [ "full" ]
command: gunicorn main.wsgi:application --bind 0.0.0.0:8060 --workers=4
ports:
Expand Down
4 changes: 2 additions & 2 deletions docs/deployment/local.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ Available version can be found in `GitHub releases`_ page.

.. _GitHub releases: https://github.com/Qiskit-Extensions/quantum-serverless/releases

For example, if you want to install version `0.1.1` with all services,
For example, if you want to install version `0.1.2` with all services,
the command would be:

.. code-block::

$ VERSION=0.1.1 docker-compose --profile full up
$ VERSION=0.1.2 docker-compose --profile full up
12 changes: 5 additions & 7 deletions infrastructure/helm/quantumserverless/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ description: Quantum-Serverless helm chart that contains different dependencies.

type: application

version: 0.1.1
appVersion: "0.1.1"
version: 0.1.2
appVersion: "0.1.2"

dependencies:
- name: gateway
condition: gatewayEnable
version: 0.1.1
version: 0.1.2
- name: jupyter
condition: jupyterEnable
version: 0.1.1
version: 0.1.2
- name: nginx-ingress-controller
condition: nginxIngressControllerEnable
version: 9.7.2
Expand All @@ -40,7 +40,7 @@ dependencies:
repository: https://charts.bitnami.com/bitnami
- name: repository
condition: repositoryEnable
version: 0.1.1
version: 0.1.2
- name: kube-prometheus-stack
condition: prometheusEnable
version: 45.31.1
Expand All @@ -53,5 +53,3 @@ dependencies:
condition: promtailEnable
version: 6.11.2
repository: https://grafana.github.io/helm-charts


Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.1
version: 0.1.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.16.0"
appVersion: "0.1.2"
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.1
version: 0.1.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.1.0"
appVersion: "0.1.2"
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.1
version: 0.1.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.1.0"
appVersion: "0.1.2"
10 changes: 5 additions & 5 deletions infrastructure/helm/quantumserverless/values-ibm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ gateway:

image:
pullPolicy: IfNotPresent
tag: "0.1.0"
tag: "0.1.2"
application:
siteHost: "http://gateway:8000"
rayHost: "http://kuberay-head-svc:8265"
Expand All @@ -61,7 +61,7 @@ gateway:
type: ClusterIP
port: 8000
ray:
nodeImage: "icr.io/quantum-public/quantum-serverless-ray-node:0.1.0-py39"
nodeImage: "icr.io/quantum-public/quantum-serverless-ray-node:0.1.2-py39"
kubeRayHost: "http://kuberay-apiserver-service:8888"
limits:
maxJobsPerUser: 2
Expand Down Expand Up @@ -98,7 +98,7 @@ jupyter:

image:
repository: "icr.io/quantum-public/quantum-serverless-notebook"
tag: "0.1.0-py39"
tag: "0.1.2-py39"
pullPolicy: IfNotPresent
container:
port: 8888
Expand All @@ -116,7 +116,7 @@ ray-cluster:

image:
repository: "icr.io/quantum-public/quantum-serverless-ray-node"
tag: "0.1.0-py39"
tag: "0.1.2-py39"
pullPolicy: IfNotPresent
head:
rayStartParams:
Expand Down Expand Up @@ -320,7 +320,7 @@ repository:

image:
pullPolicy: IfNotPresent
tag: "0.1.0"
tag: "0.1.2"
application:
superuser:
username: "admin"
Expand Down
10 changes: 5 additions & 5 deletions infrastructure/helm/quantumserverless/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ gateway:

image:
pullPolicy: IfNotPresent
tag: "0.1.1"
tag: "0.1.2"
application:
siteHost: "http://gateway:8000"
rayHost: "http://kuberay-head-svc:8265"
Expand All @@ -54,7 +54,7 @@ gateway:
type: ClusterIP
port: 8000
ray:
nodeImage: "icr.io/quantum-public/quantum-serverless-ray-node:0.1.0-py39"
nodeImage: "icr.io/quantum-public/quantum-serverless-ray-node:0.1.2-py39"
kubeRayHost: "http://kuberay-apiserver-service:8888"
limits:
maxJobsPerUser: 2
Expand Down Expand Up @@ -91,7 +91,7 @@ jupyter:

image:
repository: "icr.io/quantum-public/quantum-serverless-notebook"
tag: "0.1.1-py39"
tag: "0.1.2-py39"
pullPolicy: IfNotPresent
container:
port: 8888
Expand All @@ -109,7 +109,7 @@ ray-cluster:

image:
repository: "icr.io/quantum-public/quantum-serverless-ray-node"
tag: "0.1.1-py39"
tag: "0.1.2-py39"
pullPolicy: IfNotPresent
head:
rayStartParams:
Expand Down Expand Up @@ -312,7 +312,7 @@ repository:
fullnameOverride: "repository"
image:
pullPolicy: IfNotPresent
tag: "0.1.0"
tag: "0.1.2"
application:
superuser:
username: "admin"
Expand Down