Skip to content

Commit

Permalink
tembo-stacks: bump controller to 0.49.10 (#949)
Browse files Browse the repository at this point in the history
  • Loading branch information
vrmiguel authored Sep 10, 2024
1 parent 9742f60 commit 17e139c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tembo-stacks/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tembo-stacks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ serde_json = "1.0.114"
serde_yaml = "0.9.21"
strum = "0.26.2"
strum_macros = "0.26.2"
tembo-controller = { package = "controller", version = "0.49.8" }
tembo-controller = { package = "controller", version = "0.49.10" }
tracing = "0.1"
utoipa = { version = "3", features = ["actix_extras", "chrono"] }

Expand Down
2 changes: 0 additions & 2 deletions tembo-stacks/src/stacks/specs/machine_learning.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ description: A Postgres instance equipped with machine learning extensions and o
repository: "quay.io/tembo"
organization: tembo
images:
# currently an issue with plpython2u and plpythonu in image build for pg14
14: "ml-cnpg:14-a0a5ab5"
15: "ml-cnpg:15-5120dd1"
16: "ml-cnpg:16-5120dd1"
stack_version: 0.3.0
Expand Down
2 changes: 1 addition & 1 deletion tembo-stacks/src/stacks/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ impl Stack {
image: format!(
"{repo}/{image}",
repo = self.repository,
image = self.images.pg16.clone()
image = self.images.pg16.as_ref().unwrap()
),
extensions: self.extensions.unwrap_or_default(),
trunk_installs: self.trunk_installs.unwrap_or_default(),
Expand Down

0 comments on commit 17e139c

Please sign in to comment.