Skip to content

Commit

Permalink
test(smoketest): use quay.io images for all sample apps
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores committed Mar 6, 2025
1 parent b0c7c33 commit d708e3d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions compose/sample_apps/opensearch.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
opensearch-node:
image: quay.io/openstack.kolla/opensearch:2024.1-rocky-9
image: quay.io/choral-k8s/opensearch:2.19.1
hostname: opensearch-node
environment:
discovery.type: single-node
Expand All @@ -23,7 +23,7 @@ services:
# - "9600" # Performance Analyzer

opensearch-dashboards:
image: quay.io/openstack.kolla/opensearch-dashboards:2024.1-rocky-9
image: quay.io/choral-k8s/opensearch-dashboards:2.19.1
hostname: opensearch-dashboards
ports:
- 5601:5601
Expand Down
8 changes: 4 additions & 4 deletions compose/sample_apps/quarkus-petclinic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ services:
timeout: 5s

quarkus-petclinic-db:
image: "postgres:14"
image: "quay.io/sclorg/postgresql-15-c9s"
deploy:
resources:
limits:
cpus: "1"
memory: 128m
environment:
- POSTGRES_USER=developer
- POSTGRES_PASSWORD=developer
- POSTGRES_DB=petclinic
- POSTGRESQL_USER=developer
- POSTGRESQL_PASSWORD=developer
- POSTGRESQL_DATABASE=petclinic
healthcheck:
test: ["CMD-SHELL", "pg_isready --dbname $$POSTGRES_DB --username $$POSTGRES_USER"]
interval: 5s
Expand Down

0 comments on commit d708e3d

Please sign in to comment.