Skip to content

Commit

Permalink
Ensure containers are not cached and makes 5.0 the default
Browse files Browse the repository at this point in the history
  • Loading branch information
digiserg committed Sep 19, 2024
1 parent 672ee45 commit 7ba5c87
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
9 changes: 9 additions & 0 deletions data/localclusters/localclusters.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[
{
"ports": { "axonops": 59526, "cassandra": 59527 },
"axonops": true,
"folder": "3c457",
"cassandraVersion": "5.0",
"nodes": 3
}
]
5 changes: 5 additions & 0 deletions renderer/js/default_docker_compose_yml.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ services:
elasticsearch:
condition: service_healthy
image: registry.axonops.com/axonops-public/axonops-docker/axon-server:latest
pull_policy: always
environment:
- ELASTIC_HOSTS=http://elasticsearch:9200
healthcheck:
Expand All @@ -50,6 +51,7 @@ services:
axon-server:
condition: service_healthy
image: registry.axonops.com/axonops-public/axonops-docker/axon-dash:latest
pull_policy: always
command: >
/bin/sh -c "sed -i 's|private_endpoints.*|private_endpoints: http://axon-server:8080|' /etc/axonops/axon-dash.yml && /usr/share/axonops/axon-dash --appimage-extract-and-run"
ports:
Expand All @@ -63,6 +65,7 @@ services:
cassandra-0:
image: registry.axonops.com/axonops-public/axonops-docker/cassandra:{version}
pull_policy: always
hostname: cassandra-0
restart: unless-stopped
volumes:
Expand Down Expand Up @@ -96,6 +99,7 @@ services:
cassandra-0:
condition: service_healthy
image: registry.axonops.com/axonops-public/axonops-docker/cassandra:{version}
pull_policy: always
hostname: cassandra-1
restart: unless-stopped
volumes:
Expand Down Expand Up @@ -129,6 +133,7 @@ services:
cassandra-1:
condition: service_healthy
image: registry.axonops.com/axonops-public/axonops-docker/cassandra:{version}
pull_policy: always
hostname: cassandra-2
restart: unless-stopped
volumes:
Expand Down
6 changes: 3 additions & 3 deletions renderer/views/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ <h5 class="modal-title">
</div>
<div class="form-outline form-white" style="margin-bottom: 25px; z-index: 2;">
<ion-icon name="arrow-down" class="trailing" style="font-size: 190%;"></ion-icon>
<input type="text" class="form-control form-icon-trailing form-control-lg" style="background-color: inherit; cursor: pointer;" id="apacheCassandraVersion" value="4.1" readonly>
<input type="text" class="form-control form-icon-trailing form-control-lg" style="background-color: inherit; cursor: pointer;" id="apacheCassandraVersion" value="5.0" readonly>
<label class="form-label">
Apache Cassandra® <span mulang="version" capitalize></span>
</label>
Expand All @@ -889,9 +889,9 @@ <h5 class="modal-title">
<div class="dropdown" for-select="apacheCassandraVersion">
<button class="btn dropdown-toggle" type="button" data-mdb-toggle="dropdown"></button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#" value="5.0">5.0 (<span mulang="default" capitalize></span>)</a></li>
<li><a class="dropdown-item" href="#" value="4.1">4.1</a></li>
<li><a class="dropdown-item" href="#" value="4.0">4.0</a></li>
<li><a class="dropdown-item" href="#" value="4.1">4.1 (<span mulang="default" capitalize></span>)</a></li>
<li><a class="dropdown-item" href="#" value="5.0">5.0</a></li>
</ul>
</div>
<div class="form-outline form-white" style="margin-bottom: 25px;">
Expand Down

0 comments on commit 7ba5c87

Please sign in to comment.