helmfile/helmfile.spec
Manfred Hollstein 4587c27bb2 Accepting request 1007196 from home:manfred-h:devel:kubic
- Update to version 0.146.0:
  This minor release incorporates many new features and a few bug
  fixes, almost all thanks to 5 new contributors! Kudos to everyone
  who contributed code 🙏
  Also, we've been fixing a handful of regressions introduced via
  v0.145.0 in v0.145.x patch releases. For this release, the only
  regression we found and fixed was #370. Hopefully, this will be
  the most reliable release ever since v0.145.0!

  What's Changed:
  * Support helm-secrets v4.0.0 by @KqLLL in #360
  * use latest helm in github ci by @yxxhero in #367
  * feat: show live output from the Helm binary by @rodrigorfk
    in #286
  * remove flags.Parse in cobra by @yxxhero in #369
  * fix(oci): clean dead code by @jycamier in #290
  * added option for --no-hooks for helm diff and apply by
    @arpanadhikari in #279
  * chore: Tidy up a local var scopinng for maintainability by
    @mumoshu in #372
  * move interactive option to global by @yxxhero in #370
  * fix: add missing untar flag to pull chart from oci registry
    by @toVersus in #371
  * update CLI Ref by @yxxhero in #373
  * Add preapply hook by @Sajfer in #79
  * Fix not to ignore diff selector when it matched nothing by
    @mumoshu in #374
  * Bump chartify to v0.11.0 by @mumoshu in #375

OBS-URL: https://build.opensuse.org/request/show/1007196
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/helmfile?expand=0&rev=65
2022-09-30 08:49:15 +00:00

66 lines
2.0 KiB
RPMSpec

#
# spec file for package helmfile
#
# Copyright (c) 2022 SUSE LLC
# 2021 Manfred Hollstein <manfred.h@gmx.net>
#
# 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/
#
%define git_commit 3c151b8d458890da5e2c7b6422fe3c754899bdf0
Name: helmfile
Version: 0.146.0
Release: 0
Summary: Deploy Kubernetes Helm Charts
License: MIT
Group: Development/Languages/Other
URL: https://github.com/helmfile/helmfile
Source: %{name}-%{version}.tar.gz
Source1: vendor.tar.gz
Requires: helm
BuildRequires: golang-packaging
BuildRequires: xz
BuildRequires: golang(API) >= 1.16
Obsoletes: %{name}-bash-completion < %{version}
Obsoletes: %{name}-zsh-completion < %{version}
%{go_nostrip}
%{go_provides}
%description
Helmfile is a declarative spec for deploying helm charts. It lets you...
* Keep a directory of chart value files and maintain changes in version control.
* Apply CI/CD to configuration changes.
* Periodically sync to avoid skew in environments.
To avoid upgrades for each iteration of helm, the helmfile executable
delegates to helm - as a result, helm must be installed.
%prep
%setup -qa1
%build
go build -mod=vendor -buildmode=pie
%install
make TAG=v%{version} install
mkdir -p %{buildroot}%{_bindir}
install -m755 ${HOME}/go/bin/helmfile %{buildroot}/%{_bindir}/helmfile
%files
%doc README.md
%license LICENSE
%{_bindir}/helmfile
%changelog