Skip to content

Commit

Permalink
ci(stability): merge the develop branch
Browse files Browse the repository at this point in the history
  • Loading branch information
datacore-bolt-ci committed Dec 18, 2024
2 parents 1a9efe7 + 776f7f0 commit 0775b50
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ dependencies:
repository: https://nats-io.github.io/k8s/helm/charts/
condition: eventing.enabled
- name: localpv-provisioner
version: 4.1.0
version: 4.1.2
repository: https://openebs.github.io/dynamic-localpv-provisioner
condition: localpv-provisioner.enabled
2 changes: 1 addition & 1 deletion chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ This removes all the Kubernetes components associated with the chart and deletes
| https://grafana.github.io/helm-charts | loki-stack | 2.9.11 |
| https://jaegertracing.github.io/helm-charts | jaeger-operator | 2.50.1 |
| https://nats-io.github.io/k8s/helm/charts/ | nats | 0.19.14 |
| https://openebs.github.io/dynamic-localpv-provisioner | localpv-provisioner | 4.1.0 |
| https://openebs.github.io/dynamic-localpv-provisioner | localpv-provisioner | 4.1.2 |

## Values

Expand Down
3 changes: 3 additions & 0 deletions k8s/upgrade/src/common/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,6 @@ pub(crate) const TWO_DOT_FIVE: &str = "2.5.0";

/// Version value for the earliest possible 2.6 release.
pub(crate) const TWO_DOT_SIX: &str = "2.6.0";

/// Version value for 2.7.2 release.
pub(crate) const TWO_DOT_SEVEN_DOT_TWO: &str = "2.7.2";
13 changes: 12 additions & 1 deletion k8s/upgrade/src/helm/values.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::{
common::{
constants::{
KUBE_API_PAGE_SIZE, TWO_DOT_FIVE, TWO_DOT_FOUR, TWO_DOT_ONE, TWO_DOT_O_RC_ONE,
TWO_DOT_SIX, TWO_DOT_THREE,
TWO_DOT_SEVEN_DOT_TWO, TWO_DOT_SIX, TWO_DOT_THREE,
},
error::{
DeserializePromtailExtraConfig, ListCrds, Result, SemverParse,
Expand Down Expand Up @@ -372,6 +372,17 @@ where
)?;
}

// Special-case values for 2.7.2.
let two_dot_seven_dot_two = Version::parse(TWO_DOT_SEVEN_DOT_TWO).context(SemverParse {
version_string: TWO_DOT_SEVEN_DOT_TWO.to_string(),
})?;
if source_version.ge(&two_dot_o_rc_zero) && source_version.lt(&two_dot_seven_dot_two) {
yq.delete_object(
YamlKey::try_from(".localpv-provisioner.release")?,
upgrade_values_file.path(),
)?;
}

// Default options.
// Image tag is set because the high_priority file is the user's source options file.
// The target's image tag needs to be set for PRODUCT upgrade.
Expand Down

0 comments on commit 0775b50

Please sign in to comment.