Skip to content

Commit

Permalink
fix: pin localstack image that doesn't try to delete its store
Browse files Browse the repository at this point in the history
  • Loading branch information
smrz2001 committed Nov 7, 2023
1 parent eb99eff commit ba8ef8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hermetic/src/cli/tester.rs
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ fn localstack_stateful_set(namespace: &str) -> StatefulSet {
spec: Some(PodSpec {
containers: vec![Container {
name: LOCALSTACK_SERVICE_NAME.to_owned(),
image: Some("localstack/localstack".to_owned()),
image: Some("localstack/localstack@sha256:539f4145f9b3610d11b292457e657b7fd6ad0f7c93e206620056424faacf68b5".to_owned()),
resources: Some(ResourceRequirements {
limits: Some(BTreeMap::from_iter([
("cpu".to_owned(), Quantity("500m".to_owned())),
Expand Down
2 changes: 1 addition & 1 deletion suite/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3.8"
services:
localstack:
container_name: "${LOCALSTACK_DOCKER_NAME-localstack_main}"
image: localstack/localstack
image: localstack/localstack@sha256:539f4145f9b3610d11b292457e657b7fd6ad0f7c93e206620056424faacf68b5
ports:
- "127.0.0.1:4566:4566" # LocalStack Gateway
- "127.0.0.1:4510-4559:4510-4559" # external services port range
Expand Down

0 comments on commit ba8ef8f

Please sign in to comment.