Skip to content

Commit d4e3b32

Browse files
committed
replace Nexus with index-based yaml refs
1 parent 0243c3e commit d4e3b32

File tree

10 files changed

+25
-25
lines changed

10 files changed

+25
-25
lines changed

extra/completions/_stackablectl

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extra/completions/stackablectl.elv

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extra/completions/stackablectl.fish

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extra/completions/stackablectl.nu

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/stackable-cockpit/src/platform/operator/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ pub enum ChartSourceType {
234234
/// OCI registry
235235
OCI,
236236

237-
/// Nexus repositories: resolution (dev, test, stable) is based on the version and thus may be operator-specific
237+
/// index.yaml-based repositories: resolution (dev, test, stable) is based on the version and thus may be operator-specific
238238
Repo,
239239
}
240240

rust/stackablectl/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ All notable changes to this project will be documented in this file.
77
### Added
88

99
- Add new argument `--release` that allows installing a specific version of a demo or stack ([#340]).
10-
- Add new argument `--chart-source` so that operator charts can be pulled either from an OCI registry (the default) or from a Nexus repository ([#344]).
10+
- Add new argument `--chart-source` so that operator charts can be pulled either from an OCI registry (the default) or from a index.yaml-based repository ([#344]).
1111

1212
### Removed
1313

rust/stackablectl/src/cli/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -298,15 +298,15 @@ pub enum ChartSourceTypeArg {
298298
#[default]
299299
OCI,
300300

301-
/// Nexus repositories: resolution (dev, test, stable) is based on the version and thus will be operator-specific
301+
/// index.yaml-based repositories: resolution (dev, test, stable) is based on the version and thus will be operator-specific
302302
Repo,
303303
}
304304

305305
impl From<ChartSourceTypeArg> for ChartSourceType {
306306
/// Resolves the enum used by clap/arg-resolution to the core type used in
307-
/// stackable-cockpit. For the (Nexus-)repo case this core type cannot be
307+
/// stackable-cockpit. For the (index.yaml-based) repo case this core type cannot be
308308
/// decorated with meaningful information as that would be operator-specific
309-
/// i.e. we cannot resolve *which* Nexus repo to use until we have inspected
309+
/// i.e. we cannot resolve *which* (index.yaml-based) repo to use until we have inspected
310310
/// the operator version. Hence just a simple mapping.
311311
fn from(cli_enum: ChartSourceTypeArg) -> Self {
312312
match cli_enum {

0 commit comments

Comments
 (0)