1
0
forked from suse-edge/Factory

25 Commits
3.5 ... main

Author SHA256 Message Date
d3f8968339 Merge pull request '[3.5.0] - test UC 0.1.3 rc1' (#365) from dprodanov/Factory:uc-0.1.3-rc1 into main
Reviewed-on: suse-edge/Factory#365
2026-01-20 16:09:55 +01:00
805ec0a403 test rc2 2026-01-20 17:06:51 +02:00
9c97656992 Merge pull request 'Make wait_obs script more reliable' (#370) from nbelouin/Factory:improve_wait_obs into main
Reviewed-on: suse-edge/Factory#370
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org>
2026-01-19 16:25:22 +01:00
cee3c89e46 Merge pull request 'Update release images with 3.5 pre release run' (#369) from nbelouin/Factory:update_release_images into main
Reviewed-on: suse-edge/Factory#369
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org>
2026-01-19 16:24:33 +01:00
99a05ea424 Update release images with 3.5 pre release run
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com>
2026-01-19 13:42:36 +01:00
0ae774cf9d Make wait_obs script more reliable
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com>
2026-01-19 13:16:09 +01:00
ccc1c66636 change to official tag 2026-01-19 10:43:37 +01:00
90e12f7065 changes to EIB for v1.3.2-rc0 2026-01-19 10:43:37 +01:00
368609ca5c release-manifest: bump elemental-operator to 1.8.0
The SCC elemental-register for SLM 6.2 is 1.8.0 so we should align the operator version
2026-01-16 12:05:56 +00:00
ed52d4c7a4 [3.5.0] - test UC 0.1.3 rc1 2026-01-16 13:51:56 +02:00
e3d2e39fa8 Merge pull request '[3.5.0] - test upgrade controller rc1' (#358) from dprodanov/Factory:upgrade-controller-rc1 into main
Reviewed-on: suse-edge/Factory#358
2026-01-15 13:58:45 +01:00
a6b927e088 [3.5.0] - bump UC to final 0.1.2 tag 2026-01-15 14:03:14 +02:00
d2da4d9a31 bump to rc2 2026-01-14 13:26:29 +02:00
980809a7d7 Merge pull request '[3.5.0] - update to new longhorn version' (#359) from dprodanov/Factory:appco-longhorn into main
Reviewed-on: suse-edge/Factory#359
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org>
Reviewed-by: Kristian Zhelyazkov <kzhelyazkov@noreply.src.opensuse.org>
2026-01-14 12:16:40 +01:00
eab4d9bbe3 metallb-chart: override frr-k8s kube-rbac-proxy tag
The version we're building is 0.19.1 but the nested chart specifies
an older version
2026-01-13 17:51:16 +00:00
a2ef24e32a [3.5.0] - test upgrade controller rc1 2026-01-13 17:33:33 +02:00
84e5420fad [3.5.0] - update to new longhorn version 2026-01-13 17:32:11 +02:00
1cd255c949 release-manifest: update cert-manager version
According to https://cert-manager.io/docs/releases/ we need 1.19 for 1.34 support
2026-01-12 11:02:37 +01:00
184c9f74fa rancher-turtles-providers: Add upstream version suffix
Aligns with https://github.com/rancher/prime-charts/tree/dev-v2.13/charts/rancher-turtles-providers/108.0.1%2Bup0.25.1
2026-01-09 14:30:17 +00:00
c0c01e7638 release-manifest: allow build on arm
Although the upgrade controller flow isn't fully tested on ARM yet
it's useful to have the release manifest image available, for example
to enable developer automation which consumes the release manifest image.
2026-01-08 14:18:40 +00:00
a6a3d2ac69 rancher-turtles: Remove rancher-turtles chart
The rancher-turtles and rancher-turtles-airgap-resources charts
have been replaced by the rancher-integrated turtles in 2.13 and
the edge rancher-turtles-providers chart
2026-01-07 17:19:07 +00:00
896f79e0f2 rancher-turtles-providers: tolerate existing namespaces
On upgrade these namespaces may already exist as they are created by the
current rancher-turtles edge chart, so in this case skip namespace creation.
2026-01-06 14:08:01 +02:00
a8221ba07f Merge pull request 'sriov webhooks to reload the renewed certificate.' (#348) from antaloala/Factory:edge-1759 into main
Reviewed-on: suse-edge/Factory#348
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org>
2025-12-24 00:52:05 +01:00
a164be3522 Adds operator-webhook-load-renewed-certs.patch to sriov-network-operator srpm 2025-12-24 00:04:52 +01:00
417601ec1d Adds injector-webhook-load-renewed-certs.patch to network-resources-injector srpm 2025-12-24 00:04:52 +01:00
2 changed files with 32 additions and 12 deletions

View File

@@ -1,3 +1,3 @@
PROJECT = "isv:SUSE:Edge:3.5"
PROJECT = "isv:SUSE:Edge:Factory"
REPOSITORY = "https://src.opensuse.org/suse-edge/Factory"
BRANCH = "3.5"
BRANCH = "main"

View File

@@ -6,6 +6,7 @@ import sys
from collections import Counter
def get_buildstatus(project: str) -> ET.Element:
for _ in range(5):
try:
@@ -17,8 +18,17 @@ def get_buildstatus(project: str) -> ET.Element:
continue
print("Failed to get buildstatus from OBS")
def do_wait(project:str, commit:str) -> ET.Element:
def do_wait(project: str, commit: str) -> ET.Element:
last_state = None
waiting_states = (
"blocked",
"scheduled",
"dispatching",
"building",
"signing",
"finished",
)
while True:
time.sleep(5)
status = get_buildstatus(project)
@@ -33,17 +43,25 @@ def do_wait(project:str, commit:str) -> ET.Element:
else:
last_state = status.get("state")
scminfo = { e.text for e in status.findall(".//scminfo") }
scminfo = {e.text for e in status.findall(".//scminfo")}
if len(scminfo) != 1 or scminfo.pop() != commit:
print("Waiting for OBS to sync with SCM")
continue
if not all([ e.get('state') == "published" and e.get('dirty') is None for e in status.findall("./result")]):
if not all(
[
e.get("state") == "published" # Only consider if all packages are published
and e.get("dirty") is None # Exclude states needing recalculation
and e.get("code") not in waiting_states # Exclude transient/waiting states
for e in status.findall("./result")
] + [ e.get("code") not in waiting_states for e in status.findall("./status") ]
):
print("Waiting for OBS to finish building")
continue
return status
def print_results(status: ET.Element) -> bool:
results = {}
failed = []
@@ -51,15 +69,15 @@ def print_results(status: ET.Element) -> bool:
repo = results.get(e.get("repository"), {})
repo[e.get("arch")] = e
results[e.get("repository")] = repo
for repo in results.keys():
print(f"{repo}:")
depth=1
depth = 1
for arch in results[repo].keys():
counts = Counter()
if repo != "charts":
print(f"\t{arch}:")
depth=2
depth = 2
for package in results[repo][arch].findall("./status"):
if package.get("code") in ["excluded", "disabled"]:
continue
@@ -70,9 +88,9 @@ def print_results(status: ET.Element) -> bool:
else:
failed.append(f"{package.get('package')} ({arch})")
counts[package.get("code")] += 1
for (code, count) in counts.items():
print("\t"*depth, f"{code}: {count}")
for code, count in counts.items():
print("\t" * depth, f"{code}: {count}")
failed.sort()
if failed:
print("\nPackages failing: ")
@@ -80,6 +98,7 @@ def print_results(status: ET.Element) -> bool:
print("\t", fail)
return len(failed)
def main():
project = os.environ.get("OBS_PROJECT")
sha = os.environ.get("GIT_SHA")
@@ -87,5 +106,6 @@ def main():
status = do_wait(project, sha)
sys.exit(print_results(status))
if __name__ == "__main__":
main()