Stabilize OpenShift spec 4.20.0, targeting Ignition spec 3.5.0
Add OpenShift spec 4.21.0-experimental, targeting Ignition spec 3.6.0-experimental
Stop overriding default LUKS cipher algorithm in FIPS mode (openshift 4.20.0)
Add missing examples in upgrading-openshift (openshift 4.14)
- Version 0.24.0
Validate merged/replaced Ignition configs if they are local/inline (all base specifications)
Stabilize OpenShift spec 4.19.0, targeting Ignition spec 3.5.0
Add OpenShift spec 4.20.0-experimental, targeting Ignition spec 3.6.0-experimental
Add TMT test support with initial smoke test
Fail if LUKS method is not specified while boot_device.luks.device is set (fcos 1.7.0-exp)
Validate kernel arguments when CEX support is enabled on s390x (4.19.0 and 4.20.0)
Roll back to Ignition spec 3.5.0 (openshift 4.19.0)
- Version 0.23.0
Add OpenShift spec 4.19.0-experimental, targeting Ignition spec 3.6.0-experimental
Stabilize OpenShift spec 4.18.0, targeting Ignition spec 3.4.0
Stabilize Fcos spec 1.6.0, targeting Ignition spec 3.5.0
Add Fcos spec 1.7.0-experimental, targeting Ignition spec 3.6.0-experimental
Update Fiot spec 1.1.0-experimental to target Ignition spec 3.6.0-experimental
Update Flatcar spec 1.2.0-experimental to target Ignition spec 3.6.0-experimental
Update OpenShift spec 4.18.0-experimental, targeting Ignition spec 3.6.0-experimental
Update R4e spec 1.2.0-experimental to target Ignition spec 3.6.0-experimental
Support LUKS encryption using IBM CEX secure keys on s390x (fcos 1.6) (openshift 4.18.0-exp)
Re-vendor latest ignition release; 3.5.0-experimental becomes 3.5.0
- Version 0.22.0
Stabilize OpenShift spec 4.17.0, targeting Ignition spec 3.4.0
Add OpenShift spec 4.18.0-experimental, targeting Ignition spec 3.5.0-experimental
Support and documentation for grub section moved to OpenShift 4.18.0-experimental spec.
Roll back to Ignition spec 3.4.0 (openshift 4.17.0)
OBS-URL: https://build.opensuse.org/package/show/devel:kubic:ignition/butane?expand=0&rev=14
59 lines
1.9 KiB
RPMSpec
59 lines
1.9 KiB
RPMSpec
#
|
|
# spec file for package butane
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC and contributors
|
|
# Copyright (c) 2021 Neal Gompa.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: butane
|
|
Version: 0.25.0
|
|
Release: 0
|
|
Summary: Tool to generate Ignition configs from Butane Configs
|
|
Group: System/Management
|
|
License: Apache-2.0
|
|
URL: https://github.com/coreos/butane
|
|
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
|
|
|
BuildRequires: golang(API) >= 1.20
|
|
|
|
# Upgrade from old fcct/ignition-config-transpiler
|
|
Obsoletes: ignition-config-transpiler < %{version}-%{release}
|
|
Provides: ignition-config-transpiler = %{version}-%{release}
|
|
Provides: ignition-config-transpiler%{?_isa} = %{version}-%{release}
|
|
|
|
%description
|
|
Butane translates human-readable Butane Configs into machine-readable
|
|
Ignition configs for provisioning operating systems that use Ignition.
|
|
|
|
%prep
|
|
%autosetup
|
|
|
|
%build
|
|
go build -mod=vendor -buildmode=pie -ldflags "-X github.com/coreos/butane/internal/version.Raw=%{version}" -a -v -x -o ./butane internal/main.go
|
|
|
|
%install
|
|
install -D -p -m 0755 butane %{buildroot}%{_bindir}/butane
|
|
ln -s butane %{buildroot}%{_bindir}/ignition-config-transpiler
|
|
ln -s butane %{buildroot}%{_bindir}/fcct
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc docs README.md NEWS.md
|
|
%{_bindir}/butane
|
|
%{_bindir}/ignition-config-transpiler
|
|
%{_bindir}/fcct
|
|
|
|
%changelog
|