Skip to content

Commit

Permalink
Revert PR 5664 - Use image digests for docker-compose files (#5668)
Browse files Browse the repository at this point in the history
Renovate bot does not work well with the change introduced in #5664.
Reverting. We don't need that because these docker-compose files are for
integration testing, they do not affect repeatable builds.

Also resolve #5670.

---------

Signed-off-by: Mend Renovate <[email protected]>
Signed-off-by: Yuri Shkuro <[email protected]>
Co-authored-by: Yuri Shkuro <[email protected]>
Co-authored-by: Yuri Shkuro <[email protected]>
  • Loading branch information
3 people authored Jun 20, 2024
1 parent ce3b4f0 commit 3057242
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docker-compose/cassandra/v3/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.8'

services:
cassandra:
image: index.docker.io/library/cassandra@sha256:b5cde1e2b16451fa511e4a1cda4177853903879f9bab0b8f27445451a07f7ef7 # 3.11
image: cassandra:3.11
ports:
- "9042:9042"
- "9160:9160"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/cassandra/v4/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.8'

services:
cassandra:
image: index.docker.io/library/cassandra@sha256:52510388c3c29080a9cb6056e49939905a8e36eb9ae191fda32e574b5c591b70 # 4.1
image: cassandra:4.1
ports:
- "9042:9042"
- "9160:9160"
Expand Down
4 changes: 2 additions & 2 deletions docker-compose/elasticsearch/v7/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.8'

services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch@sha256:a0e01a200a316bac8d661e1acae368fd40c9c618847205a12f443c09c36e6eb3 # 7.17.22
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.22
environment:
- discovery.type=single-node
- http.host=0.0.0.0
Expand All @@ -11,4 +11,4 @@ services:
- xpack.security.http.ssl.enabled=false # Disable HTTPS
- xpack.monitoring.enabled=false # Disable monitoring features
ports:
- "9200:9200"
- "9200:9200"
2 changes: 1 addition & 1 deletion docker-compose/elasticsearch/v8/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.8'

services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch@sha256:03ee4816f20c429ba83d000a0e202d8beaee5041a6db19bf5c0f892dc96ac236 # 8.14.1
image: docker.elastic.co/elasticsearch/elasticsearch:8.14.1
environment:
- discovery.type=single-node
- http.host=0.0.0.0
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/kafka-integration-test/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.8'

services:
kafka:
image: index.docker.io/bitnami/kafka@sha256:9abe5ce1ce14e0ff3041075c5183202fb5c47ea28ad270bfcb067f7ade304d8b # 3.7.0
image: bitnami/kafka:3.7.0
ports:
- "9092:9092"
environment:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/monitor/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
microsim:
networks:
- backend
image: index.docker.io/yurishkuro/microsim@sha256:8cdacca2912d0f5fef3350be4bf7472215c3ec7e50ddfbc9cf11fbf59599aae5 # 0.2.0
image: yurishkuro/microsim:0.2.0
command: "-j http://otel_collector:14278/api/traces -d 24h -s 500ms"
depends_on:
- otel_collector
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/opensearch/v1/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.8'

services:
opensearch:
image: index.docker.io/opensearchproject/opensearch@sha256:4431caf5c156452bd17c15c534eae45f2e315272cdec5dcf08315dc644a22a38 # 1.3.17
image: opensearchproject/opensearch:1.3.17
environment:
- discovery.type=single-node
- plugins.security.disabled=true
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/opensearch/v2/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.8'

services:
opensearch:
image: index.docker.io/opensearchproject/opensearch@sha256:466a49f379bb8889af29d615475e69b7b990898c6987d28470cd7105df9046ff # 2.14.0
image: opensearchproject/opensearch:2.14.0
environment:
- discovery.type=single-node
- plugins.security.disabled=true
Expand Down
1 change: 0 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"docker-compose/opensearch/v2/docker-compose.yml"
],
"matchUpdateTypes": ["major", "patch"],
"versioning": "docker",
"enabled": false
},
{
Expand Down

0 comments on commit 3057242

Please sign in to comment.