Skip to content

Commit

Permalink
Update all container references to current Leap 15.5
Browse files Browse the repository at this point in the history
After we already switched bases for building and CI to a more recent
version long ago we now switch all remaining references before Leap 15.4
goes EOL.

Related progress issue: https://progress.opensuse.org/issues/130597
  • Loading branch information
okurz authored and perlpunk committed Oct 12, 2023
1 parent c52fd98 commit 8826842
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion container/helm/charts/webui/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This is a YAML-formatted file.

image:
name: registry.opensuse.org/devel/openqa/containers15.4/openqa_webui
name: registry.opensuse.org/devel/openqa/containers15.5/openqa_webui
pullPolicy: Always
tag: "latest"

Expand Down
2 changes: 1 addition & 1 deletion container/helm/charts/worker/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This is a YAML-formatted file.

image:
name: registry.opensuse.org/devel/openqa/containers15.4/openqa_worker
name: registry.opensuse.org/devel/openqa/containers15.5/openqa_worker
pullPolicy: Always
tag: "latest"

Expand Down
10 changes: 5 additions & 5 deletions docs/Installing.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ container engine:

[source,sh]
----
podman run -p 1080:80 -p 1443:443 --rm -it registry.opensuse.org/devel/openqa/containers15.4/openqa_webui:latest
podman run -p 1080:80 -p 1443:443 --rm -it registry.opensuse.org/devel/openqa/containers15.5/openqa_webui:latest
----

The worker container can be pulled and started with:

[source,sh]
----
podman run --rm -it registry.opensuse.org/devel/openqa/containers15.4/openqa_worker:latest
podman run --rm -it registry.opensuse.org/devel/openqa/containers15.5/openqa_worker:latest
----

=== Custom configuration for containers
Expand All @@ -81,7 +81,7 @@ podman run -p 1080:80 -p 1443:443 \
-v ./container/webui/test-key.pem:/etc/apache2/ssl.key/server.key:z \
-v ./container/webui/test-cert.pem:/etc/apache2/ssl.crt/ca.crt:z \
-v ./container/webui/conf/openqa.ini:/data/conf/openqa.ini:z \
--rm -it registry.opensuse.org/devel/openqa/containers15.4/openqa_webui:latest
--rm -it registry.opensuse.org/devel/openqa/containers15.5/openqa_webui:latest
----


Expand All @@ -93,7 +93,7 @@ supply `workers.ini` and `client.conf`:
podman run \
-v ./container/worker/conf/workers.ini:/data/conf/workers.ini:z \
-v ./container/worker/conf/client.conf:/data/conf/client.conf:z \
--rm -it registry.opensuse.org/devel/openqa/containers15.4/openqa_worker:latest
--rm -it registry.opensuse.org/devel/openqa/containers15.5/openqa_worker:latest
----

This examples assume the working directory is an openQA checkout. To avoid doing
Expand All @@ -113,7 +113,7 @@ commands mentioned there can also be invoked within a container, e.g.:
[source,sh]
----
podman run \
--rm -it registry.opensuse.org/devel/openqa/containers15.4/openqa_webui:latest \
--rm -it registry.opensuse.org/devel/openqa/containers15.5/openqa_webui:latest \
openqa-cli --help
----

Expand Down

0 comments on commit 8826842

Please sign in to comment.