Compare commits

..

3 Commits

Author SHA1 Message Date
Kay Yan
a18550c6fc fix(cilium): wire cilium_enable_prometheus to Helm values template
The cilium_enable_prometheus variable was defined in defaults and
documented in sample inventory but never mapped to the Helm values
template, making it a no-op. Add the prometheus.enabled field to
values.yaml.j2 so that setting cilium_enable_prometheus: true
correctly enables Prometheus metrics on the Cilium agent.

Signed-off-by: Kay Yan <kay.yan@daocloud.io>
2026-04-02 14:47:22 +00:00
dependabot[bot]
90ce8004b7 build(deps): bump cryptography from 46.0.5 to 46.0.6 (#13133)
Bumps [cryptography](https://github.com/pyca/cryptography) from 46.0.5 to 46.0.6.
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pyca/cryptography/compare/46.0.5...46.0.6)

---
updated-dependencies:
- dependency-name: cryptography
  dependency-version: 46.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-30 16:04:16 +05:30
Max Gautier
fddf8ec565 Partial revert "ci(openeuler): improve mirror selection and stabilize CI checks (#13094)" (#13129)
This (partially) reverts commit 3c6d368397.

The fix didn't help with CI flakiness, so putting it back in the flakey
jobs
2026-03-28 19:18:12 +05:30
3 changed files with 5 additions and 2 deletions

View File

@@ -57,7 +57,6 @@ pr:
- ubuntu24-kube-router-svc-proxy
- ubuntu24-ha-separate-etcd
- fedora40-flannel-crio-collection-scale
- openeuler24-calico
# This is for flakey test so they don't disrupt the PR worklflow too much.
# Jobs here MUST have a open issue so we don't lose sight of them
@@ -68,6 +67,7 @@ pr-flakey:
matrix:
- TESTCASE:
- flatcar4081-calico # https://github.com/kubernetes-sigs/kubespray/issues/12309
- openeuler24-calico # https://github.com/kubernetes-sigs/kubespray/issues/12877
# The ubuntu24-calico-all-in-one jobs are meant as early stages to prevent running the full CI if something is horribly broken
ubuntu24-calico-all-in-one:

View File

@@ -1,6 +1,6 @@
ansible==11.13.0
# Needed for community.crypto module
cryptography==46.0.5
cryptography==46.0.6
# Needed for jinja2 json_query templating
jmespath==1.1.0
# Needed for ansible.utils.ipaddr

View File

@@ -177,6 +177,9 @@ hostFirewall:
policyAuditMode: {{ cilium_policy_audit_mode | to_json }}
prometheus:
enabled: {{ cilium_enable_prometheus | to_json }}
certgen:
image:
repository: {{ cilium_hubble_certgen_image_repo }}