Skip to content

Commit 634589b

Browse files
committed
add changelog entry
1 parent ed6f34a commit 634589b

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

rust/stackable-cockpit/src/helm.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::fmt::Display;
33
use serde::{Deserialize, Serialize};
44
use snafu::{ResultExt, Snafu};
55
use tokio::task::block_in_place;
6-
use tracing::{debug, error, info, instrument, Span};
6+
use tracing::{Span, debug, error, info, instrument};
77
use tracing_indicatif::span_ext::IndicatifSpanExt as _;
88
use url::Url;
99

@@ -200,10 +200,7 @@ pub fn install_release_from_repo_or_registry(
200200
// but that requires a larger refactoring
201201
block_in_place(|| {
202202
debug!("Install Helm release from repo");
203-
Span::current().pb_set_message(
204-
format!("Installing {chart_name} Helm chart")
205-
.as_str(),
206-
);
203+
Span::current().pb_set_message(format!("Installing {chart_name} Helm chart").as_str());
207204

208205
if check_release_exists(release_name, namespace)? {
209206
let release = get_release(release_name, namespace)?.ok_or(Error::InstallRelease {

rust/stackable-cockpit/src/platform/manifests.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,9 @@ pub trait InstallManifestsExt {
9393
debug!(helm_file, "Installing manifest from Helm chart");
9494

9595
// Read Helm chart YAML and apply templating
96-
let helm_file =
97-
helm_file.into_path_or_url().context(ParsePathOrUrlSnafu {
98-
path_or_url: helm_file.clone(),
99-
})?;
96+
let helm_file = helm_file.into_path_or_url().context(ParsePathOrUrlSnafu {
97+
path_or_url: helm_file.clone(),
98+
})?;
10099

101100
let helm_chart: helm::Chart = transfer_client
102101
.get(&helm_file, &Template::new(&parameters).then(Yaml::new()))

rust/stackable-cockpit/src/utils/k8s/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use serde::Deserialize;
1414
use snafu::{OptionExt, ResultExt, Snafu};
1515
use stackable_operator::{commons::listener::Listener, kvp::Labels};
1616
use tokio::sync::RwLock;
17-
use tracing::{info, instrument, Span};
17+
use tracing::{Span, info, instrument};
1818
use tracing_indicatif::span_ext::IndicatifSpanExt as _;
1919

2020
#[cfg(doc)]

rust/stackablectl/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.
88

99
- Pass the stack/demo namespace as a templating variable `NAMESPACE` to manifests.
1010
This should unblock demos to run in all namespaces, as they can template the namespace e.g. for the FQDN of services ([#355]).
11+
- Add progress reporting ([#376]).
1112

1213
### Changed
1314

@@ -20,6 +21,7 @@ All notable changes to this project will be documented in this file.
2021

2122
[#368]: https://github.com/stackabletech/stackable-cockpit/pull/368
2223
[#373]: https://github.com/stackabletech/stackable-cockpit/pull/373
24+
[#376]: https://github.com/stackabletech/stackable-cockpit/pull/376
2325

2426
## [25.3.0] - 2025-03-27
2527

0 commit comments

Comments
 (0)