Skip to content

Commit 3774ac2

Browse files
mnasergithub-actions[bot]
authored andcommitted
chore(deps): update cloud-provider-openstack
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 8adec1b commit 3774ac2

4 files changed

Lines changed: 11 additions & 9 deletions

File tree

.charts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ charts:
88
repository:
99
url: https://helm.cilium.io/
1010
- name: openstack-cloud-controller-manager
11-
version: 2.35.0
11+
version: 2.36.0
1212
repository:
1313
url: https://kubernetes.github.io/cloud-provider-openstack
1414
- name: openstack-cinder-csi

magnum_cluster_api/charts/openstack-cloud-controller-manager/Chart.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ dependencies:
33
repository: https://charts.bitnami.com/bitnami
44
version: 2.14.1
55
digest: sha256:ac04d66e6abb3cfc89f4c10e49d79770c352c510744bc51e3595937721b7f41a
6-
generated: "2026-01-23T16:51:45.187436108Z"
6+
generated: "2026-05-13T13:12:14.027693323Z"

magnum_cluster_api/charts/openstack-cloud-controller-manager/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
2-
appVersion: v1.35.0
2+
appVersion: v1.36.0
33
dependencies:
44
- name: common
55
repository: https://charts.bitnami.com/bitnami
@@ -12,4 +12,4 @@ maintainers:
1212
name: eumel8
1313
url: https://www.telekom.com
1414
name: openstack-cloud-controller-manager
15-
version: 2.35.0
15+
version: 2.36.0

src/magnum.rs

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ pub struct ClusterLabels {
111111
}
112112

113113
impl ClusterLabels {
114-
const DEFAULT_CLOUD_PROVIDER_TAG: &'static str = "v1.35.0";
114+
const DEFAULT_CLOUD_PROVIDER_TAG: &'static str = "v1.36.0";
115115

116116
/// Returns true if Cilium Hubble UI is enabled.
117117
/// Parses the string label value "true"/"false" to a boolean.
@@ -145,6 +145,7 @@ impl ClusterLabels {
145145
(1, 33) => "v1.33.1".to_owned(),
146146
(1, 34) => "v1.34.1".to_owned(),
147147
(1, 35) => "v1.35.0".to_owned(),
148+
(1, 36) => "v1.36.0".to_owned(),
148149
_ => Self::DEFAULT_CLOUD_PROVIDER_TAG.to_owned(),
149150
}
150151
}
@@ -457,10 +458,11 @@ mod tests {
457458
#[case("v1.33.0", "v1.33.1")]
458459
#[case("v1.34.0", "v1.34.1")]
459460
#[case("v1.35.0", "v1.35.0")]
460-
#[case("v1.60.1", "v1.35.0")]
461-
#[case("v2.0.0", "v1.35.0")]
462-
#[case("invalid", "v1.35.0")]
463-
#[case("master", "v1.35.0")]
461+
#[case("v1.36.0", "v1.36.0")]
462+
#[case("v1.60.1", "v1.36.0")]
463+
#[case("v2.0.0", "v1.36.0")]
464+
#[case("invalid", "v1.36.0")]
465+
#[case("master", "v1.36.0")]
464466
fn test_get_cloud_provider_tag_from_kube_tag(
465467
#[case] kube_tag: &str,
466468
#[case] expected_cloud_provider_tag: &str,

0 commit comments

Comments
 (0)