forked from suse-edge/Factory
Compare commits
18 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 776066e863 | |||
| 07255b6b2e | |||
|
01896ea940
|
|||
|
4b9c348c90
|
|||
|
b97c294a62
|
|||
| f2d89578ee | |||
| b3ac01257c | |||
| f23f988f66 | |||
| d3f8968339 | |||
| 805ec0a403 | |||
| 9c97656992 | |||
| cee3c89e46 | |||
| 99a05ea424 | |||
| 0ae774cf9d | |||
| ccc1c66636 | |||
| 90e12f7065 | |||
| ed52d4c7a4 | |||
| f497cf5996 |
@@ -6,6 +6,7 @@ import sys
|
|||||||
|
|
||||||
from collections import Counter
|
from collections import Counter
|
||||||
|
|
||||||
|
|
||||||
def get_buildstatus(project: str) -> ET.Element:
|
def get_buildstatus(project: str) -> ET.Element:
|
||||||
for _ in range(5):
|
for _ in range(5):
|
||||||
try:
|
try:
|
||||||
@@ -17,8 +18,17 @@ def get_buildstatus(project: str) -> ET.Element:
|
|||||||
continue
|
continue
|
||||||
print("Failed to get buildstatus from OBS")
|
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
|
last_state = None
|
||||||
|
waiting_states = (
|
||||||
|
"blocked",
|
||||||
|
"scheduled",
|
||||||
|
"dispatching",
|
||||||
|
"building",
|
||||||
|
"signing",
|
||||||
|
"finished",
|
||||||
|
)
|
||||||
while True:
|
while True:
|
||||||
time.sleep(5)
|
time.sleep(5)
|
||||||
status = get_buildstatus(project)
|
status = get_buildstatus(project)
|
||||||
@@ -33,17 +43,25 @@ def do_wait(project:str, commit:str) -> ET.Element:
|
|||||||
else:
|
else:
|
||||||
last_state = status.get("state")
|
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:
|
if len(scminfo) != 1 or scminfo.pop() != commit:
|
||||||
print("Waiting for OBS to sync with SCM")
|
print("Waiting for OBS to sync with SCM")
|
||||||
continue
|
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")
|
print("Waiting for OBS to finish building")
|
||||||
continue
|
continue
|
||||||
|
|
||||||
return status
|
return status
|
||||||
|
|
||||||
|
|
||||||
def print_results(status: ET.Element) -> bool:
|
def print_results(status: ET.Element) -> bool:
|
||||||
results = {}
|
results = {}
|
||||||
failed = []
|
failed = []
|
||||||
@@ -51,15 +69,15 @@ def print_results(status: ET.Element) -> bool:
|
|||||||
repo = results.get(e.get("repository"), {})
|
repo = results.get(e.get("repository"), {})
|
||||||
repo[e.get("arch")] = e
|
repo[e.get("arch")] = e
|
||||||
results[e.get("repository")] = repo
|
results[e.get("repository")] = repo
|
||||||
|
|
||||||
for repo in results.keys():
|
for repo in results.keys():
|
||||||
print(f"{repo}:")
|
print(f"{repo}:")
|
||||||
depth=1
|
depth = 1
|
||||||
for arch in results[repo].keys():
|
for arch in results[repo].keys():
|
||||||
counts = Counter()
|
counts = Counter()
|
||||||
if repo != "charts":
|
if repo != "charts":
|
||||||
print(f"\t{arch}:")
|
print(f"\t{arch}:")
|
||||||
depth=2
|
depth = 2
|
||||||
for package in results[repo][arch].findall("./status"):
|
for package in results[repo][arch].findall("./status"):
|
||||||
if package.get("code") in ["excluded", "disabled"]:
|
if package.get("code") in ["excluded", "disabled"]:
|
||||||
continue
|
continue
|
||||||
@@ -70,9 +88,9 @@ def print_results(status: ET.Element) -> bool:
|
|||||||
else:
|
else:
|
||||||
failed.append(f"{package.get('package')} ({arch})")
|
failed.append(f"{package.get('package')} ({arch})")
|
||||||
counts[package.get("code")] += 1
|
counts[package.get("code")] += 1
|
||||||
for (code, count) in counts.items():
|
for code, count in counts.items():
|
||||||
print("\t"*depth, f"{code}: {count}")
|
print("\t" * depth, f"{code}: {count}")
|
||||||
|
|
||||||
failed.sort()
|
failed.sort()
|
||||||
if failed:
|
if failed:
|
||||||
print("\nPackages failing: ")
|
print("\nPackages failing: ")
|
||||||
@@ -80,6 +98,7 @@ def print_results(status: ET.Element) -> bool:
|
|||||||
print("\t", fail)
|
print("\t", fail)
|
||||||
return len(failed)
|
return len(failed)
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
project = os.environ.get("OBS_PROJECT")
|
project = os.environ.get("OBS_PROJECT")
|
||||||
sha = os.environ.get("GIT_SHA")
|
sha = os.environ.get("GIT_SHA")
|
||||||
@@ -87,5 +106,6 @@ def main():
|
|||||||
status = do_wait(project, sha)
|
status = do_wait(project, sha)
|
||||||
sys.exit(print_results(status))
|
sys.exit(print_results(status))
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
|||||||
2
_config
2
_config
@@ -1,7 +1,7 @@
|
|||||||
Prefer: -libqpid-proton10 -python313-urllib3_1
|
Prefer: -libqpid-proton10 -python313-urllib3_1
|
||||||
Prefer: -cargo1.58 -cargo1.57 cargo1.89
|
Prefer: -cargo1.58 -cargo1.57 cargo1.89
|
||||||
Prefer: chrony-pool-suse
|
Prefer: chrony-pool-suse
|
||||||
Prefer: -postgresql17-devel-mini
|
Prefer: -postgresql18-devel-mini
|
||||||
|
|
||||||
BuildFlags: excludebuild:python-pandas:test-py313
|
BuildFlags: excludebuild:python-pandas:test-py313
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#!BuildTag: %%IMG_PREFIX%%edge-image-builder:1.3.1
|
#!BuildTag: %%IMG_PREFIX%%edge-image-builder:1.3.2
|
||||||
#!BuildTag: %%IMG_PREFIX%%edge-image-builder:1.3.1-%RELEASE%
|
#!BuildTag: %%IMG_PREFIX%%edge-image-builder:1.3.2-%RELEASE%
|
||||||
ARG SLE_VERSION
|
ARG SLE_VERSION
|
||||||
FROM registry.suse.com/bci/bci-base:$SLE_VERSION
|
FROM registry.suse.com/bci/bci-base:$SLE_VERSION
|
||||||
MAINTAINER SUSE LLC (https://www.suse.com/)
|
MAINTAINER SUSE LLC (https://www.suse.com/)
|
||||||
@@ -14,11 +14,11 @@ RUN zypper --non-interactive install --no-recommends edge-image-builder qemu-x86
|
|||||||
LABEL org.opencontainers.image.authors="SUSE LLC (https://www.suse.com/)"
|
LABEL org.opencontainers.image.authors="SUSE LLC (https://www.suse.com/)"
|
||||||
LABEL org.opencontainers.image.title="SLE edge-image-builder Container Image"
|
LABEL org.opencontainers.image.title="SLE edge-image-builder Container Image"
|
||||||
LABEL org.opencontainers.image.description="edge-image-builder based on the SLE Base Container Image."
|
LABEL org.opencontainers.image.description="edge-image-builder based on the SLE Base Container Image."
|
||||||
LABEL org.opencontainers.image.version="1.3.1"
|
LABEL org.opencontainers.image.version="1.3.2"
|
||||||
LABEL org.opencontainers.image.url="https://www.suse.com/products/server/"
|
LABEL org.opencontainers.image.url="https://www.suse.com/products/server/"
|
||||||
LABEL org.opencontainers.image.created="%BUILDTIME%"
|
LABEL org.opencontainers.image.created="%BUILDTIME%"
|
||||||
LABEL org.opencontainers.image.vendor="SUSE LLC"
|
LABEL org.opencontainers.image.vendor="SUSE LLC"
|
||||||
LABEL org.opensuse.reference="%%IMG_REPO%%/%%IMG_PREFIX%%edge-image-builder:1.3.1-%RELEASE%"
|
LABEL org.opensuse.reference="%%IMG_REPO%%/%%IMG_PREFIX%%edge-image-builder:1.3.2-%RELEASE%"
|
||||||
LABEL org.openbuildservice.disturl="%DISTURL%"
|
LABEL org.openbuildservice.disturl="%DISTURL%"
|
||||||
LABEL com.suse.supportlevel="%%SUPPORT_LEVEL%%"
|
LABEL com.suse.supportlevel="%%SUPPORT_LEVEL%%"
|
||||||
LABEL com.suse.eula="SUSE Combined EULA February 2024"
|
LABEL com.suse.eula="SUSE Combined EULA February 2024"
|
||||||
|
|||||||
@@ -3,13 +3,17 @@
|
|||||||
<param name="url">https://github.com/suse-edge/edge-image-builder.git</param>
|
<param name="url">https://github.com/suse-edge/edge-image-builder.git</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="exclude">.git</param>
|
<param name="exclude">.git</param>
|
||||||
<param name="revision">v1.3.1</param>
|
<param name="revision">v1.3.2</param>
|
||||||
<!-- Uncomment and set this For Pre-Release Version -->
|
<!-- Uncomment and set this For Pre-Release Version -->
|
||||||
<!-- <param name="version">1.3.1</param> -->
|
<!-- <param name="version">1.3.2~rc0</param> -->
|
||||||
|
<!-- End Here -->
|
||||||
|
|
||||||
<!-- Uncomment and this for regular version -->
|
<!-- Uncomment and this for regular version -->
|
||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="versionrewrite-pattern">v(\d+).(\d+).(\d+)</param>
|
<param name="versionrewrite-pattern">v(\d+).(\d+).(\d+)</param>
|
||||||
<param name="versionrewrite-replacement">\1.\2.\3</param>
|
<param name="versionrewrite-replacement">\1.\2.\3</param>
|
||||||
|
<!-- End Here -->
|
||||||
|
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
</service>
|
</service>
|
||||||
<service mode="buildtime" name="tar">
|
<service mode="buildtime" name="tar">
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: edge-image-builder
|
Name: edge-image-builder
|
||||||
Version: 1.3.1
|
Version: 1.3.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Edge Image Builder
|
Summary: Edge Image Builder
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
#!BuildTag: %%IMG_PREFIX%%ironic-ipa-downloader:3.0.10
|
#!BuildTag: %%IMG_PREFIX%%ironic-ipa-downloader:3.0.11
|
||||||
#!BuildTag: %%IMG_PREFIX%%ironic-ipa-downloader:3.0.10-%RELEASE%
|
#!BuildTag: %%IMG_PREFIX%%ironic-ipa-downloader:3.0.11-%RELEASE%
|
||||||
ARG SLE_VERSION
|
ARG SLE_VERSION
|
||||||
FROM registry.suse.com/bci/bci-micro:$SLE_VERSION AS micro
|
FROM registry.suse.com/bci/bci-micro:$SLE_VERSION AS micro
|
||||||
|
|
||||||
@@ -16,11 +16,11 @@ FROM micro AS final
|
|||||||
LABEL org.opencontainers.image.authors="SUSE LLC (https://www.suse.com/)"
|
LABEL org.opencontainers.image.authors="SUSE LLC (https://www.suse.com/)"
|
||||||
LABEL org.opencontainers.image.title="SLE Based Ironic IPA Downloader Container Image"
|
LABEL org.opencontainers.image.title="SLE Based Ironic IPA Downloader Container Image"
|
||||||
LABEL org.opencontainers.image.description="ironic-ipa-downloader based on the SLE Base Container Image."
|
LABEL org.opencontainers.image.description="ironic-ipa-downloader based on the SLE Base Container Image."
|
||||||
LABEL org.opencontainers.image.version="3.0.10"
|
LABEL org.opencontainers.image.version="3.0.11"
|
||||||
LABEL org.opencontainers.image.url="https://www.suse.com/solutions/edge-computing/"
|
LABEL org.opencontainers.image.url="https://www.suse.com/solutions/edge-computing/"
|
||||||
LABEL org.opencontainers.image.created="%BUILDTIME%"
|
LABEL org.opencontainers.image.created="%BUILDTIME%"
|
||||||
LABEL org.opencontainers.image.vendor="SUSE LLC"
|
LABEL org.opencontainers.image.vendor="SUSE LLC"
|
||||||
LABEL org.opensuse.reference="%%IMG_REPO%%/%%IMG_PREFIX%%ironic-ipa-downloader:3.0.10-%RELEASE%"
|
LABEL org.opensuse.reference="%%IMG_REPO%%/%%IMG_PREFIX%%ironic-ipa-downloader:3.0.11-%RELEASE%"
|
||||||
LABEL org.openbuildservice.disturl="%DISTURL%"
|
LABEL org.openbuildservice.disturl="%DISTURL%"
|
||||||
LABEL com.suse.supportlevel="%%SUPPORT_LEVEL%%"
|
LABEL com.suse.supportlevel="%%SUPPORT_LEVEL%%"
|
||||||
LABEL com.suse.eula="SUSE Combined EULA February 2024"
|
LABEL com.suse.eula="SUSE Combined EULA February 2024"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
#!BuildTag: %%IMG_PREFIX%%ironic-ipa-downloader-aarch64:3.0.10
|
#!BuildTag: %%IMG_PREFIX%%ironic-ipa-downloader-aarch64:3.0.11
|
||||||
#!BuildTag: %%IMG_PREFIX%%ironic-ipa-downloader-aarch64:3.0.10-%RELEASE%
|
#!BuildTag: %%IMG_PREFIX%%ironic-ipa-downloader-aarch64:3.0.11-%RELEASE%
|
||||||
ARG SLE_VERSION
|
ARG SLE_VERSION
|
||||||
FROM registry.suse.com/bci/bci-micro:$SLE_VERSION AS micro
|
FROM registry.suse.com/bci/bci-micro:$SLE_VERSION AS micro
|
||||||
|
|
||||||
@@ -16,11 +16,11 @@ FROM micro AS final
|
|||||||
LABEL org.opencontainers.image.authors="SUSE LLC (https://www.suse.com/)"
|
LABEL org.opencontainers.image.authors="SUSE LLC (https://www.suse.com/)"
|
||||||
LABEL org.opencontainers.image.title="SLE Based Ironic IPA Downloader Container Image"
|
LABEL org.opencontainers.image.title="SLE Based Ironic IPA Downloader Container Image"
|
||||||
LABEL org.opencontainers.image.description="ironic-ipa-downloader based on the SLE Base Container Image."
|
LABEL org.opencontainers.image.description="ironic-ipa-downloader based on the SLE Base Container Image."
|
||||||
LABEL org.opencontainers.image.version="3.0.10"
|
LABEL org.opencontainers.image.version="3.0.11"
|
||||||
LABEL org.opencontainers.image.url="https://www.suse.com/solutions/edge-computing/"
|
LABEL org.opencontainers.image.url="https://www.suse.com/solutions/edge-computing/"
|
||||||
LABEL org.opencontainers.image.created="%BUILDTIME%"
|
LABEL org.opencontainers.image.created="%BUILDTIME%"
|
||||||
LABEL org.opencontainers.image.vendor="SUSE LLC"
|
LABEL org.opencontainers.image.vendor="SUSE LLC"
|
||||||
LABEL org.opensuse.reference="%%IMG_REPO%%/%%IMG_PREFIX%%ironic-ipa-downloader:3.0.10-%RELEASE%"
|
LABEL org.opensuse.reference="%%IMG_REPO%%/%%IMG_PREFIX%%ironic-ipa-downloader:3.0.11-%RELEASE%"
|
||||||
LABEL org.openbuildservice.disturl="%DISTURL%"
|
LABEL org.openbuildservice.disturl="%DISTURL%"
|
||||||
LABEL com.suse.supportlevel="%%SUPPORT_LEVEL%%"
|
LABEL com.suse.supportlevel="%%SUPPORT_LEVEL%%"
|
||||||
LABEL com.suse.eula="SUSE Combined EULA February 2024"
|
LABEL com.suse.eula="SUSE Combined EULA February 2024"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
#!BuildTag: %%IMG_PREFIX%%ironic-ipa-downloader-x86_64:3.0.10
|
#!BuildTag: %%IMG_PREFIX%%ironic-ipa-downloader-x86_64:3.0.11
|
||||||
#!BuildTag: %%IMG_PREFIX%%ironic-ipa-downloader-x86_64:3.0.10-%RELEASE%
|
#!BuildTag: %%IMG_PREFIX%%ironic-ipa-downloader-x86_64:3.0.11-%RELEASE%
|
||||||
ARG SLE_VERSION
|
ARG SLE_VERSION
|
||||||
FROM registry.suse.com/bci/bci-micro:$SLE_VERSION AS micro
|
FROM registry.suse.com/bci/bci-micro:$SLE_VERSION AS micro
|
||||||
|
|
||||||
@@ -16,11 +16,11 @@ FROM micro AS final
|
|||||||
LABEL org.opencontainers.image.authors="SUSE LLC (https://www.suse.com/)"
|
LABEL org.opencontainers.image.authors="SUSE LLC (https://www.suse.com/)"
|
||||||
LABEL org.opencontainers.image.title="SLE Based Ironic IPA Downloader Container Image"
|
LABEL org.opencontainers.image.title="SLE Based Ironic IPA Downloader Container Image"
|
||||||
LABEL org.opencontainers.image.description="ironic-ipa-downloader based on the SLE Base Container Image."
|
LABEL org.opencontainers.image.description="ironic-ipa-downloader based on the SLE Base Container Image."
|
||||||
LABEL org.opencontainers.image.version="3.0.10"
|
LABEL org.opencontainers.image.version="3.0.11"
|
||||||
LABEL org.opencontainers.image.url="https://www.suse.com/solutions/edge-computing/"
|
LABEL org.opencontainers.image.url="https://www.suse.com/solutions/edge-computing/"
|
||||||
LABEL org.opencontainers.image.created="%BUILDTIME%"
|
LABEL org.opencontainers.image.created="%BUILDTIME%"
|
||||||
LABEL org.opencontainers.image.vendor="SUSE LLC"
|
LABEL org.opencontainers.image.vendor="SUSE LLC"
|
||||||
LABEL org.opensuse.reference="%%IMG_REPO%%/%%IMG_PREFIX%%ironic-ipa-downloader:3.0.10-%RELEASE%"
|
LABEL org.opensuse.reference="%%IMG_REPO%%/%%IMG_PREFIX%%ironic-ipa-downloader:3.0.11-%RELEASE%"
|
||||||
LABEL org.openbuildservice.disturl="%DISTURL%"
|
LABEL org.openbuildservice.disturl="%DISTURL%"
|
||||||
LABEL com.suse.supportlevel="%%SUPPORT_LEVEL%%"
|
LABEL com.suse.supportlevel="%%SUPPORT_LEVEL%%"
|
||||||
LABEL com.suse.eula="SUSE Combined EULA February 2024"
|
LABEL com.suse.eula="SUSE Combined EULA February 2024"
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: ironic-ipa-ramdisk
|
Name: ironic-ipa-ramdisk
|
||||||
Version: 3.0.8
|
Version: 3.0.9
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Kernel and ramdisk image for OpenStack Ironic
|
Summary: Kernel and ramdisk image for OpenStack Ironic
|
||||||
License: SUSE-EULA
|
License: SUSE-EULA
|
||||||
|
|||||||
@@ -0,0 +1,5 @@
|
|||||||
|
[Match]
|
||||||
|
Driver=bonding bridge
|
||||||
|
|
||||||
|
[Link]
|
||||||
|
MACAddressPolicy=none
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
#!BuildTag: %%CHART_PREFIX%%metal3:%%CHART_MAJOR%%.0.21_up0.13.0
|
#!BuildTag: %%CHART_PREFIX%%metal3:%%CHART_MAJOR%%.0.22_up0.13.1
|
||||||
#!BuildTag: %%CHART_PREFIX%%metal3:%%CHART_MAJOR%%.0.21_up0.13.0-%RELEASE%
|
#!BuildTag: %%CHART_PREFIX%%metal3:%%CHART_MAJOR%%.0.22_up0.13.1-%RELEASE%
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: 0.13.0
|
appVersion: 0.13.0
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -10,7 +10,7 @@ dependencies:
|
|||||||
- alias: metal3-ironic
|
- alias: metal3-ironic
|
||||||
name: ironic
|
name: ironic
|
||||||
repository: file://./charts/ironic
|
repository: file://./charts/ironic
|
||||||
version: 0.12.1
|
version: 0.12.2
|
||||||
- alias: metal3-mariadb
|
- alias: metal3-mariadb
|
||||||
condition: global.enable_mariadb
|
condition: global.enable_mariadb
|
||||||
name: mariadb
|
name: mariadb
|
||||||
@@ -25,4 +25,4 @@ description: A Helm chart that installs all of the dependencies needed for Metal
|
|||||||
icon: https://github.com/cncf/artwork/raw/master/projects/metal3/icon/color/metal3-icon-color.svg
|
icon: https://github.com/cncf/artwork/raw/master/projects/metal3/icon/color/metal3-icon-color.svg
|
||||||
name: metal3
|
name: metal3
|
||||||
type: application
|
type: application
|
||||||
version: "%%CHART_MAJOR%%.0.21+up0.13.0"
|
version: "%%CHART_MAJOR%%.0.22+up0.13.1"
|
||||||
|
|||||||
@@ -3,4 +3,4 @@ appVersion: 32.0.0
|
|||||||
description: A Helm chart for Ironic, used by Metal3
|
description: A Helm chart for Ironic, used by Metal3
|
||||||
name: ironic
|
name: ironic
|
||||||
type: application
|
type: application
|
||||||
version: 0.12.1
|
version: 0.12.2
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ images:
|
|||||||
ironicIPADownloader:
|
ironicIPADownloader:
|
||||||
repository: registry.opensuse.org/isv/suse/edge/metal3/containers/images/ironic-ipa-downloader
|
repository: registry.opensuse.org/isv/suse/edge/metal3/containers/images/ironic-ipa-downloader
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: 3.0.10
|
tag: 3.0.11
|
||||||
|
|
||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
fullnameOverride: ""
|
fullnameOverride: ""
|
||||||
|
|||||||
@@ -20,4 +20,4 @@ LABEL com.suse.image-type="release-manifest"
|
|||||||
LABEL com.suse.release-stage="released"
|
LABEL com.suse.release-stage="released"
|
||||||
# endlabelprefix
|
# endlabelprefix
|
||||||
|
|
||||||
COPY release_manifest.yaml release_images.yaml ./
|
COPY release_manifest.yaml release_images.yaml tooling_manifest.yaml ./
|
||||||
|
|||||||
@@ -18,5 +18,16 @@
|
|||||||
<param name="var">CHART_REPO</param>
|
<param name="var">CHART_REPO</param>
|
||||||
<param name="eval">CHART_MAJOR=$(rpm --macros=/root/.rpmmacros -E %{?chart_major})</param>
|
<param name="eval">CHART_MAJOR=$(rpm --macros=/root/.rpmmacros -E %{?chart_major})</param>
|
||||||
<param name="var">CHART_MAJOR</param>
|
<param name="var">CHART_MAJOR</param>
|
||||||
|
</service>
|
||||||
|
<service name="replace_using_env" mode="buildtime">
|
||||||
|
<param name="file">tooling_manifest.yaml</param>
|
||||||
|
<param name="eval">IMG_PREFIX=$(rpm --macros=/root/.rpmmacros -E %{?img_prefix})</param>
|
||||||
|
<param name="var">IMG_PREFIX</param>
|
||||||
|
<param name="eval">IMG_REPO=$(rpm --macros=/root/.rpmmacros -E %manifest_repo)</param>
|
||||||
|
<param name="var">IMG_REPO</param>
|
||||||
|
<param name="eval">KIWI_VERSION=$(rpm --macros=/root/.rpmmacros -E %kiwi_version)</param>
|
||||||
|
<param name="var">KIWI_VERSION</param>
|
||||||
|
<param name="eval">EIB_VERSION=$(rpm --macros=/root/.rpmmacros -E %eib_version)</param>
|
||||||
|
<param name="var">EIB_VERSION</param>
|
||||||
</service>
|
</service>
|
||||||
</services>
|
</services>
|
||||||
|
|||||||
@@ -1,66 +1,68 @@
|
|||||||
images:
|
images:
|
||||||
- name: quay.io/jetstack/cert-manager-cainjector:v1.18.2
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%akri-agent:v0.12.20
|
||||||
- name: quay.io/jetstack/cert-manager-cainjector:v1.18.2
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%akri-controller:v0.12.20
|
||||||
- name: quay.io/jetstack/cert-manager-controller:v1.18.2
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%akri-webhook-configuration:v0.12.20
|
||||||
- name: quay.io/jetstack/cert-manager-webhook:v1.18.2
|
|
||||||
- name: registry.k8s.io/e2e-test-images/agnhost:2.39
|
|
||||||
- name: %%IMG_REPO%%/%%IMG_PREFIX%%baremetal-operator:0.11.2.0
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%baremetal-operator:0.11.2.0
|
||||||
- name: %%IMG_REPO%%/%%IMG_PREFIX%%endpoint-copier-operator:0.3.0
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%endpoint-copier-operator:0.3.0
|
||||||
- name: %%IMG_REPO%%/%%IMG_PREFIX%%ironic-ipa-downloader:3.0.10
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%ib-sriov-cni:v1.3.0
|
||||||
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%ironic-ipa-downloader:3.0.11
|
||||||
- name: %%IMG_REPO%%/%%IMG_PREFIX%%ironic:32.0.0.1
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%ironic:32.0.0.1
|
||||||
- name: %%IMG_REPO%%/%%IMG_PREFIX%%metallb-controller:v0.15.2
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%metallb-controller:v0.15.2
|
||||||
- name: %%IMG_REPO%%/%%IMG_PREFIX%%metallb-speaker:v0.15.2
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%metallb-speaker:v0.15.2
|
||||||
- name: %%IMG_REPO%%/%%IMG_PREFIX%%upgrade-controller:0.1.1
|
|
||||||
- name: %%IMG_REPO%%/%%IMG_PREFIX%%sriov-network-manager:v1.6.0
|
|
||||||
- name: %%IMG_REPO%%/%%IMG_PREFIX%%sriov-network-config-daemon:v1.6.0
|
|
||||||
- name: %%IMG_REPO%%/%%IMG_PREFIX%%sriov-network-webhook:v1.6.0
|
|
||||||
- name: %%IMG_REPO%%/%%IMG_PREFIX%%sriov-cni:v2.10.0
|
|
||||||
- name: %%IMG_REPO%%/%%IMG_PREFIX%%ib-sriov-cni:v1.3.0
|
|
||||||
- name: %%IMG_REPO%%/%%IMG_PREFIX%%sriov-network-device-plugin:v3.10.0
|
|
||||||
- name: %%IMG_REPO%%/%%IMG_PREFIX%%network-resources-injector:v1.8.0
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%network-resources-injector:v1.8.0
|
||||||
- name: %%IMG_REPO%%/%%IMG_PREFIX%%node-feature-discovery:v0.18.2
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%node-feature-discovery:v0.18.2
|
||||||
- name: registry.rancher.com/rancher/fleet-agent:v0.13.1
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%sriov-cni:v2.10.0
|
||||||
- name: registry.rancher.com/rancher/fleet:v0.13.1
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%sriov-network-config-daemon:v1.6.0
|
||||||
- name: registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.10.2-build20250611
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%sriov-network-device-plugin:v3.10.0
|
||||||
- name: registry.rancher.com/rancher/hardened-cni-plugins:v1.7.1-build20250611
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%sriov-network-manager:v1.6.0
|
||||||
- name: registry.rancher.com/rancher/hardened-coredns:v1.12.2-build20250611
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%sriov-network-webhook:v1.6.0
|
||||||
- name: registry.rancher.com/rancher/hardened-etcd:v3.5.21-k3s1-build20250612
|
- name: %%IMG_REPO%%/%%IMG_PREFIX%%upgrade-controller:0.1.2
|
||||||
- name: registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.8.0-build20250704
|
- name: dp.apps.rancher.io/containers/kubernetes-csi-external-attacher:4.10.0-8.8
|
||||||
- name: registry.rancher.com/rancher/hardened-kubernetes:v1.33.3-rke2r1-build20250716
|
- name: dp.apps.rancher.io/containers/kubernetes-csi-external-provisioner:5.3.0-8.8
|
||||||
- name: registry.rancher.com/rancher/hardened-multus-cni:v4.2.1-build20250627
|
- name: dp.apps.rancher.io/containers/kubernetes-csi-external-resizer:1.14.0-8.8
|
||||||
- name: registry.rancher.com/rancher/hardened-node-feature-discovery:v0.15.7-build20250425
|
- name: dp.apps.rancher.io/containers/kubernetes-csi-external-snapshotter:8.4.0-8.9
|
||||||
- name: registry.rancher.com/rancher/klipper-helm:v0.9.8-build20250709
|
- name: dp.apps.rancher.io/containers/kubernetes-csi-livenessprobe:2.17.0-8.8
|
||||||
- name: registry.rancher.com/rancher/mirrored-cilium-cilium:v1.17.6
|
- name: dp.apps.rancher.io/containers/kubernetes-csi-node-driver-registrar:2.15.0-8.8
|
||||||
- name: registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.17.6
|
- name: dp.apps.rancher.io/containers/longhorn-engine:1.10.1-1.16
|
||||||
- name: registry.rancher.com/rancher/mirrored-longhornio-csi-attacher:v4.9.0-20250709
|
- name: dp.apps.rancher.io/containers/longhorn-instance-manager:1.10.1-1.17
|
||||||
- name: registry.rancher.com/rancher/mirrored-longhornio-csi-node-driver-registrar:v2.14.0-20250709
|
- name: dp.apps.rancher.io/containers/longhorn-manager:1.10.1-1.9
|
||||||
- name: registry.rancher.com/rancher/mirrored-longhornio-csi-provisioner:v5.3.0-20250709
|
- name: dp.apps.rancher.io/containers/longhorn-share-manager:1.10.1-1.8
|
||||||
- name: registry.rancher.com/rancher/mirrored-longhornio-csi-resizer:v1.14.0-20250709
|
- name: dp.apps.rancher.io/containers/longhorn-ui:1.10.1-1.8
|
||||||
- name: registry.rancher.com/rancher/mirrored-longhornio-csi-snapshotter:v8.3.0-20250709
|
- name: quay.io/jetstack/cert-manager-cainjector:v1.19.2
|
||||||
- name: registry.rancher.com/rancher/mirrored-longhornio-livenessprobe:v2.16.0-20250709
|
- name: quay.io/jetstack/cert-manager-controller:v1.19.2
|
||||||
- name: registry.rancher.com/rancher/mirrored-longhornio-longhorn-engine:v1.9.2
|
- name: quay.io/jetstack/cert-manager-webhook:v1.19.2
|
||||||
- name: registry.rancher.com/rancher/mirrored-longhornio-longhorn-instance-manager:v1.9.2
|
- name: registry.k8s.io/e2e-test-images/agnhost:2.39
|
||||||
- name: registry.rancher.com/rancher/mirrored-longhornio-longhorn-manager:v1.9.2
|
- name: registry.rancher.com/rancher/cluster-api-controller:v1.10.6
|
||||||
- name: registry.rancher.com/rancher/mirrored-longhornio-longhorn-share-manager:v1.9.2
|
- name: registry.rancher.com/rancher/fleet-agent:v0.14.1
|
||||||
- name: registry.rancher.com/rancher/mirrored-longhornio-longhorn-ui:v1.9.2
|
- name: registry.rancher.com/rancher/fleet:v0.14.1
|
||||||
|
- name: registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.10.2-build20251015
|
||||||
|
- name: registry.rancher.com/rancher/hardened-cni-plugins:v1.8.0-build20251014
|
||||||
|
- name: registry.rancher.com/rancher/hardened-coredns:v1.13.1-build20251015
|
||||||
|
- name: registry.rancher.com/rancher/hardened-etcd:v3.6.5-k3s1-build20251017
|
||||||
|
- name: registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.8.0-build20251015
|
||||||
|
- name: registry.rancher.com/rancher/hardened-kubernetes:v1.34.2-rke2r1-build20251112
|
||||||
|
- name: registry.rancher.com/rancher/hardened-multus-cni:v4.2.3-build20251031
|
||||||
|
- name: registry.rancher.com/rancher/ip-address-manager:v1.10.4
|
||||||
|
- name: registry.rancher.com/rancher/klipper-helm:v0.9.10-build20251111
|
||||||
|
- name: registry.rancher.com/rancher/mirrored-cilium-cilium:v1.18.3
|
||||||
|
- name: registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.18.3
|
||||||
- name: registry.rancher.com/rancher/mirrored-sig-storage-snapshot-controller:v8.2.0
|
- name: registry.rancher.com/rancher/mirrored-sig-storage-snapshot-controller:v8.2.0
|
||||||
- name: registry.rancher.com/rancher/neuvector-compliance-config:1.0.9
|
- name: registry.rancher.com/rancher/neuvector-compliance-config:1.0.9
|
||||||
- name: registry.rancher.com/rancher/neuvector-controller:5.4.8
|
- name: registry.rancher.com/rancher/neuvector-controller:5.4.8
|
||||||
- name: registry.rancher.com/rancher/neuvector-enforcer:5.4.8
|
- name: registry.rancher.com/rancher/neuvector-enforcer:5.4.8
|
||||||
- name: registry.rancher.com/rancher/nginx-ingress-controller:v1.12.4-hardened2
|
- name: registry.rancher.com/rancher/nginx-ingress-controller:v1.13.4-hardened1
|
||||||
- name: registry.rancher.com/rancher/rancher-webhook:v0.8.1
|
- name: registry.rancher.com/rancher/rancher-webhook:v0.9.1
|
||||||
- name: registry.rancher.com/rancher/rancher/turtles:v0.25.1
|
|
||||||
- name: registry.rancher.com/rancher/rancher:v2.13.1
|
- name: registry.rancher.com/rancher/rancher:v2.13.1
|
||||||
- name: registry.rancher.com/rancher/rke2-cloud-provider:v1.33.1-0.20250516163953-99d91538b132-build20250612
|
- name: registry.rancher.com/rancher/rke2-cloud-provider:v1.34.2-0.20251010190833-cf0d35a732d1-build20251017
|
||||||
- name: registry.rancher.com/rancher/scc-operator:v0.1.1
|
- name: registry.rancher.com/rancher/scc-operator:v0.3.1
|
||||||
- name: registry.rancher.com/rancher/system-upgrade-controller:v0.16.0
|
- name: registry.rancher.com/rancher/shell:v0.6.1
|
||||||
|
- name: registry.rancher.com/rancher/system-upgrade-controller:v0.17.0
|
||||||
|
- name: registry.rancher.com/rancher/turtles:v0.25.1
|
||||||
- name: registry.suse.com/rancher/cluster-api-addon-provider-fleet:v0.12.0
|
- name: registry.suse.com/rancher/cluster-api-addon-provider-fleet:v0.12.0
|
||||||
- name: registry.suse.com/rancher/cluster-api-controller:v1.10.6
|
|
||||||
- name: registry.suse.com/rancher/cluster-api-provider-metal3:v1.10.4
|
- name: registry.suse.com/rancher/cluster-api-provider-metal3:v1.10.4
|
||||||
- name: registry.suse.com/rancher/cluster-api-provider-rke2-bootstrap:v0.21.1
|
- name: registry.suse.com/rancher/cluster-api-provider-rke2-bootstrap:v0.21.1
|
||||||
- name: registry.suse.com/rancher/cluster-api-provider-rke2-controlplane:v0.21.1
|
- name: registry.suse.com/rancher/cluster-api-provider-rke2-controlplane:v0.21.1
|
||||||
- name: registry.suse.com/rancher/elemental-operator:1.8.0
|
- name: registry.suse.com/rancher/elemental-operator:1.8.0
|
||||||
- name: registry.suse.com/rancher/ip-address-manager:v1.10.4
|
|
||||||
- name: registry.suse.com/suse/sles/15.7/cdi-apiserver:1.62.0-150700.9.3.1
|
- name: registry.suse.com/suse/sles/15.7/cdi-apiserver:1.62.0-150700.9.3.1
|
||||||
- name: registry.suse.com/suse/sles/15.7/cdi-controller:1.62.0-150700.9.3.1
|
- name: registry.suse.com/suse/sles/15.7/cdi-controller:1.62.0-150700.9.3.1
|
||||||
- name: registry.suse.com/suse/sles/15.7/cdi-operator:1.62.0-150700.9.3.1
|
- name: registry.suse.com/suse/sles/15.7/cdi-operator:1.62.0-150700.9.3.1
|
||||||
|
|||||||
@@ -92,9 +92,8 @@ spec:
|
|||||||
enabled: false
|
enabled: false
|
||||||
- prettyName: Longhorn
|
- prettyName: Longhorn
|
||||||
releaseName: longhorn
|
releaseName: longhorn
|
||||||
chart: suse-storage
|
chart: 'oci://dp.apps.rancher.io/charts/suse-storage'
|
||||||
version: 1.10.1
|
version: 1.10.1
|
||||||
repository: oci://dp.apps.rancher.io/charts
|
|
||||||
- prettyName: MetalLB
|
- prettyName: MetalLB
|
||||||
releaseName: metallb
|
releaseName: metallb
|
||||||
chart: '%%CHART_REPO%%/%%CHART_PREFIX%%metallb'
|
chart: '%%CHART_REPO%%/%%CHART_PREFIX%%metallb'
|
||||||
@@ -162,11 +161,15 @@ spec:
|
|||||||
- prettyName: Metal3
|
- prettyName: Metal3
|
||||||
releaseName: metal3
|
releaseName: metal3
|
||||||
chart: '%%CHART_REPO%%/%%CHART_PREFIX%%metal3'
|
chart: '%%CHART_REPO%%/%%CHART_PREFIX%%metal3'
|
||||||
version: '%%CHART_MAJOR%%.0.21+up0.13.0'
|
version: '%%CHART_MAJOR%%.0.22+up0.13.1'
|
||||||
- prettyName: RancherTurtlesProviders
|
- prettyName: RancherTurtlesProviders
|
||||||
releaseName: rancher-turtles-providers
|
releaseName: rancher-turtles-providers
|
||||||
chart: '%%CHART_REPO%%/%%CHART_PREFIX%%rancher-turtles-providers'
|
chart: '%%CHART_REPO%%/%%CHART_PREFIX%%rancher-turtles-providers'
|
||||||
version: '%%CHART_MAJOR%%.0.4+up0.25.1'
|
version: '%%CHART_MAJOR%%.0.4+up0.25.1'
|
||||||
|
- prettyName: Upgrade Controller
|
||||||
|
releaseName: upgrade-controller
|
||||||
|
chart: '%%CHART_REPO%%/%%CHART_PREFIX%%upgrade-controller'
|
||||||
|
version: '%%CHART_MAJOR%%.0.3+up0.1.3'
|
||||||
- prettyName: CertManager
|
- prettyName: CertManager
|
||||||
releaseName: cert-manager
|
releaseName: cert-manager
|
||||||
chart: cert-manager
|
chart: cert-manager
|
||||||
|
|||||||
31
release-manifest-image/tooling_manifest.yaml
Normal file
31
release-manifest-image/tooling_manifest.yaml
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
kiwi:
|
||||||
|
version: "10.2.29.1"
|
||||||
|
image: "%%IMG_REPO%%/%%IMG_PREFIX%%kiwi-builder:10.2.29.1"
|
||||||
|
|
||||||
|
eib:
|
||||||
|
version: "1.3.2"
|
||||||
|
image: "%%IMG_REPO%%/%%IMG_PREFIX%%edge-image-builder:1.3.2"
|
||||||
|
|
||||||
|
baseImages:
|
||||||
|
iso:
|
||||||
|
x86_64:
|
||||||
|
default: "SL-Micro.x86_64-6.2-Default-SelfInstall-GM.install.iso"
|
||||||
|
security: "SL-Micro.x86_64-6.2-Default-SelfInstall-GM.install.iso"
|
||||||
|
aarch64:
|
||||||
|
default: "SL-Micro.aarch64-6.2-Default-SelfInstall-GM.install.iso"
|
||||||
|
raw:
|
||||||
|
x86_64:
|
||||||
|
default: "SL-Micro.x86_64-6.2-Default-GM.raw"
|
||||||
|
telco: "SL-Micro.x86_64-6.2-Base-RT-GM.raw"
|
||||||
|
aarch64:
|
||||||
|
default: "SL-Micro.aarch64-6.2-Default-GM.raw"
|
||||||
|
telco: "SL-Micro.aarch64-6.2-Base-RT-GM.raw"
|
||||||
|
|
||||||
|
# Optional: Kiwi base image names (per arch) for convenience.
|
||||||
|
kiwiBaseImages:
|
||||||
|
iso:
|
||||||
|
x86_64: "SL-Micro.x86_64-6.2.install.iso"
|
||||||
|
aarch64: "SL-Micro.aarch64-6.2.install.iso"
|
||||||
|
raw:
|
||||||
|
x86_64: "SL-Micro.x86_64-6.2.raw"
|
||||||
|
aarch64: "SL-Micro.aarch64-6.2.raw"
|
||||||
@@ -1,13 +1,13 @@
|
|||||||
#!BuildTag: %%CHART_PREFIX%%upgrade-controller:%%CHART_MAJOR%%.0.2_up0.1.2
|
#!BuildTag: %%CHART_PREFIX%%upgrade-controller:%%CHART_MAJOR%%.0.3_up0.1.3
|
||||||
#!BuildTag: %%CHART_PREFIX%%upgrade-controller:%%CHART_MAJOR%%.0.2_up0.1.2-%RELEASE%
|
#!BuildTag: %%CHART_PREFIX%%upgrade-controller:%%CHART_MAJOR%%.0.3_up0.1.3-%RELEASE%
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: 0.1.2
|
appVersion: 0.1.3
|
||||||
dependencies:
|
dependencies:
|
||||||
- condition: crds.enabled
|
- condition: crds.enabled
|
||||||
name: lifecycle-crds
|
name: lifecycle-crds
|
||||||
repository: file://./charts/lifecycle-crds
|
repository: file://./charts/lifecycle-crds
|
||||||
version: 0.1.2
|
version: 0.1.3
|
||||||
description: A Helm chart for Upgrade Controller
|
description: A Helm chart for Upgrade Controller
|
||||||
name: upgrade-controller
|
name: upgrade-controller
|
||||||
type: application
|
type: application
|
||||||
version: "%%CHART_MAJOR%%.0.2+up0.1.2"
|
version: "%%CHART_MAJOR%%.0.3+up0.1.3"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
#!BuildTag: %%IMG_PREFIX%%upgrade-controller:0.1.2
|
#!BuildTag: %%IMG_PREFIX%%upgrade-controller:0.1.3
|
||||||
#!BuildTag: %%IMG_PREFIX%%upgrade-controller:0.1.2-%RELEASE%
|
#!BuildTag: %%IMG_PREFIX%%upgrade-controller:0.1.3-%RELEASE%
|
||||||
ARG SLE_VERSION
|
ARG SLE_VERSION
|
||||||
FROM registry.suse.com/bci/bci-micro:$SLE_VERSION AS micro
|
FROM registry.suse.com/bci/bci-micro:$SLE_VERSION AS micro
|
||||||
|
|
||||||
@@ -15,11 +15,11 @@ FROM micro AS final
|
|||||||
LABEL org.opencontainers.image.authors="SUSE LLC (https://www.suse.com/)"
|
LABEL org.opencontainers.image.authors="SUSE LLC (https://www.suse.com/)"
|
||||||
LABEL org.opencontainers.image.title="SLE Edge Upgrade Controller Container Image"
|
LABEL org.opencontainers.image.title="SLE Edge Upgrade Controller Container Image"
|
||||||
LABEL org.opencontainers.image.description="Edge Update Controller Image based on the SLE Base Container Image."
|
LABEL org.opencontainers.image.description="Edge Update Controller Image based on the SLE Base Container Image."
|
||||||
LABEL org.opencontainers.image.version="0.1.2"
|
LABEL org.opencontainers.image.version="0.1.3"
|
||||||
LABEL org.opencontainers.image.url="https://www.suse.com/solutions/edge-computing/"
|
LABEL org.opencontainers.image.url="https://www.suse.com/solutions/edge-computing/"
|
||||||
LABEL org.opencontainers.image.created="%BUILDTIME%"
|
LABEL org.opencontainers.image.created="%BUILDTIME%"
|
||||||
LABEL org.opencontainers.image.vendor="SUSE LLC"
|
LABEL org.opencontainers.image.vendor="SUSE LLC"
|
||||||
LABEL org.opensuse.reference="%%IMG_REPO%%/%%IMG_PREFIX%%upgrade-controller:0.1.2-%RELEASE%"
|
LABEL org.opensuse.reference="%%IMG_REPO%%/%%IMG_PREFIX%%upgrade-controller:0.1.3-%RELEASE%"
|
||||||
LABEL org.openbuildservice.disturl="%DISTURL%"
|
LABEL org.openbuildservice.disturl="%DISTURL%"
|
||||||
LABEL com.suse.supportlevel="%%SUPPORT_LEVEL%%"
|
LABEL com.suse.supportlevel="%%SUPPORT_LEVEL%%"
|
||||||
LABEL com.suse.eula="SUSE Combined EULA February 2024"
|
LABEL com.suse.eula="SUSE Combined EULA February 2024"
|
||||||
|
|||||||
@@ -5,9 +5,9 @@
|
|||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="exclude">.git</param>
|
<param name="exclude">.git</param>
|
||||||
<param name="revision">v0.1.2</param>
|
<param name="revision">v0.1.3</param>
|
||||||
<!-- Uncomment and set this For Pre-Release Version -->
|
<!-- Uncomment and set this For Pre-Release Version -->
|
||||||
<!-- <param name="version">0.1.2~rc1</param> -->
|
<!-- <param name="version">0.1.3~rc2</param> -->
|
||||||
<param name="versionrewrite-pattern">v(\d+).(\d+).(\d+)</param>
|
<param name="versionrewrite-pattern">v(\d+).(\d+).(\d+)</param>
|
||||||
<param name="versionrewrite-replacement">\1.\2.\3</param>
|
<param name="versionrewrite-replacement">\1.\2.\3</param>
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: upgrade-controller
|
Name: upgrade-controller
|
||||||
Version: 0.1.2
|
Version: 0.1.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Upgrade Controller
|
Summary: Upgrade Controller
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
|
|||||||
Reference in New Issue
Block a user