5ece6cd64e
Temporarily grant access to anything on HTTPS
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 22s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 13s
Unfortuantely, likely due to some conflicts in the Apache, access cannot
be granted to /images/ only, so allow anyone for now.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-08 15:30:56 +00:00
0da5de1c06
Use Apache 2.4 syntax for access control on TLS HTTP server
...
Migrate the access rules for files in the HTTPS media server instance
to the newer 2.4 syntax, matching the HTTP media server in httpd.conf
2025-08-08 10:31:26 +00:00
27af056dce
Fix a few ShellCheck reported warnings from PR #213
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 10s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 25s
The checks on the upstream project have reported some warnings to the
code accepted in PR #213 , fix them in this commit.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-07 20:20:09 +00:00
e233adfec2
Enable PreferDualStack on all the Services in the subcharts
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 1s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 4m27s
Make sure that the services are created with both IPv4 and IPv6
addresses when the cluster has been created with both IPv4 and IPv6
ranges. They will behave as single stack otherwise.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-06 17:47:00 +00:00
8617c36789
Update the URL for the BMO to connect to Ironic
...
The BMO should now connect via the provisioningHostname if set or an IP
address. Add a helper that returns the ironic hostname or correctly
formatted IP to define the ironicApiHost variable in the BMO configmap.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-06 17:47:00 +00:00
aa56c231d4
Include the hostname for SAN in Certificates
...
Recently provisioningHostname has been introduced as an alternative way
to configure the IPs to bind and respond to. This however requires that
the Certificates for HTTPS also include a dnsNames section whenver such
value is present.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-06 17:47:00 +00:00
29dd8dda17
Introduce metal3.provisioningIP template and deprecate ironicIP
...
So far ironicIP has been part of values.yaml under the global section,
however this is very misleading: this variable is internal to the Ironic
startup scripts and should not be set, moreover it conflicts with
provisioningIP, which is instead a public configuration variable for the
purpose.
This commits thus introduces the following changes:
- removes the creation of IRONIC_IP in the Ironic configmap
- does not yet remove ironicIP from values.yaml to avoid breaking
forward compatibility
- introduces a utility function to perform input validation while still
prioritizing ironicIP if present
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-06 17:47:00 +00:00
6012f480b0
Allow to change the LISTEN_ALL_INTERFACE variable for Ironic
...
It should be possible to enable or disable the environment variable
LISTEN_ALL_INTERFACE in the Ironic configmap, as it allows to the way
Ironic binds to socket, especially in combination with the changes
introduced in v29.
However, if listenOnAll is false, Ironic will bind to a specific IPv4
and/or IPv6 address and the 127.0.0.1 address used for the liveness
and readiness probe will not be accepted. Also add a named template
that, when it is set to false, picks a different host IP or address,
according to the following priority:
- ironicIP (deprecated)
- provisioningIP
- provisioningHostname
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-06 17:47:00 +00:00
110a7b1f7c
Introduce the provisioningHostname env variable in Ironic
...
Create a new provisioningHostname value in values.yaml in order to set
the new IRONIC_URL_HOSTNAME, that allows to set the address(es) Ironic
will bind to.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-06 17:30:27 +00:00
343fcd24b7
Remove unused env and helm variables
...
Since currently we can only define the provisioning network and the
external HTTP host, remove some clutter generating unused variables.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-06 17:30:26 +00:00
03d7a39ead
Allow control over IRONIC_EXTERNAL_HTTP_URL via values.yaml
...
The purpose of this commit is to:
- avoid providing IRONIC_EXTERNAL_HTTP_URL by default, as the Ironic
startup scripts will be able to derive the value from other variables
- define a new global value under the top values.yaml to generate
IRONIC_EXTERNAL_HTTP_URL when actually needed
- make sure that the input, which can either be a hostname or an IP
address, is correctly formatted in case of an IPv6.
This change also allows subsequent cleanups of the whole Configmap
template for Ironic.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-06 17:30:26 +00:00
e2d38a867c
Let Apache use separate IPv4 and IPv6 sockets for listening to any
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -9s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 10s
Enable the use of two separate sockets for IPv4 and IPv6 when
LISTEN_ALL_INTERFACES is set to true. While desirable, on Linux Apache uses
IPv4-mapped IPv6 addresses by default, thus leveraging a single IPv6 socket
for IPv4 connections as well.
This behaviour is far from being desirable and can be disabled at compile
time via the "--disable-v4-mapped" flag, so make sure both an ANY address
Listen directive is present for both IPv4 and IPv6. When Apache is compiled
with "--enable-v4-mapped", the IPv4 socket will be simply ignored.
Please see https://httpd.apache.org/docs/2.4/bind.html for more
information.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-04 14:47:42 +00:00
eecd30e90d
Update httpd.conf to bind to IPv4 and/or IPv6 sockets
...
Enable the use of individual IPv4 and IPv6 sockets when the respective
IP is detected and LISTEN_ALL_INTERFACES is not set to true. This allows
to correctly bind to both the IPv4 and IPv6 addresses found and not just
one of them.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-04 14:47:42 +00:00
fc0cfda2c0
Let Ironic API use IPv4 and IPv6 sockets when possible
...
When LISTEN_ALL_INTERFACES is not set, Apache should make Ironic API
avaiable on either or both IPv4 and IPv6 sockets, depending on the
addresses requested or found on the system.
Make sure to set the "Listen" directive according to ENABLE_IPV4 and
ENABLE_IPV4, and the VirtualHost when IRONIC_URL_HOSTNAME is present.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-04 14:47:42 +00:00
582aaaa424
Set host_ip to an IPv6 address when found
...
Prioritize IPv6 over IPv4 when available to set host_ip in ironic.conf
when LISTEN_ALL_INTERFACES is not set to true.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-04 14:47:42 +00:00
a94cde2a35
Use my_ipv6 when IRONIC_IPV6 is defined in ironic.conf
...
As per the Ironic documentation:
"This field [my_ip] does accept an IPv6 address as an override for templates
and URLs, however it is recommended that [DEFAULT]my_ipv6 is used along with
DNS names for service URLs for dual-stack environments."
Fill my_ipv6 when an IPv6 address has been found for binding.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-04 14:47:42 +00:00
ad01fecc4f
Allow binding on the provisioning network via a hostname
...
In a dual-stack scenario, especially when deploying in direct mode via
virtual media, it might be useful to 1) use a hostname to enable "dual IP"
URLs 2) have ironic bind to those two addresses, if found on the system.
To make this possible, this commit introduces:
- a new user environment variable named IRONIC_URL_HOSTNAME, to be used
as immutable external only input, to derive IRONIC_URL_HOST and the
IP addresses to bind on
- a new utility function named "get_ip_of_hostname" to help look up the
A and AAAA records
- additional logic to look for the returned address on the system, for
binding the processes; this new logic has lower priority than
PROVISIONING_IP (which can then be used to enforce one specific IP
version) and PROVISIONING_INTERFACE
Note, while IRONIC_URL_HOSTNAME and PROVISIONING_IP are considered to be
mutually exclusive, IRONIC_URL_HOSTNAME and PROVISIONING_INTERFACE are
not.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-04 14:47:42 +00:00
d59126b517
Introduce IRONIC_IPV6 to bind on IPv6 sockets
...
The ironic scripts either use PROVISIONING_IP as an input or try to
determine an IP address to bind the sockets to. This results in
IRONIC_IP being defined once the process is complete, and it can carry
either an IPv4 or an IPv6 address.
Likely, the assumption is that on Linux, by default, IPv4-mapped IPv6
addresses can be leveraged to serve both IPv4 and IPv6 through a single
socket. However this is not a good practice and two separate sockets
should be used instead, whenever possible.
This change modifies such logic by
- introducing the variable IRONIC_IPV6 alongside the existing
- matching IRONIC_IP and attempting to populate both variables
Please note that hostname based URLs, with both A and AAAA records, are
also required for a fully working dual-stack configuration.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-04 14:47:42 +00:00
19394a8b03
Revert 2742439 being now redundant
...
Commit 2742439 added logic to tentatively identify the interface name
in get_provisioning_interface if the PROVISIONING_IP is provided.
However the same process in then repeated in wait_for_interface_or_ip.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-04 14:47:42 +00:00
ca7da400d0
Leverage get_interface_of_ip to look PROVISIONING_IP up
...
Use the previously introduced get_interface_of_ip, to determine if the
PROVISIONING_IP address is actually present on a network interface.
This improves the code readability and enables additional debugging
output.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-04 14:47:42 +00:00
c69044ff2b
Add two new utility functions for later refactoring
...
The way the ironic-image processes are bound to internet sockets is mainly
by PROVISIONING_IP or PROVISIONING_INTERFACE, that is, by looking up a
specific address on an interface, or a specific interface for a workable
address.
Introduce two new utility functions in ironic-common.sh for these two
purposes:
get_interface_of_ip: returns the name of the interface where the IP address
provided as argument is found
get_ip_of_interface: returns the first IP associated to the interface
provided as argument
These two functions will be put into use in subsequent commits.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-04 14:47:42 +00:00
60f0bdd5f0
Remove PROVISIONING_INTERFACE default for better validation
...
Whenever PROVISIONING_INTERFACE is not set by the user, function
get_provisioning_interface attempts to determine one, or provide
"provisionign" as default value. However this can cause confusing errors
down the line.
Remove this default value and fail gracefully, with proper logging,
if the PROVISIONING_INTERFACE value is not detected.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-04 14:47:42 +00:00
4e4f9e591a
Simplify the setting of host_ip in ironic.conf
...
The value of host_ip is determined twice within the ironic.conf.j2 template
file, by means of a relatively hard to read set of conditions.
Avoid this duplication and improve readability by exporting the correct
value once in scripts/configure-ironic.sh. This also leave more room for
more complex evaluations should these be needed in the future.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-08-04 14:47:42 +00:00
e-minguez
51b082a3f1
feat: Package pyhelm3 as requirement for c-v
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -6s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 35s
2025-07-30 11:29:22 +02:00
d45c9764a4
release-manifest: Update rancher-turtles versions
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 9s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 10s
2025-07-29 14:52:29 +03:00
efd8bf1075
rancher-turtles-airgap-resources: Update to 0.21.0
...
Updates to align with rancher-turtles chart
This also overides the RKE2 provider version to 0.18.0 so we can consume
recent fixes, in particular rancher/cluster-api-provider-rke2#684
2025-07-29 13:24:47 +03:00
892400cea7
rancher-turtles: Update 0.21.0
...
Also update CAPI operator and CAPM3 versions
This also overides the RKE2 provider version to 0.18.0 so we can consume
recent fixes, in particular rancher/cluster-api-provider-rke2#684
2025-07-29 13:24:47 +03:00
ff1b390d09
Merge pull request 'Add pre-commit to update release manifest' ( #211 ) from nbelouin/Factory:pre-commit-manifest into main
...
Synchronize Project Metadata / sync-prj-meta (push) Successful in 1s
Reviewed-on: #211
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
2025-07-29 11:27:57 +02:00
c3f1be5640
Add pre-commit to update release manifest
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -3s
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 1m15s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-07-29 11:26:16 +02:00
e021cfa92f
Merge pull request 'Upgrade to SLE 15.7 base and bump Ironic to use 2025.1 version' ( #214 ) from nbelouin/Factory:15.7-upgrade into main
...
Synchronize Project Metadata / sync-prj-meta (push) Successful in -1s
Synchronize Project Config / Update prjconf in OBS (push) Successful in 21s
Reviewed-on: #214
Reviewed-by: Marco Chiappero <mchiappero@noreply.src.opensuse.org >
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
2025-07-29 11:20:48 +02:00
5f0d0b019e
Merge pull request 'Align config files and scripts with upstream (v29.0.0)' ( #205 ) from mchiappero/Factory:alignment-v29.0.0 into main
...
Reviewed-on: #205
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-07-29 11:19:21 +02:00
dc254aa461
Bump metal3-chart
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -3s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -2s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-07-29 11:01:52 +02:00
62f9faf144
Align configure-nonroot.sh
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -3s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 11s
Try to reuse as much as possible of the upstream configure-nonroot.sh
Co-authored-by: Nicolas Belouin <nicolas.belouin@suse.com >
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-28 10:36:37 +00:00
8164b5f125
Adopt the new readiness/liveness probes
...
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-28 10:36:37 +00:00
5f6e0185f5
Make the new scripts executable
...
v29.0.0 add a couple of new scripts, such as ironic-probe.sh; make sure
they have the 'executable' flag.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-28 10:36:37 +00:00
57dca6f0a4
Remove unused prometheus exporter
...
The Prometheus exporter is effectively, not only unused, but
unusable, due to missing dependencies. Since currently we
don't have use case for it, opt for dropping the exporter
entirely from the image.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-28 10:36:37 +00:00
54bf2edf7b
Force the use of Python 3.11
...
SLE 15.6 provides Python 3.11, make sure it's enforced.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-28 10:36:37 +00:00
9c60855914
Update the destination path of Jinjia templates
...
Previously .j2 files used to be copied to /etc before being
instantiated. In order to make the image potentially read only,
move the templates to /tmp.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-28 10:36:37 +00:00
bc1d924cc6
Disable the network schema check to allow for nmstate definitions
...
Bypass the OpenStack network-data format validation, to allow for the
nmstate based one we instead use (which would otherwise fail).
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-28 10:36:37 +00:00
2f4f94238f
Do not force ipa-insecure=1, use env variable instead
...
Allow the use of https, force it to 1 via the IPA_INSECURE environment
variable only TLS is disabled.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-28 10:36:36 +00:00
dae0b33326
Use arch specific ESP img
...
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-28 09:26:00 +00:00
4e4231b39e
Use arch specific file for IPA
...
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-28 09:26:00 +00:00
c9f13a514a
Use arch named IPA file in IMAGE_CACHE_PREFIX
...
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-28 09:26:00 +00:00
f8f730087f
Change GRUB path in ironic.conf
...
Correct path for grub.cfg on a SUSE system.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-28 09:26:00 +00:00
7c0423ee04
Use ironic-suse user/group in Apache for API
...
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-28 09:26:00 +00:00
0358093370
Use ironic-suse user/group in Apache for media
...
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-28 09:26:00 +00:00
a69e54a6df
Use correct paths and modules for Apache
...
Correct the path of the Apache modules for a SUSE image.
Also keep a couple of modules disabled.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-28 09:26:00 +00:00
65201fd575
Align to v29.0.0
...
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-28 09:26:00 +00:00
2adc97e581
Removing BuildVersion, bump ironic-image version
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 10s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 26m54s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-07-25 12:01:43 +02:00
ed4448d7a6
Merge pull request 'add release images file to the release container' ( #212 ) from amorgante/Factory:add-release-images into main
...
Reviewed-on: #212
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-07-24 16:32:52 +02:00
6251d8b670
ironic-image: remove obsolete packages
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 1s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 33m15s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-07-24 13:44:12 +02:00
3a98fe8f00
Update to SLE 15.7 and OpenStack 2025.1
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-07-24 13:44:12 +02:00
f9df52a457
add release images file to the release container
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 3s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 1s
2025-07-24 09:32:28 +02:00
9bcffd112d
Merge pull request 'Fix missing paths changes in condition' ( #209 ) from fix-ipa-paths into main
...
Reviewed-on: #209
Reviewed-by: Kristian Zhelyazkov <kzhelyazkov@noreply.src.opensuse.org >
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
2025-07-11 15:32:03 +02:00
83b660285a
Fix missing paths changes in condition
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 12s
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 1m0s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-07-11 15:31:07 +02:00
f23003c01f
Bump minor version in ironic-image and metal3-chart
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m53s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -1m51s
Update metal3-chart to include the following ironic and ipa downloader
changes:
#196
#198
#199
#200
#201
#203
#204
#207
#208
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-10 20:29:22 +00:00
4b9928ccdf
metal3-chart: cleanup ironic-bmo ConfigMap
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 10s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 12s
Apparently the ironic-bmo ConfigMap used to be shared with both Ironic
and the BareMetalOperator. Since it is no longer the case and many
variables are not used by Ironic, remove them.
Also, rename the ConfigMap, so that it is clearer it is for Ironic only.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-10 19:55:43 +00:00
df55d2abd4
Bump versions
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m40s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -1m40s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-07-10 15:41:30 +02:00
214a65f2db
Remove duplicate files from image to make it lighter
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-07-10 15:37:02 +02:00
d00b6ece5f
Move the copy of Jinja templates to resemble upstream
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 10s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 12s
Follow the same location for the COPY command moving the Jinja template
files in the image.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-07 21:49:15 +00:00
67f63aadc7
Remove stale file entries for old BIOS based machines
...
Two entries pointing to old and unesed files for non UEFI servers seem
to be unused both here and upstream, so this commit removes them.
2025-07-07 21:49:15 +00:00
f88e75a724
Apply misc changes to Dockerfile to align with upstream
...
Having a completely different image and build system the Dockerfile will
always differ quite significantly from the upstream one. Nonetheless,
it's still useful to make the commont parts to look alike as much as
possible to ease maintanance and update.
Note, this is just a small set of changes that are possible, more effort
into this direction may follow at later stage.
2025-07-07 21:49:13 +00:00
ef6989b0d8
Restore the upstream directory structure
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m50s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 18s
It is now possible to bring back the original directory structure for
config (/ironic-config) files and scripts (/scripts). This will make
updates to re-align with upstream easier.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-07 21:45:39 +00:00
b2ca623d14
Remove unused prometheus exporter
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m49s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -1m35s
The Prometheus exporter is effectively, not only unused, but
unusable, due to missing dependencies. Since currently we
don't have use case for it, opt for dropping the exporter
entirely from the image.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-07 13:12:16 +00:00
53c16ce7c9
Drop inotify-tools and switch to pyinotify
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m45s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -1m7s
No longer inotifywait use and move to python pyinotify.
See https://github.com/metal3-io/ironic-image/issues/605 for
more details.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-03 12:47:31 +00:00
e55bf1ab63
Fix incorrect ArchExclusiveLine OBS directive
...
One Docker specific OBS directive, ArchExclusiveLine, is incorrectly
testing for x86 instead of aarch64, likely due to a copy-and-paste
error. Change the architecture for that RUN command.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-07-03 11:20:37 +02:00
4f71473b0a
Fix wrong indentation in Dockerfile
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 26s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -1m30s
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-06-30 14:52:10 +00:00
e20624cf98
Remove unused files as a single process/service is used
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m36s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -1m15s
Revision 7 from isv:SUSE:Edge:Metal3:Ironic:2024.2 introduced
significant changes on how Ironic is run, by having only a single Apache
instance running the API, and conductor and inspector no longer use IP
sockets. However while porting this change to Factory some files have
not been removed here, so remove no longer used files to keep this
repository up to date.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-06-26 10:37:24 +00:00
afba5dedef
Merge pull request 'metal3: Upgrade Mariadb' ( #194 ) from nbelouin/Factory:mariadb-upgrade into main
...
Reviewed-on: #194
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
Reviewed-by: Marco Chiappero <mchiappero@noreply.src.opensuse.org >
2025-06-19 09:51:22 +02:00
5cbf832b02
Update versions for metal3-chart
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m20s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 1m36s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-06-16 14:37:30 +02:00
7cf1b8ea26
Fix upgrade issue
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-06-16 14:37:30 +02:00
83b44c9bc7
Bump mariadb chart
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-06-16 14:37:29 +02:00
a7cb23a9c1
Merge pull request 'Fix _config to correctly publish arm64 kiwi builder' ( #193 ) from nbelouin/Factory:arm64-kiwi into main
...
Synchronize Project Config / Update prjconf in OBS (push) Successful in -27s
Synchronize Project Metadata / sync-prj-meta (push) Successful in 1m8s
Reviewed-on: #193
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
2025-06-12 14:05:06 +02:00
07505665e4
Fix _config to correctly publish arm64 kiwi builder
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m12s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -24s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-06-12 09:23:20 +02:00
13b18090d0
Merge pull request 'kiwi-builder-image: Remove failure if package version mismatch' ( #184 ) from nbelouin/Factory:fix-kiwibuilder-image into main
...
Reviewed-on: #184
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
2025-06-10 13:31:13 +02:00
22947d9847
Merge pull request 'Remove additional tag without the _up suffix from UI extension charts' ( #181 ) from jtomasek/Factory:remove-tags-extensions into main
...
Reviewed-on: #181
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-06-10 13:24:11 +02:00
3d087070a7
Merge pull request '[3.3.1] - bump turtles airgap version to align with the other turtle chart version' ( #188 ) from dprodanov/Factory:turtles-airgap into main
...
Reviewed-on: #188
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
2025-06-10 13:18:03 +02:00
9bc3066279
[3.3.1] - bump turtles airgap version to align with the other turtle chart version
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m20s
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 42m48s
2025-06-10 13:34:25 +03:00
ec4c51d003
Merge pull request 'Bump ECO version to v0.3.0' ( #169 ) from bump-eco-to-030 into main
...
Reviewed-on: #169
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-06-10 11:34:24 +02:00
70ff1fdd31
Merge pull request 'EIB updates for 1.2.1' ( #185 ) from update-eib into main
...
Reviewed-on: #185
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-06-10 11:26:13 +02:00
ce6519f470
Merge pull request 'bump uc and turtles version as a follow up of the kubectl image bump' ( #183 ) from dprodanov/Factory:bump-charts into main
...
Reviewed-on: #183
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-06-10 11:15:58 +02:00
0ccade5817
EIB updates for 1.2.1
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m19s
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 46m10s
2025-06-10 11:12:08 +02:00
87f163939c
kiwi-builder-image: Remove failure if package version mismatch
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 14s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -1m19s
Remove the automatic failure if repo package and base image are
mismatched.
This is needed to prevent automation from failing when updated base
image doesn't exists.
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-06-10 11:04:11 +02:00
f0d7ede6e0
bump uc and turtles version as a follow up of the kubectl image bump
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m18s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -1m18s
2025-06-10 11:35:02 +03:00
aa677745a8
Bump ECO version to v0.3.0
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m19s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 13s
2025-06-10 11:23:58 +03:00
08797b0030
Merge pull request 'release-manifest: fix version' ( #180 ) from dprodanov/Factory:fix-versions into main
...
Reviewed-on: #180
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-06-10 09:56:50 +02:00
8b37096c3a
Remove additional tag without the _up suffix from UI extension charts
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m19s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -1m18s
The issue https://github.com/rancher/rancher/issues/48746 which
required this workaround has been fixed and backported to Rancher
2.11.2 so the additional tags are no longer needed.
2025-06-10 09:50:04 +02:00
6ca1cc0ded
fix RM version
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m19s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -1m17s
2025-06-10 10:47:15 +03:00
fc24747ee5
Merge pull request '[3.4.0] - create release manifest' ( #177 ) from dprodanov/Factory:release-3-4-0 into main
...
Synchronize Project Metadata / sync-prj-meta (push) Successful in -1m16s
Reviewed-on: #177
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-06-10 09:34:37 +02:00
9c2d445b06
Merge pull request 'create new kubectl image' ( #178 ) from dprodanov/Factory:kubectl-1.32.4 into main
...
Reviewed-on: #178
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-06-10 09:34:06 +02:00
e5de658ae9
create new kubectl image
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 11s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 12s
2025-06-09 17:25:39 +03:00
8cc06f4ccb
[3.4.0] - create release manifest
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 11s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -1m17s
2025-06-09 11:22:25 +03:00
9dc5ba4c52
release-manifest: 3.3.1 version bumps
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 16s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -1m13s
Updates to consume the latest patch releases from Rancher, RKE2/k3s
and Neuvector
2025-06-05 14:55:42 +01:00
f92f3600e6
release-manifest: update rancher-turtles version
2025-06-04 17:05:22 +02:00
e379d5df4e
rancher-turtles-airgap-resources: Updates for 0.20.0
...
To align with https://github.com/suse-edge/charts/pull/221
2025-06-04 17:05:22 +02:00
346d6137fe
rancher-turtles-chart: Updates for 0.20.0
...
To align with https://github.com/suse-edge/charts/pull/221
2025-06-04 17:05:22 +02:00
1f36228510
Merge pull request 'Fix metal3 chart' ( #172 ) from nbelouin/Factory:metal3-chart-fixes into main
...
Reviewed-on: #172
Reviewed-by: Marco Chiappero <mchiappero@noreply.src.opensuse.org >
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
2025-06-04 11:26:57 +02:00
ec7da715f4
Fix metal3 chart issues
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m12s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -1m10s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-06-04 10:43:46 +02:00
1ad6c99257
metal3-chart: fixup remove forgotten file
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-06-04 10:43:19 +02:00
12e91c2102
Bump EIB tag to 1.2.0.1
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -57s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -1m11s
Follow up to #166 which bumped NMC and the related IPA downloader image,
we also need to bump EIB since it also consumes the updated NMC version
2025-05-29 10:02:32 +01:00
6fb80441cd
Merge pull request 'metal3: Add a hook to BMO start to ensure it restarts on ironic CA change' ( #165 ) from nbelouin/Factory:try-bmo-fix into main
...
Reviewed-on: #165
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
2025-05-27 13:31:41 +02:00
93a5f6813d
Merge pull request 'Bump NM-Configurator to v0.3.3' ( #166 ) from nbelouin/Factory:nmc-bump into main
...
Reviewed-on: #166
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
2025-05-27 13:31:03 +02:00
bdaa422813
Bump ipa ramdisk version for nm-config fix
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m7s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -59s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-05-27 12:39:36 +02:00
c25bf622bc
Bump nm-configurator to 0.3.3
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-05-27 12:39:36 +02:00
fa57d15ff9
Merge pull request 'Fix issues with config and meta when releasing' ( #167 ) from nbelouin/Factory:fix-conf into main
...
Synchronize Project Config / Update prjconf in OBS (push) Successful in -1m13s
Synchronize Project Metadata / sync-prj-meta (push) Successful in 12s
Reviewed-on: #167
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
2025-05-27 12:38:58 +02:00
1a29da28ca
update release-manifest
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m6s
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 58m51s
2025-05-27 13:32:58 +03:00
f2d39a7025
Fix issues with config and meta when releasing
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in -1m6s
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 29m22s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-05-27 12:09:12 +02:00
629e96dded
Add annotations to force rollout of pods on config change
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Failing after -55s
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 48m39s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-05-27 10:49:09 +02:00
c190a1c800
Add bmo inotify hook
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-05-27 10:42:26 +02:00
be87fb0fc6
Merge pull request 'fix typo in network-operator' ( #162 ) from dprodanov/Factory:fix-typo into main
...
Reviewed-on: #162
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-05-20 15:38:19 +02:00
01dfdc5fd9
fix typo in network-operator
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 8s
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after -3s
2025-05-20 16:37:01 +03:00
90ce8e165c
release-manifest-image: Update NeuVector Extension to 2.1.3
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 14s
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 4m51s
Chart: https://github.com/rancher/ui-plugin-charts/blob/main/charts/neuvector-ui-ext/2.1.3/Chart.yaml
Release: https://github.com/neuvector/manager-ext/releases/tag/neuvector-ui-ext-2.1.3
2025-05-20 09:51:44 +02:00
ad68a91755
Merge pull request 'Fix rancher turtles airgap chart prefix' ( #158 ) from nbelouin/Factory:fix_turtles_airgap_prefix into main
...
Reviewed-on: #158
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
2025-05-16 14:03:38 +02:00
c37782e077
Fix rancher turtles airgap chart prefix
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 15s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 10s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-05-16 13:12:18 +02:00
71257047ed
Merge pull request 'Fix udev rule in IPA image and bump the metal3 chart to 0.11.3' ( #157 ) from mchiappero/Factory:metal3-0.11.3 into main
...
Reviewed-on: #157
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-05-16 09:56:06 +02:00
477a4e15eb
metal3-chart: bump version to include IPA image 3.0.6
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 15s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 11s
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-05-16 07:22:27 +00:00
be0d25d8f7
ironic-ipa-downloader-image: update to the latest 3.0.6 image
...
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-05-15 16:35:30 +00:00
70a42948aa
ironic-ipa-ramdisk: make sure the udev rule is also matched on changes
...
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-05-15 16:31:13 +00:00
fb0f99ee20
Merge pull request 'add a tool to check local charts version in release manifest' ( #149 ) from nbelouin/Factory:check_manifest into main
...
Reviewed-on: #149
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
2025-05-15 16:59:56 +02:00
cc8d3fe431
add a tool to check local charts version in release manifest
...
Check Release Manifest Local Charts Versions / Check Release Manifest Local Charts Versions (pull_request) Successful in 8s
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 12s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-05-15 16:50:32 +02:00
4ee8e8c6f2
Merge pull request 'akri-dashboard-extension-chart: update to version 303.0.2+up1.3.1' ( #156 ) from jtomasek/Factory:akri-dashboard-extension-chart-303.0.2+up1.3.1 into main
...
Reviewed-on: #156
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-05-15 16:47:54 +02:00
79268b8e71
Merge pull request 'kubevirt-dashboard-extension-chart: update to version 303.0.2+up1.3.2' ( #155 ) from jtomasek/Factory:kubevirt-dashboard-extension-chart-303.0.2+up1.3.2 into main
...
Reviewed-on: #155
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-05-15 16:10:53 +02:00
d5e487518a
akri-dashboard-extension-chart: update to version 303.0.2+up1.3.1
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 12s
2025-05-15 14:35:35 +02:00
a7d128b8c4
updated sriov images
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 16s
2025-05-15 14:06:32 +02:00
d97b554f8c
kubevirt-dashboard-extension-chart: update to version 303.0.2+up1.3.2
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 11s
2025-05-15 13:27:08 +02:00
1ca6ea51ea
release-manifest-image: update rancher-turtles version
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -54s
2025-05-15 12:05:06 +03:00
c9b9e2223b
rancher-turtles-airgap-resources-chart: align with 0.8.1
2025-05-15 11:55:40 +03:00
027df1b35c
rancher-turtles-chart: Updates to align with 0.8.1
...
Align with https://github.com/suse-edge/charts/pull/214 so we can
consume the RKE2 provider bugfix
2025-05-15 11:40:30 +03:00
e7448eeb1c
Merge pull request 'Update to official EIB v1.2.0 tag' ( #151 ) from dbekhit/Factory:main into main
...
Reviewed-on: #151
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-05-13 17:34:14 +02:00
fb4d399f0f
update to official EIB v1.2.0 tag
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 10s
2025-05-13 10:35:41 -04:00
f47b6df822
Merge pull request 'Reduce the size of the IPA ramfs' ( #147 ) from nbelouin/Factory:ipa-explode-rootfs into main
...
Reviewed-on: #147
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
Reviewed-by: Marco Chiappero <mchiappero@noreply.src.opensuse.org >
2025-05-13 14:13:00 +02:00
4e3f1b61fd
Use up to date rootfs
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 18s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-05-13 11:13:24 +02:00
df60bb2ed3
Fix get-resource.sh for single arch images
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 2m53s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-05-12 13:52:00 +02:00
3a654b9826
rancher-turtles: updates for 0.19.0
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -40s
2025-05-09 18:25:21 +01:00
15e4de98a7
Bump versions
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 17m44s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-05-09 16:06:28 +02:00
fe8d0ba120
rancher-turtles-airgap-resources: Updates for 0.19.0
2025-05-09 15:05:52 +01:00
0b431c75e2
Try reduce image size
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-05-09 16:01:04 +02:00
a59e253ecd
Try exploding the tarball
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-05-09 16:01:02 +02:00
b28f7a5817
Merge pull request 'Update the metal3-chart to fix the IPA ramdisk with multiple config-2 drives' ( #145 ) from mchiappero/Factory:metal3_0.11.1 into main
...
Reviewed-on: #145
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-05-09 15:58:42 +02:00
c6b78eb569
Update metal3-chart to leverage IPA downloader 3.0.4
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 1m20s
Change the version of the metal3-chart include the latest IPA fixes,
and update the release manifest accordingly.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-05-09 12:18:07 +00:00
8f7747415c
Update the IPA ramdisk and downloader to 3.0.4
...
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-05-09 12:17:44 +00:00
e5ba38d02f
Merge pull request '[3.3.0] - update sriov chart' ( #148 ) from dprodanov/Factory:sriov-update into main
...
Reviewed-on: #148
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-05-09 11:52:57 +02:00
f221cf4b37
[3.3.0] - update sriov chart
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 13s
2025-05-09 12:29:17 +03:00
f42ac11716
Merge pull request 'Do a multibuild for IPA image so we also have lighter single architecture images' ( #130 ) from nbelouin/Factory:ipa-multibuild into main
...
Reviewed-on: #130
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
2025-05-09 10:18:34 +02:00
08ef2fe86f
Merge pull request '[3.3.0] - update cdi version' ( #144 ) from dprodanov/Factory:cdi-update into main
...
Reviewed-on: #144
Reviewed-by: Kristian Zhelyazkov <kzhelyazkov@noreply.src.opensuse.org >
2025-05-08 10:38:32 +02:00
ad221cd94e
Merge pull request '[3.3.0] - update kubevirt and sriov in release-manifest' ( #143 ) from dprodanov/Factory:release-manifest-update into main
...
Reviewed-on: #143
Reviewed-by: Kristian Zhelyazkov <kzhelyazkov@noreply.src.opensuse.org >
2025-05-08 10:38:26 +02:00
81a856e586
Merge pull request '[3.3.0] - update sriov to 1.5.0' ( #142 ) from dprodanov/Factory:sriov-1-5-0 into main
...
Reviewed-on: #142
Reviewed-by: Kristian Zhelyazkov <kzhelyazkov@noreply.src.opensuse.org >
2025-05-08 10:38:09 +02:00
3c9ebbd7ef
[3.3.0] - update sriov to 1.5.0
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -36s
2025-05-08 10:47:37 +03:00
03018e5cd1
[3.3.0] - update cdi version
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 9s
2025-05-07 20:03:45 +03:00
e91096e13e
[3.3.0] - update kubevirt and sriov in release-manifest
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 9s
2025-05-07 19:44:16 +03:00
93f3abfeb5
Do a multibuild for IPA image so we also have lighter single architecture images
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 14s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-05-07 14:33:32 +02:00
2c4991cb24
Update versions for 3.3
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 10s
Rancher prime 2.11.1 was released, so align with that and
updated Longhorn/Neuvector/Elemental and Metal3 charts
2025-05-06 15:34:15 +01:00
e71339ae00
Merge pull request 'Updates for EIB 1.2.0-rc1' ( #126 ) from dbekhit/Factory:main into main
...
Reviewed-on: #126
Reviewed-by: Fatih Degirmenci <fdegirmenci@noreply.src.opensuse.org >
2025-05-06 14:36:44 +02:00
f32718b5e4
Merge pull request 'Enable kubectl image on aarch64' ( #140 ) from nbelouin/Factory:kubect-aarch64 into main
...
Synchronize Project Config / Update prjconf in OBS (push) Successful in -53s
Synchronize Project Metadata / sync-prj-meta (push) Successful in 11s
Reviewed-on: #140
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
Reviewed-by: Fatih Degirmenci <fdegirmenci@noreply.src.opensuse.org >
2025-05-06 14:33:40 +02:00
c81f5057ce
Enable kubectl image on aarch64
...
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 13m7s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-05-06 14:18:52 +02:00
6b8109c772
Merge pull request 'Remove extra slash in image reference' ( #139 ) from nbelouin/Factory:fix-slash-typo into main
...
Reviewed-on: #139
Reviewed-by: Fatih Degirmenci <fdegirmenci@noreply.src.opensuse.org >
2025-05-06 14:10:04 +02:00
8b383c15fa
Remove extra slash in image reference
...
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 29m5s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-05-06 13:39:45 +02:00
2013caec19
Merge pull request 'Add checks (lint) for helm charts and images' ( #128 ) from nbelouin/Factory:lint into main
...
Synchronize Project Config / Update prjconf in OBS (push) Successful in -46s
Synchronize Project Metadata / sync-prj-meta (push) Successful in 19s
Reviewed-on: #128
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
2025-05-06 10:00:12 +02:00
4259b167fd
update to v1.2.0-rc1
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -47s
2025-05-02 11:16:43 -04:00
652fc553b9
Remove -chart suffixes
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -37s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-04-30 16:42:54 +02:00
1048591769
Fix charts and images
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-04-30 16:42:54 +02:00
8a9717c266
Add initial checks
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-04-30 16:42:54 +02:00
49405f41f9
EIB v1.2.0-rc0 needs golang 1.124
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 1h6m20s
2025-04-30 16:26:27 +02:00
be29dbba41
Fix the _service file to use the defined pre-release version
2025-04-30 16:26:27 +02:00
a2c817259f
modify '-' to '~'
2025-04-30 16:26:27 +02:00
dfe4892f4c
changes for EIB 1.2.0-rc0
2025-04-30 16:26:27 +02:00
ef68dbfd92
Merge pull request 'Fix some issue with dependency projects ordering, make _config only build wanted packages' ( #137 ) from nbelouin/Factory:fix-meta-config into main
...
Synchronize Project Config / Update prjconf in OBS (push) Successful in 4s
Synchronize Project Metadata / sync-prj-meta (push) Successful in -31s
Reviewed-on: #137
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
2025-04-30 15:27:09 +02:00
6c1db68da8
Fix some issue with dependency projects ordering, make _config only build wanted packages
...
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 21m52s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-04-30 14:51:17 +02:00
376ec896fe
Add kubevirt-dashboard-extension-chart version 303.0.1+up1.3.1
2025-04-29 17:41:05 +02:00
a473d935f9
Merge pull request 'Add support for uEFI aarch64 images without rpi config as default' ( #135 ) from roxenham/Factory:aarch64-uefi into main
...
Reviewed-on: #135
Reviewed-by: Alberto Morgante Medina <amorgante@noreply.src.opensuse.org >
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-04-29 16:33:27 +02:00
27aa096244
Add support for uEFI aarch64 images without rpi config as default
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -39s
Previously, the default model for aarch64 raw disk images assumes that
you're deploying on Raspberry Pi, and not standard aarch64 systems. This
meant that all raw disk images were built with RPi firmware, and an MBR
boot record, which made it incompatible with systems that require uEFI/GPT
compatibility, especially with Edge Image Builder and Metal3/CAPI deployment
usage.
This PR introduces the following changes:
* Introduces new `Default-RPi` and `Base-RPi` profiles for compatibility with RPi users
* Forces `Base` and `Base-RT` profiles to use GPT based images (not MBR)
* Introduces a new `Base-RT-RPi` profile for kernel-rt on RPi (with MBR)
* Removes Raspberry Pi firmware packages from anything other than RPi profiles
* Modifies the `editbootinstall_rpi.sh` script to support container builds
* Adds policycoreutils-python-utils to the list of packages (for semanage)
See: https://bugzilla.suse.com/show_bug.cgi?id=1240619
2025-04-29 14:54:54 +01:00
3f968b0a06
Add akri-dashboard-extension-chart version 303.0.1+up1.3.0
2025-04-29 15:18:11 +02:00
481d7e90b4
Merge pull request 'update kiwi-builder to use kiwi version as build macro' ( #129 ) from dirkmueller/Factory:main into main
...
Synchronize Project Metadata / sync-prj-meta (push) Successful in 11s
Synchronize Project Config / Update prjconf in OBS (push) Successful in -38s
Reviewed-on: #129
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
2025-04-28 16:08:49 +02:00
Dirk Müller
cb70d25886
Remove MAINTAINER statement
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 10s
this is deprecated and already in oci.authors
2025-04-23 19:10:50 +02:00
Dirk Müller
04937b90b7
build the kiwi-image in an images_16.0 repository
2025-04-23 19:10:50 +02:00
Dirk Müller
ef256bc1d7
make version mismatches fatal
2025-04-23 19:10:50 +02:00
Dirk Müller
437b0fdc41
update README as well
...
Although this file seems to be unused?
2025-04-23 19:10:50 +02:00
Dirk Müller
0dbc0f8b52
Ensure kiwi versions and build tags actually align
2025-04-23 19:10:47 +02:00
Dirk Müller
3adc816d98
Remove no longer necessary workaround
2025-04-22 17:58:10 +02:00
5883bf7549
Merge pull request '[3.3] - bump nm configurator rpm to 0.3.2' ( #122 ) from dprodanov/Factory:nm-configurator-0-3-2 into main
...
Reviewed-on: #122
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-04-15 13:50:00 +02:00
ba5ed09bd8
Merge pull request '[3.3.0] kubevirt update to 0.5.0' ( #116 ) from dprodanov/Factory:kubevirt-0-5-0 into main
...
Reviewed-on: #116
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-04-15 13:49:44 +02:00
b91c34b6c3
[3.3] - bump nm configurator rpm to 0.3.2
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 10s
[3.3] - bump nm config to 0.3.2
use lfs
2025-04-15 11:05:35 +03:00
b2e4b5e259
Merge pull request 'Enable aarch64 build for kiwi-builder-image' ( #120 ) from nbelouin/Factory:enable-kiwi-arm into main
...
Synchronize Project Config / Update prjconf in OBS (push) Successful in 4s
Synchronize Project Metadata / sync-prj-meta (push) Successful in -11s
Reviewed-on: #120
Reviewed-by: Fatih Degirmenci <fdegirmenci@noreply.src.opensuse.org >
2025-04-09 13:16:51 +02:00
e3f36b74d9
Enable aarch64 build for kiwi-builder-image
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 10s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-04-09 11:13:58 +02:00
2b020e9bd7
Merge pull request 'Install both ramdisks in the ipa downloader' ( #84 ) from nbelouin/Factory:multi-arch-ipa into main
...
Synchronize Project Config / Update prjconf in OBS (push) Successful in -23s
Synchronize Project Metadata / sync-prj-meta (push) Successful in 15s
Reviewed-on: #84
Reviewed-by: Alberto Morgante Medina <amorgante@noreply.src.opensuse.org >
2025-04-03 15:36:01 +02:00
98fa8835f7
Install both ramdisks in the ipa downloader
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 18s
- Make the different ipa-ramdisk packages installable side by side
- Clean the ipa-downloader Dockerfile from what seems to be unneeded
- Get both images in
- Use zstd instead of xz for better speed
- Check sums before redoing certs integration
- Add value to metal3 chart to select between architectures
- Get the two ESP available as well
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-04-03 15:34:29 +02:00
5f52392aa3
Merge pull request 'Change trigger_devel workflow to midday every week day' ( #94 ) from fdegirmenci/suse-edge-factory:trigger-devel-midday-weekdays into main
...
Reviewed-on: #94
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-03-31 09:33:19 +02:00
083c753a0d
[3.3.0] kubevirt update to 0.5.0
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 16s
2025-03-24 15:46:23 +02:00
48472176f2
metal3-chart: Remove stale files
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 12s
Trigger Devel Packages / Trigger source services for devel packages that changed (push) Successful in 6s
I missed this in #88 - we need to remove these template files to align with
00421ca826
2025-03-24 13:32:49 +00:00
53f09dd00f
Update kubevirt-dashboard-extension-chart to v302.0.0+up1.2.1
2025-03-24 12:09:44 +01:00
c610436551
Fix IPA Downloader version, bump to 3.0.2
...
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 52m14s
Update the Dockerfile to be aligned with the IPA ramdisk and metal3
Chart.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-03-24 09:09:32 +00:00
3d1a70e87a
rancher-turtles-chart: remove stale file
...
Trigger Devel Packages / Trigger source services for devel packages that changed (push) Successful in 7s
This was removed in the 0.17.0 chart but I didn't notice when rebasing
2025-03-21 17:24:45 +01:00
e439f489ca
Bump Metal3 version
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -3s
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-03-21 14:05:19 +00:00
8e56e1edd3
Update the IPA ramdisk to 3.0.2
...
Force nmc to run before NetworkManager to avoid race conditions
that can lead to undetermined network configuration.
Signed-off-by: Marco Chiappero <marco.chiappero@suse.com >
2025-03-21 14:05:19 +00:00
2a3c37b31d
release-manifest: update rancher-turtles version
...
Update to 0.17.0 chart
2025-03-21 14:38:06 +01:00
eacabe4d71
rancher-turtles-chart: Update to 0.17.0
...
Aligns with https://github.com/suse-edge/charts/pull/193
2025-03-21 14:38:06 +01:00
d57078f9d9
rancher-turtles-airgap-resources-chart: Update to 0.17.0
...
Aligns with: https://github.com/suse-edge/charts/pull/193
2025-03-21 14:38:06 +01:00
fef712e4e8
Update akri-dashboard-extension-chart to v302.0.0+up1.2.1
2025-03-21 14:36:49 +01:00
2b194211ee
Upgrade Hauler to v1.2.1 and add version to build ( #92 )
...
Synchronize Project Config / Update prjconf in OBS (push) Successful in -9s
Synchronize Project Metadata / sync-prj-meta (push) Successful in 1s
Trigger Devel Packages / Trigger source services for devel packages that changed (push) Successful in 1m6s
Reviewed-on: #92
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
Co-authored-by: dbw7 <danial.bekhit@suse.com >
Co-committed-by: dbw7 <danial.bekhit@suse.com >
2025-03-20 20:28:44 +01:00
a3fda4c5c0
Merge pull request 'Fix FRR-k8s versiobn' ( #105 ) from kzhelyazkov/Factory:fix-frr-rbac-image into main
...
Reviewed-on: #105
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
2025-03-20 15:31:37 +01:00
3c08af8a28
Fix FRR-k8s versiobn
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 1m6s
2025-03-20 16:30:17 +02:00
a1583230bd
Merge pull request 'Add metallb-chart build tags' ( #103 ) from kzhelyazkov/Factory:add-metallb-build-tag into main
...
Reviewed-on: #103
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
2025-03-20 15:09:59 +01:00
c8c20ce47a
Add metallb-chart build tags
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 1m34s
2025-03-20 16:08:09 +02:00
b30ece6b61
Merge pull request 'Update MetalLB and all other packages around it' ( #98 ) from kzhelyazkov/Factory:update-metallb into main
...
Reviewed-on: #98
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
2025-03-20 13:25:13 +01:00
54c0850acf
Update MetalLB and all other packages around it
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -2s
2025-03-19 18:52:41 +02:00
ab92525cbe
Merge pull request 'Bump Metal3 and Turles RM versions' ( #96 ) from kzhelyazkov/Factory:bump-metal3-to-0.10.0 into main
...
Trigger Devel Packages / Trigger source services for devel packages that changed (push) Successful in 5s
Reviewed-on: #96
Reviewed-by: Fatih Degirmenci <fdegirmenci@noreply.src.opensuse.org >
2025-03-19 14:06:13 +01:00
75ae14da78
Bump Metal3 and Turles RM versions
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 1h41m32s
2025-03-19 11:56:54 +02:00
20de7cd994
Merge pull request '3.3.0: Bump rke2 to v1.32.2+rke2r1 in release-manifest' ( #95 ) from fdegirmenci/suse-edge-factory:update-release-manifest-3.3.0 into main
...
Trigger Devel Packages / Trigger source services for devel packages that changed (push) Successful in 18s
Reviewed-on: #95
Reviewed-by: Kristian Zhelyazkov <kzhelyazkov@noreply.src.opensuse.org >
2025-03-18 17:25:13 +01:00
ca510a470a
3.3.0: Bump rke2 to v1.32.2+rke2r1 in release-manifest
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 2m32s
2025-03-18 17:21:11 +01:00
c68c882d35
metal3-chart: update to 0.10.0
...
Trigger Devel Packages / Trigger source services for devel packages that changed (push) Successful in 22s
Aligns with https://github.com/suse-edge/charts/pull/191
2025-03-17 15:43:38 +01:00
e83a9cea3c
baremetal-operator: update to 0.9.0
2025-03-17 15:43:38 +01:00
ea8a9c590a
Merge pull request 'Bump Rancher, RKE2, and k3s versions in release-manifest' ( #93 ) from fdegirmenci/suse-edge-factory:update-release-manifest-3.3.0 into main
...
Reviewed-on: #93
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
2025-03-17 13:29:27 +01:00
fb896ffe62
Change trigger_devel workflow to midday every week day
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -4s
Cron is configured to run every night on a daily basis which is
great. However, this has potential to break all the SV pipelines
as a commit that gets merged to EIB will result in a new image
build without the SV team have chance to validate and reflect the
change to SV.
This commit configures trigger_devel workflow to run midday every
week day so the SV team can make the necessary validations and
updates accordingly.
Please note that this should be considered as a temporary fix and
an automated way to bring new EIB versions to SV should be developed
collaboratively.
2025-03-17 13:16:07 +01:00
dc19c71706
Update Helm Chart versions for traefik and traefik-crd
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 1s
2025-03-17 12:48:50 +01:00
5db4c3bc79
Bump Rancher, RKE2, and k3s versions in release-manifest
...
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 46m14s
This PR bumps Rancher, RKE2, and k3s versions to align them with
SV baseline to ensure the upgrade validation is done using the
correct versions.
Versions for traefik and traefik-crd Helm Charts are still
pending to be verified.
2025-03-17 12:40:54 +01:00
389f19f7b9
Merge pull request 'longhorn-1-7-3' ( #89 ) from dprodanov/Factory:longhorn-1-7-3 into main
...
Trigger Devel Packages / Trigger source services for devel packages that changed (push) Successful in 22s
Reviewed-on: #89
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
2025-03-14 10:54:25 +01:00
78a681a3a3
remove accidental push of .idea
Build PR in OBS / Build PR in OBS (pull_request_target) Failing after 6m45s
2025-03-14 11:47:25 +02:00
da3b39573b
update longhorn version to 1.7.3
2025-03-14 11:45:31 +02:00
6531575f1b
metal3-chart: update to 0.9.4
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 15s
Trigger Devel Packages / Trigger source services for devel packages that changed (push) Successful in 33s
Aligns with https://github.com/suse-edge/charts/pull/192
2025-03-12 09:38:29 +00:00
d59f3540a2
metal3-chart: update to 0.9.3
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 10s
Trigger Devel Packages / Trigger source services for devel packages that changed (push) Successful in 24s
Aligns with https://github.com/suse-edge/charts/pull/189
2025-03-05 19:10:38 +01:00
43c764e69c
ironic-image: update to 26.1.2.3
...
Aligns with https://github.com/suse-edge/charts/pull/189
Also see:
https://build.opensuse.org/package/rdiff/isv:SUSE:Edge:Metal3:Ironic:2024.2/ironic-image?linkrev=base&rev=11
2025-03-05 19:06:06 +01:00
0b306a3e7a
Merge pull request 'init versions for release manifest 3.3' ( #83 ) from dprodanov/Factory:release-manifest-3.3 into main
...
Trigger Devel Packages / Trigger source services for devel packages that changed (push) Successful in 27s
Reviewed-on: #83
Reviewed-by: Ivo Petrov <ipetrov117@noreply.src.opensuse.org >
2025-02-28 18:19:08 +01:00
c744e56218
Merge pull request 'Ironic dependency is located in different project when in internal obs' ( #82 ) from nbelouin/Factory:ironic-meta into main
...
Synchronize Project Metadata / sync-prj-meta (push) Successful in 6s
Reviewed-on: #82
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
2025-02-28 12:36:10 +01:00
ddabc54ac8
init versions for release manifest 3.3
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 5s
2025-02-28 11:52:41 +02:00
0cb039a9df
Ironic dependency is located in different project when in internal obs
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 5s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-26 10:36:10 +01:00
eff9a9b0c5
rancher-turtles-chart: Update to 0.16.0
...
Trigger Devel Packages / Trigger source services for devel packages that changed (push) Successful in 20s
Align with https://github.com/suse-edge/charts/pull/186
2025-02-25 15:31:46 +01:00
8d336f380b
rancher-turtles-airgap-resources-chart: Update to 0.16.0
...
Align with https://github.com/suse-edge/charts/pull/186
2025-02-25 15:31:46 +01:00
5947d531ab
Merge pull request 'Add scheduled workflow for devel branch' ( #80 ) from nbelouin/Factory:trigger-devel-refresh into main
...
Reviewed-on: #80
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
2025-02-25 15:08:57 +01:00
15362e9536
Add scheduled workflow for devel branch
...
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 11s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-25 13:26:41 +01:00
8f20b3433e
Fix PR closed workflow
...
Synchronize Project Config / Update prjconf in OBS (push) Successful in -5s
Synchronize Project Metadata / sync-prj-meta (push) Successful in 3s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-24 15:44:23 +01:00
704eec6875
Merge pull request 'Fix obsinfo tar issues' ( #77 ) from nbelouin/Factory:fix_packages_tar into main
...
Synchronize Project Config / sync-prjconf (push) Successful in -5s
Synchronize Project Metadata / sync-prj-meta (push) Successful in 3s
Reviewed-on: #77
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
2025-02-24 15:32:13 +01:00
98c4be017d
Add ipcalc, crudini and fakeroot for aarch64 build
...
Synchronize Project Config / sync-pr-project (pull_request_target) Failing after 1s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-24 13:50:10 +01:00
dccf206a98
Fix obsinfo tar issues
...
Synchronize Project Config / sync-pr-project (pull_request_target) Failing after 14s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-24 11:21:52 +01:00
9e41ee25d9
Make wait_obs correctly fail
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-24 11:21:31 +01:00
d97e434fce
PR sha is the wrong one, fix it
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-24 11:16:34 +01:00
3dea69443d
Add more output to wait_obs
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-24 10:47:26 +01:00
331f08255c
Fix gitea not supporting if expressions
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-21 15:38:13 +01:00
4a99805fde
Fix typos in workflows
...
Synchronize Project Metadata / sync-prj-meta (push) Successful in 6s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-21 15:17:59 +01:00
6b8a623372
Merge pull request 'Synchronize metadata from template' ( #76 ) from nbelouin/Factory:sync_meta into main
...
Synchronize Project Config / sync-prjconf (push) Successful in -3s
Synchronize Project Metadata / sync-prjconf (push) Failing after 6s
Reviewed-on: #76
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
2025-02-21 15:04:45 +01:00
34687fb5e9
Reduce number of maintainers to avoid spam
...
OBS: ironic-ipa-downloader-image - images/x86_64
OBS: akri-webhook-configuration-image - images/x86_64
OBS: akri-udev-discovery-handler-image - images/x86_64
OBS: akri-opcua-discovery-handler-image - images/x86_64
OBS: akri-agent-image - images/x86_64
OBS: kubectl-image - images/aarch64
OBS: kubectl-image - images/x86_64
OBS: edge-image-builder-image - images/aarch64
OBS: kube-rbac-proxy-image - images/aarch64
OBS: frr-k8s-image - images/aarch64
OBS: kube-rbac-proxy-image - images/x86_64
OBS: frr-k8s-image - images/x86_64
OBS: upgrade-controller-image - images/aarch64
OBS: akri-controller-image - images/aarch64
OBS: akri-agent-image - images/aarch64
OBS: akri-onvif-discovery-handler-image - images/aarch64
OBS: akri-opcua-discovery-handler-image - images/aarch64
OBS: akri-debug-echo-discovery-handler-image - images/aarch64
OBS: ironic-ipa-ramdisk - standard/aarch64
OBS: akri-udev-discovery-handler-image - images/aarch64
OBS: akri-webhook-configuration-image - images/aarch64
OBS: ironic-ipa-downloader-image - images/aarch64
OBS: nm-configurator - standard/aarch64
Synchronize Project Config / sync-prjconf (pull_request_target) Failing after 19s
OBS: baremetal-operator-image - images/aarch64
OBS: edge-image-builder-image - test_manifest_images/aarch64
OBS: frr-image - images/x86_64
OBS: akri-onvif-discovery-handler-image - images/x86_64
OBS: akri-controller-image - images/x86_64
OBS: edge-image-builder-image - test_manifest_images/x86_64
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-21 09:33:48 +01:00
5a73d61002
Fix issue with bash being annoying
...
OBS: kubectl-image - images/aarch64
OBS: ironic-image - images/aarch64
OBS: endpoint-copier-operator-image - images/aarch64
OBS: upgrade-controller-image - images/aarch64
OBS: metallb-speaker-image - images/aarch64
OBS: kube-rbac-proxy-image - images/aarch64
OBS: edge-image-builder-image - test_manifest_images/aarch64
OBS: frr-k8s-image - images/aarch64
OBS: metallb-controller-image - images/aarch64
OBS: ironic-ipa-ramdisk - standard/x86_64
OBS: edge-image-builder-image - images/aarch64
OBS: akri-udev-discovery-handler-image - images/x86_64
OBS: akri-webhook-configuration-image - images/x86_64
OBS: akri-onvif-discovery-handler-image - images/x86_64
OBS: akri-opcua-discovery-handler-image - images/x86_64
OBS: akri-controller-image - images/x86_64
OBS: akri-debug-echo-discovery-handler-image - images/x86_64
OBS: akri-agent-image - images/x86_64
OBS: ironic-ipa-downloader-image - images/x86_64
OBS: akri-controller-image - images/aarch64
OBS: akri-agent-image - images/aarch64
OBS: akri-opcua-discovery-handler-image - images/aarch64
OBS: akri-udev-discovery-handler-image - images/aarch64
OBS: akri-debug-echo-discovery-handler-image - images/aarch64
OBS: ironic-ipa-ramdisk - standard/aarch64
OBS: akri-onvif-discovery-handler-image - images/aarch64
OBS: akri-webhook-configuration-image - images/aarch64
OBS: ironic-ipa-downloader-image - images/aarch64
OBS: kiwi-builder-image - images/aarch64
OBS: kiwi-builder-image - images/x86_64
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-20 15:57:08 +01:00
4c6d7dea17
Updating Kiwi builder for SL Micro 6.1 builds
2025-02-20 15:38:31 +01:00
531bb91d27
Merge pull request 'Add metal3 images to ARM allowlist' ( #74 ) from steven.hardy/Factory:arm_config into main
...
Synchronize Project Config / sync-prjconf (push) Successful in 6s
Reviewed-on: #74
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2025-02-20 15:34:51 +01:00
0d3c83fca1
Fix create_project for internal
...
OBS: cosign - standard/aarch64
OBS: ipcalc - standard/aarch64
OBS: kubectl - standard/aarch64
OBS: frr-k8s-image - images/aarch64
OBS: akri-opcua-discovery-handler-image - images/x86_64
OBS: frr-image - images/aarch64
OBS: kube-rbac-proxy - standard/aarch64
OBS: akri-udev-discovery-handler-image - images/x86_64
OBS: upgrade-controller - standard/aarch64
OBS: akri-controller-image - images/x86_64
OBS: akri-debug-echo-discovery-handler-image - images/x86_64
OBS: metallb - standard/aarch64
OBS: akri-onvif-discovery-handler-image - images/x86_64
OBS: ironic-image - images/aarch64
OBS: akri-webhook-configuration-image - images/x86_64
OBS: fakeroot - standard/aarch64
OBS: kubectl-image - images/aarch64
OBS: kiwi-builder-image - images/aarch64
OBS: kube-rbac-proxy-image - images/aarch64
OBS: ironic-ipa-ramdisk - standard/aarch64
OBS: metallb-speaker-image - images/aarch64
OBS: metallb-controller-image - images/aarch64
OBS: release-manifest-image - images/aarch64
OBS: ironic-ipa-downloader-image - images/aarch64
OBS: upgrade-controller-image - images/aarch64
OBS: edge-image-builder-image - test_manifest_images/aarch64
OBS: akri-agent-image - images/aarch64
OBS: endpoint-copier-operator-image - images/aarch64
OBS: hauler - standard/aarch64
OBS: edge-image-builder-image - images/aarch64
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-20 14:13:37 +01:00
4d824b71cc
Remove need for workflow
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-20 14:01:04 +01:00
7f93226cd3
Fix akri tar step
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-20 11:15:35 +01:00
d6d501ad99
Sync metadata, revamp PR jobs
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-20 11:05:47 +01:00
f61bb1e0e6
Add metal3 images to ARM allowlist
...
OBS: kiwi-builder-image - images/aarch64
OBS: release-manifest-image - images/aarch64
OBS: akri-agent-image - images/x86_64
OBS: kube-rbac-proxy - standard/aarch64
OBS: nm-configurator - standard/x86_64
OBS: upgrade-controller-image - images/x86_64
OBS: endpoint-copier-operator-image - images/aarch64
OBS: akri - standard/aarch64
OBS: metallb - standard/aarch64
OBS: frr-k8s-image - images/aarch64
OBS: kubectl-image - images/aarch64
OBS: ironic-image - images/aarch64
OBS: frr-k8s-image - images/x86_64
OBS: nm-configurator - standard/aarch64
OBS: kube-rbac-proxy-image - images/aarch64
OBS: akri-agent-image - images/aarch64
OBS: upgrade-controller-image - images/aarch64
OBS: kube-rbac-proxy-image - images/x86_64
OBS: metallb-speaker-image - images/aarch64
OBS: metallb-controller-image - images/aarch64
OBS: metallb-controller-image - images/x86_64
OBS: metallb-speaker-image - images/x86_64
OBS: ironic-ipa-ramdisk - standard/x86_64
OBS: ironic-ipa-downloader-image - images/x86_64
OBS: ironic-ipa-ramdisk - standard/aarch64
OBS: ironic-ipa-downloader-image - images/aarch64
OBS: edge-image-builder-image - images/aarch64
OBS: edge-image-builder-image - images/x86_64
OBS: edge-image-builder-image - test_manifest_images/aarch64
OBS: edge-image-builder-image - test_manifest_images/x86_64
We need to ensure these build to enable usage of the metal3 chart on ARM
2025-02-20 09:36:23 +00:00
a510134ed4
Fix sync action typo
...
Synchronize Project Config / sync-prjconf (push) Successful in 1s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-14 14:40:43 +01:00
54e0941879
Trigger workflow when it changes
...
Synchronize Project Config / sync-prjconf (push) Successful in 1s
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-14 14:36:16 +01:00
c04b2af72b
Fix typo in sync_config action workflow
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-14 14:34:44 +01:00
c57aa3344d
Merge pull request 'Add project config to git' ( #72 ) from nbelouin/Factory:add_config into main
...
Synchronize Project Config / sync-prjconf (push) Successful in 1s
Reviewed-on: #72
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
Reviewed-by: Steven Hardy <steven.hardy@noreply.src.opensuse.org >
2025-02-14 14:31:37 +01:00
c86d724e92
Add project config to git
...
OBS SCM/CI Workflow Integration started
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-02-14 14:31:09 +01:00
9d97e8a56d
metal3-chart: Update to 0.9.2
...
OBS: metallb-controller-image - images/aarch64
OBS: metallb-speaker-image - images/aarch64
OBS: nm-configurator - standard/aarch64
OBS: akri - standard/aarch64
OBS: akri-webhook-configuration-image - images/aarch64
OBS: akri-onvif-discovery-handler-image - images/aarch64
OBS: akri-debug-echo-discovery-handler-image - images/aarch64
OBS: nm-configurator - standard/x86_64
OBS: akri-udev-discovery-handler-image - images/aarch64
OBS: akri - standard/x86_64
OBS: akri-webhook-configuration-image - images/x86_64
OBS: akri-onvif-discovery-handler-image - images/x86_64
OBS: akri-opcua-discovery-handler-image - images/x86_64
OBS: akri-agent-image - images/x86_64
OBS: akri-controller-image - images/x86_64
OBS: akri-udev-discovery-handler-image - images/x86_64
OBS: akri-debug-echo-discovery-handler-image - images/x86_64
OBS: akri-opcua-discovery-handler-image - images/aarch64
OBS: akri-controller-image - images/aarch64
OBS: akri-agent-image - images/aarch64
OBS: kiwi-builder-image - images/aarch64
OBS: kiwi-builder-image - images/x86_64
OBS: edge-image-builder-image - images/aarch64
OBS: edge-image-builder-image - test_manifest_images/aarch64
OBS: edge-image-builder-image - images/x86_64
OBS: edge-image-builder-image - test_manifest_images/x86_64
OBS: ironic-ipa-ramdisk - standard/aarch64
OBS: ironic-ipa-downloader-image - images/aarch64
OBS: ironic-ipa-ramdisk - standard/x86_64
OBS: ironic-ipa-downloader-image - images/x86_64
Align with https://github.com/suse-edge/charts/pull/182
2025-02-12 09:12:49 +00:00
b912f9d68a
ironic-image: update to 26.1.2.2
...
Align with:
https://build.opensuse.org/package/rdiff/isv:SUSE:Edge:Metal3:Ironic:2024.2/ironic-image?linkrev=base&rev=10
https://github.com/suse-edge/charts/pull/182
Fixes a pod restart caused by the runlogwatch.sh script
2025-02-12 09:06:45 +00:00
45443d5b5f
ironic-ipa-downloader-image: remove unused _service entry
...
OBS: baremetal-operator - standard/aarch64
OBS: upgrade-controller-image - images/x86_64
OBS: metallb-controller-image - images/aarch64
OBS: metallb-speaker-image - images/x86_64
OBS: edge-image-builder - standard/aarch64
OBS: hauler - standard/aarch64
OBS: edge-image-builder-image - images/aarch64
OBS: cosign - standard/aarch64
OBS: baremetal-operator-image - images/x86_64
OBS: hauler - standard/x86_64
OBS: metallb-controller-image - images/x86_64
OBS: upgrade-controller - standard/aarch64
OBS: baremetal-operator-image - images/aarch64
OBS: frr-k8s - standard/aarch64
OBS: edge-image-builder-image - test_manifest_images/x86_64
OBS: frr-image - images/aarch64
OBS: frr-k8s - standard/x86_64
OBS: kube-rbac-proxy-image - images/x86_64
OBS: akri-agent-image - images/x86_64
OBS: metallb-speaker-image - images/aarch64
OBS: akri-agent-image - images/aarch64
OBS: kube-rbac-proxy - standard/aarch64
OBS: frr-k8s-image - images/aarch64
OBS: edge-image-builder-image - images/x86_64
OBS: cosign - standard/x86_64
OBS: frr-k8s-image - images/x86_64
OBS: cri-tools - standard/aarch64
OBS: upgrade-controller-image - images/aarch64
OBS: kube-rbac-proxy-image - images/aarch64
OBS: edge-image-builder-image - test_manifest_images/aarch64
This is hard-coded to x86_64 so won't work for ARM, aligns with:
https://build.opensuse.org/package/rdiff/isv:SUSE:Edge:Metal3:Ironic:2024.2/ironic-ipa-downloader-image?linkrev=base&rev=6
2025-02-07 11:25:21 +00:00
ac32110ac1
ironic-ipa-ramdisk: migrate tarball to git-lfs
OBS: kubectl-image - images/aarch64
OBS: release-manifest-image - images/aarch64
OBS: upgrade-controller-image - images/aarch64
OBS: ironic-image - images/aarch64
OBS: metallb-speaker-image - images/aarch64
OBS: metallb-controller-image - images/aarch64
OBS: ironic-ipa-ramdisk - standard/x86_64
OBS: ironic-ipa-downloader-image - images/x86_64
OBS: akri - standard/aarch64
OBS: akri-controller-image - images/aarch64
OBS: akri-agent-image - images/aarch64
OBS: akri-controller-image - images/x86_64
OBS: akri-debug-echo-discovery-handler-image - images/aarch64
OBS: akri-debug-echo-discovery-handler-image - images/x86_64
OBS: akri-onvif-discovery-handler-image - images/aarch64
OBS: ironic-ipa-ramdisk - standard/aarch64
OBS: akri-onvif-discovery-handler-image - images/x86_64
OBS: ironic-ipa-downloader-image - images/aarch64
OBS: akri-opcua-discovery-handler-image - images/aarch64
OBS: akri-webhook-configuration-image - images/aarch64
OBS: akri-opcua-discovery-handler-image - images/x86_64
OBS: akri-webhook-configuration-image - images/x86_64
OBS: akri-udev-discovery-handler-image - images/aarch64
OBS: akri-udev-discovery-handler-image - images/x86_64
OBS: kiwi-builder-image - images/aarch64
OBS: kiwi-builder-image - images/x86_64
OBS: edge-image-builder-image - images/aarch64
OBS: edge-image-builder-image - images/x86_64
OBS: edge-image-builder-image - test_manifest_images/aarch64
OBS: edge-image-builder-image - test_manifest_images/x86_64
2025-02-06 16:38:13 +00:00
5d20bc38e3
metal3-chart: update to 0.9.1
...
Align with https://github.com/suse-edge/charts/pull/173 which
added some fixes to enable deployment on aarch64
2025-02-06 16:36:07 +00:00
e085a97d98
ironic-ipa-downloader-image: update to 3.0.1
...
Update to the latest version from
https://build.opensuse.org/package/show/isv:SUSE:Edge:Metal3:Ironic:2024.2/ironic-ipa-downloader-image
2025-02-06 16:36:04 +00:00
58c8be887a
ironic-ipa-ramdisk: update to 3.0.1
...
Update to the latest version from
https://build.opensuse.org/package/show/isv:SUSE:Edge:Metal3:Ironic:2024.2/ironic-ipa-ramdisk
2025-02-06 16:35:57 +00:00
0d59ad920e
ironic-image: update to 26.1.2.1
...
Align with latest 26.1.2.1 version from
https://build.opensuse.org/package/show/isv:SUSE:Edge:Metal3:Ironic:2024.2/ironic-image
2025-02-05 15:58:26 +00:00
74133c22f6
Fix service file for frr-k8s-image
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-01-17 09:44:56 +01:00
e85da96001
Merge pull request 'Import missing package: frr-k8s-image' ( #67 ) from nbelouin/Factory:import-frr-k8s-image into main
...
Reviewed-on: #67
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
2025-01-17 09:31:28 +01:00
dab7f36e0b
Add package to workflow
...
OBS: kubectl - standard/x86_64
OBS SCM/CI Workflow Integration started
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-01-17 09:31:10 +01:00
5490ffcde2
Import missing package: frr-k8s-image
...
OBS: akri-debug-echo-discovery-handler-image - images/aarch64
OBS: endpoint-copier-operator-image - images/x86_64
OBS: akri-opcua-discovery-handler-image - images/x86_64
OBS: crudini - standard/x86_64
OBS: akri-udev-discovery-handler-image - images/x86_64
OBS: endpoint-copier-operator-chart - charts/x86_64
OBS: akri-debug-echo-discovery-handler-image - images/x86_64
OBS: akri-onvif-discovery-handler-image - images/x86_64
OBS: akri-webhook-configuration-image - images/x86_64
OBS: akri-controller-image - images/x86_64
OBS: cri-tools - standard/x86_64
OBS: akri-controller-image - images/aarch64
OBS: akri-agent-image - images/aarch64
OBS: baremetal-operator - standard/x86_64
OBS: akri-webhook-configuration-image - images/aarch64
OBS: akri-onvif-discovery-handler-image - images/aarch64
OBS: fakeroot - standard/x86_64
OBS: endpoint-copier-operator - standard/x86_64
OBS: ipcalc - standard/x86_64
OBS: cosign - standard/x86_64
OBS: edge-image-builder - standard/x86_64
OBS: frr-image - images/x86_64
OBS: akri-agent-image - images/x86_64
OBS: edge-image-builder-image - test_manifest_images/x86_64
OBS: kubectl-image - images/x86_64
OBS: kubevirt-dashboard-extension-chart - charts/x86_64
OBS: kubevirt-chart - charts/x86_64
OBS: baremetal-operator-image - images/x86_64
OBS: edge-image-builder-image - images/x86_64
OBS: kube-rbac-proxy-image - images/x86_64
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-01-17 09:24:32 +01:00
04b9c07dd5
Merge pull request 'Add an additional tag without the _up suffix to please Rancher for dashboard extensions' ( #65 ) from nbelouin/Factory:add-no-up-tag-extensions into main
...
Reviewed-on: #65
Reviewed-by: Jiří Tomášek <jtomasek@noreply.src.opensuse.org >
2025-01-16 15:47:33 +01:00
25de5df782
Add an additional tag without the _up suffix to please Rancher for dashboard extensions
...
OBS: baremetal-operator - standard/aarch64
OBS: endpoint-copier-operator-image - images/x86_64
OBS: cri-tools - standard/aarch64
OBS: rancher-turtles-airgap-resources-chart - charts/x86_64
OBS: obs-service-set_version - standard/x86_64
OBS: sriov-network-operator-chart - charts/x86_64
OBS: rancher-turtles-chart - charts/x86_64
OBS: kube-rbac-proxy - standard/x86_64
OBS: hauler - standard/x86_64
OBS: metallb - standard/x86_64
OBS: upgrade-controller - standard/x86_64
OBS: edge-image-builder-image - test_manifest_images/x86_64
OBS: edge-image-builder-image - images/x86_64
OBS: baremetal-operator-image - images/aarch64
OBS: ironic-ipa-downloader-image - images/x86_64
OBS: crudini - standard/aarch64
OBS: kiwi-builder-image - images/x86_64
OBS: ironic-image - images/x86_64
OBS: upgrade-controller-chart - charts/x86_64
OBS: release-manifest-image - test_manifest_images/x86_64
OBS: sriov-crd-chart - charts/x86_64
OBS: release-manifest-image - images/x86_64
OBS: kubectl-image - images/x86_64
OBS: upgrade-controller-image - images/x86_64
OBS: release-manifest-image - test_manifest_images/aarch64
OBS: nm-configurator - standard/x86_64
OBS: obs-service-set_version - standard/aarch64
OBS: metallb-controller-image - images/x86_64
OBS: kube-rbac-proxy-image - images/x86_64
OBS: metallb-speaker-image - images/x86_64
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2025-01-16 15:35:46 +01:00
3f9b8c9e22
Merge pull request 'Use manifest_repo var to allow for release manifest in separate repo' ( #57 ) from nbelouin/Factory:manifest-repo-var into main
...
Reviewed-on: #57
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
2024-12-23 12:11:01 +01:00
2a993e342e
Use manifest_repo var to allow for release manifest in separate repo
...
OBS: release-manifest-image - test_manifest_images/aarch64
OBS: metallb - standard/aarch64
OBS: upgrade-controller - standard/x86_64
OBS: kubevirt-chart - charts/x86_64
OBS: metallb - standard/x86_64
OBS: release-manifest-image - test_manifest_images/x86_64
OBS: release-manifest-image - images/aarch64
OBS: release-manifest-image - images/x86_64
OBS: hauler - standard/x86_64
OBS: hauler - standard/aarch64
OBS: baremetal-operator-image - images/aarch64
OBS: akri-agent-image - images/aarch64
OBS: endpoint-copier-operator-image - images/x86_64
OBS: baremetal-operator-image - images/x86_64
OBS: endpoint-copier-operator-image - images/aarch64
OBS: kube-rbac-proxy-image - images/aarch64
OBS: ironic-ipa-downloader-image - images/x86_64
OBS: upgrade-controller-image - images/aarch64
OBS: metallb-controller-image - images/aarch64
OBS: metallb-speaker-image - images/aarch64
OBS: ironic-image - images/x86_64
OBS: upgrade-controller-image - images/x86_64
OBS: metallb-controller-image - images/x86_64
OBS: akri-agent-image - images/x86_64
OBS: metallb-speaker-image - images/x86_64
OBS: edge-image-builder-image - images/aarch64
OBS: edge-image-builder-image - test_manifest_images/x86_64
OBS: edge-image-builder-image - images/x86_64
OBS: edge-image-builder-image - test_manifest_images/aarch64
OBS: kube-rbac-proxy-image - images/x86_64
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2024-12-23 11:33:04 +01:00
cab6fe1bcb
release-manifest: Update to Rancher prime 2.10.1
...
OBS: kube-rbac-proxy - standard/x86_64
OBS: sriov-crd-chart - charts/x86_64
OBS: sriov-network-operator-chart - charts/x86_64
OBS: frr-k8s - standard/aarch64
OBS: release-manifest-image - test_manifest_images/x86_64
OBS: kiwi-builder-image - images/aarch64
OBS: metallb-speaker-image - images/aarch64
OBS: kube-rbac-proxy - standard/aarch64
OBS: release-manifest-image - images/aarch64
OBS: release-manifest-image - test_manifest_images/aarch64
OBS: upgrade-controller-image - images/x86_64
OBS: upgrade-controller - standard/x86_64
OBS: edge-image-builder-image - test_manifest_images/x86_64
OBS: edge-image-builder-image - images/x86_64
OBS: release-manifest-image - images/x86_64
OBS: kubectl-image - images/x86_64
OBS: upgrade-controller-chart - charts/x86_64
OBS: edge-image-builder-image - images/aarch64
OBS: metallb-controller-image - images/aarch64
OBS: edge-image-builder-image - test_manifest_images/aarch64
OBS: hauler - standard/x86_64
OBS: metallb - standard/x86_64
OBS: kube-rbac-proxy-image - images/x86_64
OBS: upgrade-controller-image - images/aarch64
OBS: metallb - standard/aarch64
OBS: upgrade-controller - standard/aarch64
OBS: nm-configurator - standard/x86_64
OBS: metallb-controller-image - images/x86_64
OBS: metallb-speaker-image - images/x86_64
OBS: ironic-image - images/x86_64
2.10.1 was released so update to the prime version
2024-12-20 09:28:38 +00:00
fde506f9ef
Release manifest updates in relation to corner case use-cases ( #60 )
...
Changes:
- Rancher version convention was changed from `v2.10.0` to `2.10.0` to better map to the actual version in the upstream helm chart repo which is without the `v` prefix.
- Rancher's `postDelete` hook has been disabled - done to ensure that we will not hit a corner case where:
1. The Rancher helm chart upgrade fails, because of a core component not yet being ready
2. The `helm-controller` schedules a `helm uninstall` which deletes the Rancher Helm release and triggers the `postDelete` hook.
3. The problematic core component is up and running, so `helm-controller` schedules a `helm install` with the new version.
4. Due to insufficient resources, or network connection (or other unforeseen problems), the `postDelete` hook is still running and it wrongly removes the new Rancher installation resulting in a missing rancher from the cluster after an upgrade.
The `postDelete` hook ensures that no accidental delete of the Rancher application will happen during an upgrade over a machine with fewer resources.
Reviewed-on: #60
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
Reviewed-by: Atanas Dinov <atanasdinov@noreply.src.opensuse.org >
Co-authored-by: Ivo Petrov <ivo.petrov@suse.com >
Co-committed-by: Ivo Petrov <ivo.petrov@suse.com >
2024-12-19 12:27:23 +01:00
f49e6be155
Bump K8s version in the release manifest ( #58 )
...
- Bumps both RKE2 and K3s versions to the `1.31.3` version that is expected by Rancher `v2.10.1`.
- Bumps the K8s core component versions to the `1.31.3` expected versions.
RKE2 core component versions have been checked against the `Chart Versions` table of the said [release](https://github.com/rancher/rke2/releases/tag/v1.31.3%2Brke2r1 ).
K3s core component versions have been checked agains the [manifests](https://github.com/k3s-io/k3s/tree/v1.31.3%2Bk3s1/manifests ) directory of said release.
Reviewed-on: #58
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
Co-authored-by: Ivo Petrov <ivo.petrov@suse.com >
Co-committed-by: Ivo Petrov <ivo.petrov@suse.com >
2024-12-17 09:06:03 +01:00
e820e98a2f
Add missing Elemental dashboard chart ( #55 )
...
Reviewed-on: #55
Reviewed-by: Atanas Dinov <atanasdinov@noreply.src.opensuse.org >
Co-authored-by: Ivo Petrov <ivo.petrov@suse.com >
Co-committed-by: Ivo Petrov <ivo.petrov@suse.com >
2024-12-12 11:20:22 +01:00
8c31073506
Merge pull request 'Bump upgrade-controller to v0.1.1' ( #53 ) from upgrade-controller-v0.1.1 into main
...
Reviewed-on: #53
Reviewed-by: Ivo Petrov <ipetrov117@noreply.src.opensuse.org >
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
Reviewed-by: Denislav Prodanov <dprodanov@noreply.src.opensuse.org >
2024-12-11 18:35:11 +01:00
4bba5fd3f2
Bump chart version
2024-12-11 18:35:11 +01:00
383705e9a3
Bump container image version
2024-12-11 18:35:11 +01:00
a752a25191
Bump RPM version
2024-12-11 18:35:11 +01:00
83fec09683
Introduce K8s distribution core component list ( #52 )
...
Introduces the K8s distribution core component list that the upgrade-controller will follow in order to make sure that a specific Kubernetes upgrade has completed successfully.
Relates to the [#116 ](https://github.com/suse-edge/upgrade-controller/pull/116 ) upgrade-controller PR.
Reviewed-on: #52
Reviewed-by: Atanas Dinov <atanasdinov@noreply.src.opensuse.org >
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
Co-authored-by: Ivo Petrov <ivo.petrov@suse.com >
Co-committed-by: Ivo Petrov <ivo.petrov@suse.com >
2024-12-11 15:45:28 +01:00
32519595dc
IPA ramdisk git LFS fix
...
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com >
2024-12-10 14:01:55 +01:00
87c7e1be88
Update akri-dashboard-extension-chart to v1.2.1
2024-12-06 09:47:40 +01:00
568d5d1590
Update kubevirt-dashboard-extension-chart to v1.2.1
OBS: metallb-speaker-image - images/x86_64
OBS: metallb-controller-image - images/x86_64
OBS: edge-image-builder-image - images/x86_64
OBS: upgrade-controller - standard/aarch64
OBS: metal3-chart - charts/x86_64
OBS: endpoint-copier-operator-image - images/x86_64
OBS: frr-k8s - standard/aarch64
OBS: akri-controller-image - images/aarch64
OBS: rancher-turtles-chart - charts/x86_64
OBS: akri-onvif-discovery-handler-image - images/aarch64
OBS: rancher-turtles-airgap-resources-chart - charts/x86_64
OBS: kube-rbac-proxy - standard/x86_64
OBS: ironic-ipa-ramdisk - standard/x86_64
OBS: sriov-network-operator-chart - charts/x86_64
OBS: sriov-crd-chart - charts/x86_64
OBS: hauler - standard/x86_64
OBS: upgrade-controller-chart - charts/x86_64
OBS: upgrade-controller-image - images/x86_64
OBS: release-manifest-image - images/x86_64
OBS: ironic-image - images/x86_64
OBS: kube-rbac-proxy - standard/aarch64
OBS: akri-agent-image - images/x86_64
OBS: release-manifest-image - images/aarch64
OBS: akri-debug-echo-discovery-handler-image - images/aarch64
OBS: metallb - standard/x86_64
OBS: kube-rbac-proxy-image - images/x86_64
OBS: ironic-ipa-downloader-image - images/x86_64
OBS: metallb - standard/aarch64
OBS: upgrade-controller - standard/x86_64
OBS: hauler - standard/aarch64
2024-12-06 09:30:28 +01:00
fbd596290a
release-manifest: Update rancher-turtles chart
...
OBS SCM/CI Workflow Integration started
OBS: akri-chart - charts/x86_64
OBS: akri-dashboard-extension-chart - charts/x86_64
OBS: autoconf - standard/x86_64
OBS: cdi-chart - charts/x86_64
OBS: baremetal-operator - standard/x86_64
OBS: crudini - standard/x86_64
OBS: cri-tools - standard/x86_64
OBS: baremetal-operator-image - images/x86_64
OBS: fakeroot - standard/x86_64
OBS: endpoint-copier-operator-chart - charts/x86_64
OBS: ipcalc - standard/x86_64
OBS: endpoint-copier-operator - standard/x86_64
OBS: cosign - standard/x86_64
OBS: baremetal-operator-image - images/aarch64
Fix the rancher-turtles-chart version to align with #44
2024-12-05 17:35:46 +00:00
ec6c4745ea
Remove CAPM3/IPAM images
...
OBS: hauler - standard/x86_64
OBS: obs-service-set_version - standard/aarch64
OBS: nm-configurator - standard/x86_64
OBS: endpoint-copier-operator-image - images/x86_64
OBS: endpoint-copier-operator - standard/aarch64
OBS: cosign - standard/aarch64
OBS: akri - standard/x86_64
OBS: frr-k8s - standard/aarch64
OBS: kube-rbac-proxy - standard/aarch64
OBS: kubectl - standard/aarch64
OBS: akri - standard/aarch64
OBS: metallb - standard/aarch64
OBS: akri-opcua-discovery-handler-image - images/x86_64
OBS: akri-onvif-discovery-handler-image - images/x86_64
OBS: akri-udev-discovery-handler-image - images/x86_64
OBS: akri-agent-image - images/x86_64
OBS: nm-configurator - standard/aarch64
OBS: akri-debug-echo-discovery-handler-image - images/x86_64
OBS: akri-webhook-configuration-image - images/x86_64
OBS: akri-controller-image - images/x86_64
OBS: upgrade-controller - standard/aarch64
OBS: hauler - standard/aarch64
OBS: endpoint-copier-operator-image - images/aarch64
OBS: akri-agent-image - images/aarch64
OBS: akri-controller-image - images/aarch64
OBS: akri-opcua-discovery-handler-image - images/aarch64
OBS: akri-udev-discovery-handler-image - images/aarch64
OBS: akri-debug-echo-discovery-handler-image - images/aarch64
OBS: akri-onvif-discovery-handler-image - images/aarch64
OBS: akri-webhook-configuration-image - images/aarch64
These are now provided by the rancher registry since #44
2024-12-05 13:11:00 +00:00
856ec2ac8e
rancher-turtles-airgap-resources-chart: Update to 0.14.1 upstream release
...
OBS: endpoint-copier-operator - standard/aarch64
OBS: kiwi-builder-image - images/aarch64
OBS: ironic-ipa-ramdisk - standard/x86_64
OBS: ipcalc - standard/aarch64
OBS: frr-k8s - standard/aarch64
OBS: akri-debug-echo-discovery-handler-image - images/x86_64
OBS: akri-udev-discovery-handler-image - images/x86_64
OBS: ip-address-manager - standard/aarch64
OBS: akri-agent-image - images/x86_64
OBS: kube-rbac-proxy-image - images/aarch64
OBS: akri-opcua-discovery-handler-image - images/x86_64
OBS: akri-webhook-configuration-image - images/x86_64
OBS: akri-onvif-discovery-handler-image - images/x86_64
OBS: akri-controller-image - images/x86_64
OBS: kubectl-image - images/aarch64
OBS: fakeroot - standard/aarch64
OBS: metallb-controller-image - images/aarch64
OBS: ironic-ipa-downloader-image - images/x86_64
OBS: kubectl - standard/aarch64
OBS: kube-rbac-proxy - standard/aarch64
OBS: release-manifest-image - images/aarch64
OBS: metallb-speaker-image - images/aarch64
OBS: upgrade-controller - standard/aarch64
OBS: metallb - standard/aarch64
OBS: upgrade-controller-image - images/aarch64
OBS: hauler - standard/aarch64
OBS: endpoint-copier-operator-image - images/aarch64
OBS: akri-agent-image - images/aarch64
OBS: baremetal-operator-image - images/aarch64
OBS: cluster-api-provider-metal3-image - images/aarch64
Aligns with https://github.com/suse-edge/charts/pull/174 which
rebases to 0.14.1, which is marked as compatible with Rancher 2.10
2024-12-05 11:35:05 +00:00
7721c66ab0
rancher-turtles-chart: Update to 0.14.1 upstream release
...
Aligns with https://github.com/suse-edge/charts/pull/174 which
rebases to 0.14.1, which is marked as compatible with Rancher 2.10
2024-12-05 11:31:40 +00:00
cf6abb24fb
Merge pull request 'fixed versions in eib artifacts' ( #42 ) from dprodanov/Factory:fix-eib-versions into main
...
Reviewed-on: #42
Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org >
2024-12-04 16:00:26 +01:00
602249c98d
fixed versions in eib artifacts
OBS: hauler - standard/aarch64
OBS: nm-configurator - standard/aarch64
OBS: baremetal-operator-image - images/aarch64
OBS: kubectl-image - images/aarch64
OBS: edge-image-builder-image - images/x86_64
OBS: cluster-api-provider-metal3-image - images/aarch64
OBS: kube-rbac-proxy-image - images/aarch64
OBS: ip-address-manager-image - images/aarch64
OBS: ip-address-manager-image - images/x86_64
OBS: akri-opcua-discovery-handler-image - images/x86_64
OBS: akri-webhook-configuration-image - images/x86_64
OBS: akri-debug-echo-discovery-handler-image - images/x86_64
OBS: akri-udev-discovery-handler-image - images/x86_64
OBS: akri-onvif-discovery-handler-image - images/x86_64
OBS: metallb-controller-image - images/aarch64
OBS: akri-controller-image - images/x86_64
OBS: akri-agent-image - images/x86_64
OBS: upgrade-controller-image - images/aarch64
OBS: metallb-speaker-image - images/aarch64
OBS: endpoint-copier-operator-image - images/aarch64
OBS: edge-image-builder-image - images/aarch64
OBS: ironic-ipa-ramdisk - standard/x86_64
OBS: akri-debug-echo-discovery-handler-image - images/aarch64
OBS: akri-opcua-discovery-handler-image - images/aarch64
OBS: akri-controller-image - images/aarch64
OBS: akri-onvif-discovery-handler-image - images/aarch64
OBS: akri-agent-image - images/aarch64
OBS: ironic-ipa-downloader-image - images/x86_64
OBS: akri-udev-discovery-handler-image - images/aarch64
OBS: akri-webhook-configuration-image - images/aarch64
2024-12-04 16:02:41 +02:00
8a93aae7c5
kiwi-builder-image: Align with OBS latest version
...
OBS: kube-rbac-proxy-image - images/x86_64
OBS: cluster-api-provider-metal3 - standard/aarch64
OBS: metallb-controller-image - images/x86_64
OBS: metallb-speaker-image - images/x86_64
OBS: upgrade-controller-image - images/x86_64
OBS: cri-tools - standard/aarch64
OBS: crudini - standard/aarch64
OBS: cluster-api-provider-metal3-image - images/aarch64
OBS: cosign - standard/aarch64
OBS: baremetal-operator-image - images/aarch64
OBS: endpoint-copier-operator - standard/aarch64
OBS: akri-agent-image - images/aarch64
OBS: edge-image-builder - standard/aarch64
OBS: fakeroot - standard/aarch64
OBS: endpoint-copier-operator-image - images/aarch64
OBS: frr-k8s - standard/aarch64
OBS: ip-address-manager - standard/aarch64
OBS: kube-rbac-proxy - standard/aarch64
OBS: metallb - standard/aarch64
OBS: upgrade-controller - standard/aarch64
OBS: hauler - standard/aarch64
OBS: ip-address-manager-image - images/aarch64
OBS: kube-rbac-proxy-image - images/aarch64
OBS: metallb-controller-image - images/aarch64
OBS: metallb-speaker-image - images/aarch64
OBS: upgrade-controller-image - images/aarch64
OBS: edge-image-builder-image - images/x86_64
OBS: edge-image-builder-image - images/aarch64
OBS: ironic-ipa-ramdisk - standard/x86_64
OBS: ironic-ipa-downloader-image - images/x86_64
Aligns with the latest fixes in isv:SUSE:Edge:KiwiBuilder/kiwi-builder-10
2024-12-02 18:19:04 +00:00
aba448b275
Merge pull request 'updated longhorn and neuvector to latest 105 charts' ( #38 ) from dprodanov/Factory:update-release-manifests into main
...
Reviewed-on: #38
Reviewed-by: Ivo Petrov <ipetrov117@noreply.src.opensuse.org >
2024-11-28 16:05:04 +01:00
09954e5818
updated longhorn and neuvector to latest 105 charts
2024-11-28 16:57:54 +02:00
636493adba
rancher-turtles: Fix issue in 0.4.0 chart
...
The previous import was based on a pre-merge copy of the following PR
- an issue was discovered during SV validation which required an
additional change to ensure CRDs are created before creating the
ClusterctlConfig CR
https://github.com/suse-edge/charts/pull/166
2024-11-27 08:23:32 +00:00