Skip to content
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 dev-tools/kind/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ Load a locally built Docker image into KinD cluster nodes.
./kind-cluster.sh load

# Load specific image
./kind-cluster.sh load --image mindsignited/structures-server:3.5.3
./kind-cluster.sh load --image mindsignited/structures-server:3.5.4

# Load into specific cluster
./kind-cluster.sh load --name test-cluster
Expand Down
4 changes: 2 additions & 2 deletions dev-tools/kind/config/structures-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ image:
# Repository matches bootBuildImage output
repository: mindsignited/structures-server
# Tag from gradle.properties version (structuresVersion=3.5.3-SNAPSHOT)
tag: 3.5.3
tag: 3.5.4
# Never pull - use images loaded into KinD cluster
pullPolicy: Never
sha: ""
Expand All @@ -46,7 +46,7 @@ migration:
activeDeadlineSeconds: 300
image:
repository: mindsignited/structures-migration
tag: 3.5.3
tag: 3.5.4
# Never pull - use images loaded into KinD cluster
pullPolicy: Never
sha: ""
Expand Down
2 changes: 1 addition & 1 deletion dev-tools/kind/kind-cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ Examples:
$(basename "$0") load

# Load specific image
$(basename "$0") load --image mindsignited/structures-server:3.5.3
$(basename "$0") load --image mindsignited/structures-server:3.5.4

# Load into specific cluster
$(basename "$0") load --name test-cluster
Expand Down
4 changes: 2 additions & 2 deletions docker-compose/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
structures-migration:
container_name: structures-migration
pull_policy: always
image: mindsignited/structures-migration:${structuresVersion:-3.5.3}
image: mindsignited/structures-migration:${structuresVersion:-3.5.4}
depends_on:
structures-elasticsearch:
condition: service_healthy
Expand All @@ -17,7 +17,7 @@ services:
structures-server:
container_name: structures-server
pull_policy: always
image: mindsignited/structures-server:${structuresVersion:-3.5.3}
image: mindsignited/structures-server:${structuresVersion:-3.5.4}
depends_on:
structures-elasticsearch:
condition: service_healthy
Expand Down
2 changes: 1 addition & 1 deletion docs/kubernetes/KIND_TOOLING.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ Load a locally built Docker image into KinD cluster nodes.
./kind-cluster.sh load

# Load specific image
./kind-cluster.sh load --image mindsignited/structures-server:3.5.3
./kind-cluster.sh load --image mindsignited/structures-server:3.5.4

# Load into specific cluster
./kind-cluster.sh load --name test-cluster
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
structuresVersion=3.5.3
structuresVersion=3.5.4

allureVersion=2.32.0
antlrVersion=4.13.1
Expand Down
2 changes: 1 addition & 1 deletion helm/structures/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ version: 1.0.0
# 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: "3.5.3"
appVersion: "3.5.4"
4 changes: 2 additions & 2 deletions helm/structures/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ nameOverride: ""
image:
repository: mindsignited/structures-server
pullPolicy: Always
tag: "3.5.3"
tag: "3.5.4"
sha: ""

# Migration configuration
Expand All @@ -15,7 +15,7 @@ migration:
activeDeadlineSeconds: 300
image:
repository: mindsignited/structures-migration
tag: "3.5.3"
tag: "3.5.4"
pullPolicy: Always
sha: ""

Expand Down
2 changes: 1 addition & 1 deletion structures-frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Structures</title>
</head>
Expand Down
2 changes: 1 addition & 1 deletion structures-frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "structures-frontend-next",
"version": "3.5.3",
"version": "3.5.4",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
5 changes: 5 additions & 0 deletions structures-frontend/public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion structures-frontend/public/vite.svg

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ WITH (SCRIPT == 'ctx._source.applicationId = ctx._source.namespace;
ctx._source.remove("metadata");
ctx._source.remove("traits");
ctx._source.remove("primaryKey");
ctx._source.remove("itemDefinition");',
ctx._source.remove("itemDefinition");
ctx._source.remove("multiTenantSelectionEnabled");
ctx._source.remove("optimisticLockingEnabled");',
SKIP_IF_NO_SOURCE == TRUE,
WAIT == TRUE);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

services:
structures-node1:
image: docker.io/mindsignited/structures-server:3.5.3
image: docker.io/mindsignited/structures-server:3.5.4
healthcheck:
test: ["CMD", "/workspace/health-check"]
interval: 10s
Expand Down Expand Up @@ -90,7 +90,7 @@ services:
memory: 4G

structures-node2:
image: docker.io/mindsignited/structures-server:3.5.3
image: docker.io/mindsignited/structures-server:3.5.4
healthcheck:
test: ["CMD", "/workspace/health-check"]
interval: 10s
Expand Down Expand Up @@ -178,7 +178,7 @@ services:
memory: 4G

structures-node3:
image: docker.io/mindsignited/structures-server:3.5.3
image: docker.io/mindsignited/structures-server:3.5.4
healthcheck:
test: ["CMD", "/workspace/health-check"]
interval: 10s
Expand Down
Loading