Skip to content

Commit

Permalink
fix: Use consistent DynamoDB local image version (#698)
Browse files Browse the repository at this point in the history
  • Loading branch information
niallthomson authored Dec 13, 2024
1 parent 5b13828 commit 8bda346
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deploy/kubernetes/charts/carts/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ dynamodb:
image:
repository: amazon/dynamodb-local
pullPolicy: IfNotPresent
tag: "1.13.1"
tag: "1.20.0"

service:
type: ClusterIP
Expand Down
2 changes: 1 addition & 1 deletion src/cart/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ services:
condition: service_healthy

carts-db:
image: amazon/dynamodb-local:1.13.1
image: amazon/dynamodb-local:1.20.0
hostname: carts-db
restart: always
cap_drop:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class DynamoDBCartServiceTests extends AbstractServiceTests {

@Container
public static GenericContainer dynamodbContainer =
new GenericContainer<>("amazon/dynamodb-local:1.13.3")
new GenericContainer<>("amazon/dynamodb-local:1.20.0")
.withExposedPorts(DYNAMODB_PORT);

@Override
Expand Down

0 comments on commit 8bda346

Please sign in to comment.