Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use composedb develop image by default #202

Merged
merged 2 commits into from
Jul 12, 2024
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
10 changes: 5 additions & 5 deletions local-scripts/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

images = [
'amazon/aws-cli',
'ceramicnetwork/ceramic-anchor-service:latest',
'ceramicnetwork/composedb:latest',
'gresau/localstack-persist:2',
'public.ecr.aws/r5b3e0r5/3box/cas-contract',
'public.ecr.aws/r5b3e0r5/3box/ceramic-one',
'ceramicnetwork/ceramic-anchor-service:develop',
'ceramicnetwork/composedb:develop',
'gresau/localstack-persist:3',
'public.ecr.aws/r5b3e0r5/3box/cas-contract:latest',
'public.ecr.aws/r5b3e0r5/3box/ceramic-one:latest',
'public.ecr.aws/r5b3e0r5/3box/go-cas:latest',
'trufflesuite/ganache'
]
Expand Down
2 changes: 1 addition & 1 deletion operator/src/network/ceramic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ impl Default for CeramicConfig {
Self {
weight: 1,
init_config_map: INIT_CONFIG_MAP_NAME.to_owned(),
image: "ceramicnetwork/composedb:latest".to_owned(),
image: "ceramicnetwork/composedb:develop".to_owned(),
image_pull_policy: "Always".to_owned(),
init_image_name: "ceramicnetwork/composedb-cli:latest".to_owned(),
ipfs: IpfsConfig::default(),
Expand Down
6 changes: 3 additions & 3 deletions operator/src/network/controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3492,7 +3492,7 @@ mod tests {
}
}
],
- "image": "ceramicnetwork/composedb:latest",
- "image": "ceramicnetwork/composedb:develop",
- "imagePullPolicy": "Always",
+ "image": "ceramic:foo",
+ "imagePullPolicy": "IfNotPresent",
Expand Down Expand Up @@ -3573,7 +3573,7 @@ mod tests {
+ "value": "true"
}
],
"image": "ceramicnetwork/composedb:latest",
"image": "ceramicnetwork/composedb:develop",
"#]]);
stub.cas_stateful_set.patch(expect![[r#"
--- original
Expand Down Expand Up @@ -3913,7 +3913,7 @@ mod tests {
+ "value": "SOME_ENV_VALUE"
}
],
"image": "ceramicnetwork/composedb:latest",
"image": "ceramicnetwork/composedb:develop",
@@ -374,6 +378,10 @@
"name": "ceramic-postgres-auth"
}
Expand Down
2 changes: 1 addition & 1 deletion operator/src/network/testdata/ceramic_go_ss_1
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Request {
}
}
],
"image": "ceramicnetwork/composedb:latest",
"image": "ceramicnetwork/composedb:develop",
"imagePullPolicy": "Always",
"livenessProbe": {
"httpGet": {
Expand Down
2 changes: 1 addition & 1 deletion operator/src/network/testdata/ceramic_ss_1
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Request {
}
}
],
"image": "ceramicnetwork/composedb:latest",
"image": "ceramicnetwork/composedb:develop",
"imagePullPolicy": "Always",
"livenessProbe": {
"httpGet": {
Expand Down
2 changes: 1 addition & 1 deletion operator/src/network/testdata/ceramic_ss_weighted_0
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Request {
}
}
],
"image": "ceramicnetwork/composedb:latest",
"image": "ceramicnetwork/composedb:develop",
"imagePullPolicy": "Always",
"livenessProbe": {
"httpGet": {
Expand Down
2 changes: 1 addition & 1 deletion operator/src/network/testdata/ceramic_ss_weighted_1
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Request {
}
}
],
"image": "ceramicnetwork/composedb:latest",
"image": "ceramicnetwork/composedb:develop",
"imagePullPolicy": "Always",
"livenessProbe": {
"httpGet": {
Expand Down
2 changes: 1 addition & 1 deletion operator/src/network/testdata/ceramic_ss_weighted_2
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Request {
}
}
],
"image": "ceramicnetwork/composedb:latest",
"image": "ceramicnetwork/composedb:develop",
"imagePullPolicy": "Always",
"livenessProbe": {
"httpGet": {
Expand Down
2 changes: 1 addition & 1 deletion operator/src/network/testdata/ceramic_ss_weighted_3
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Request {
}
}
],
"image": "ceramicnetwork/composedb:latest",
"image": "ceramicnetwork/composedb:develop",
"imagePullPolicy": "Always",
"livenessProbe": {
"httpGet": {
Expand Down
2 changes: 1 addition & 1 deletion operator/src/network/testdata/ceramic_ss_weighted_4
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Request {
}
}
],
"image": "ceramicnetwork/composedb:latest",
"image": "ceramicnetwork/composedb:develop",
"imagePullPolicy": "Always",
"livenessProbe": {
"httpGet": {
Expand Down
2 changes: 1 addition & 1 deletion operator/src/network/testdata/ceramic_ss_weighted_5
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Request {
}
}
],
"image": "ceramicnetwork/composedb:latest",
"image": "ceramicnetwork/composedb:develop",
"imagePullPolicy": "Always",
"livenessProbe": {
"httpGet": {
Expand Down
2 changes: 1 addition & 1 deletion operator/src/network/testdata/ceramic_ss_weighted_6
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Request {
}
}
],
"image": "ceramicnetwork/composedb:latest",
"image": "ceramicnetwork/composedb:develop",
"imagePullPolicy": "Always",
"livenessProbe": {
"httpGet": {
Expand Down
2 changes: 1 addition & 1 deletion operator/src/network/testdata/ceramic_ss_weighted_7
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Request {
}
}
],
"image": "ceramicnetwork/composedb:latest",
"image": "ceramicnetwork/composedb:develop",
"imagePullPolicy": "Always",
"livenessProbe": {
"httpGet": {
Expand Down
2 changes: 1 addition & 1 deletion operator/src/network/testdata/ceramic_ss_weighted_8
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Request {
}
}
],
"image": "ceramicnetwork/composedb:latest",
"image": "ceramicnetwork/composedb:develop",
"imagePullPolicy": "Always",
"livenessProbe": {
"httpGet": {
Expand Down
2 changes: 1 addition & 1 deletion operator/src/network/testdata/ceramic_ss_weighted_9
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Request {
}
}
],
"image": "ceramicnetwork/composedb:latest",
"image": "ceramicnetwork/composedb:develop",
"imagePullPolicy": "Always",
"livenessProbe": {
"httpGet": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Request {
}
}
],
"image": "ceramicnetwork/composedb:latest",
"image": "ceramicnetwork/composedb:develop",
"imagePullPolicy": "Always",
"livenessProbe": {
"httpGet": {
Expand Down
Loading