Skip to content

Commit

Permalink
fix: use cas develop image by default (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
smrz2001 authored Jul 9, 2024
1 parent 88f2507 commit 7c033b1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion operator/src/network/cas.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ impl CasConfig {
impl Default for CasConfig {
fn default() -> Self {
Self {
image: "ceramicnetwork/ceramic-anchor-service:latest".to_owned(),
image: "ceramicnetwork/ceramic-anchor-service:develop".to_owned(),
image_pull_policy: "Always".to_owned(),
cas_resource_limits: ResourceLimitsConfig {
cpu: Some(Quantity("250m".to_owned())),
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 @@ -2852,7 +2852,7 @@ mod tests {
"value": "http://localstack:4566/000000000000/cas-anchor-dev-"
}
],
- "image": "ceramicnetwork/ceramic-anchor-service:latest",
- "image": "ceramicnetwork/ceramic-anchor-service:develop",
- "imagePullPolicy": "Always",
+ "image": "cas/cas:dev",
+ "imagePullPolicy": "Never",
Expand All @@ -2863,7 +2863,7 @@ mod tests {
"value": "1000"
}
],
- "image": "ceramicnetwork/ceramic-anchor-service:latest",
- "image": "ceramicnetwork/ceramic-anchor-service:develop",
- "imagePullPolicy": "Always",
+ "image": "cas/cas:dev",
+ "imagePullPolicy": "Never",
Expand All @@ -2874,7 +2874,7 @@ mod tests {
"value": "dev"
}
],
- "image": "ceramicnetwork/ceramic-anchor-service:latest",
- "image": "ceramicnetwork/ceramic-anchor-service:develop",
- "imagePullPolicy": "Always",
+ "image": "cas/cas:dev",
+ "imagePullPolicy": "Never",
Expand Down
6 changes: 3 additions & 3 deletions operator/src/network/testdata/default_stubs/cas_stateful_set
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ Request {
"value": "http://localstack:4566/000000000000/cas-anchor-dev-"
}
],
"image": "ceramicnetwork/ceramic-anchor-service:latest",
"image": "ceramicnetwork/ceramic-anchor-service:develop",
"imagePullPolicy": "Always",
"name": "cas-api",
"ports": [
Expand Down Expand Up @@ -280,7 +280,7 @@ Request {
"value": "1000"
}
],
"image": "ceramicnetwork/ceramic-anchor-service:latest",
"image": "ceramicnetwork/ceramic-anchor-service:develop",
"imagePullPolicy": "Always",
"name": "cas-worker",
"resources": {
Expand Down Expand Up @@ -450,7 +450,7 @@ Request {
"value": "dev"
}
],
"image": "ceramicnetwork/ceramic-anchor-service:latest",
"image": "ceramicnetwork/ceramic-anchor-service:develop",
"imagePullPolicy": "Always",
"name": "cas-migrations"
}
Expand Down

0 comments on commit 7c033b1

Please sign in to comment.