forked from pool/helmfile
Manfred Hollstein
486f3051cf
- Update to version 0.165.0: What's Changed * build(deps): bump github.com/aws/aws-sdk-go from 1.51.32 to 1.52.0 by @dependabot in #1496 * build(deps): bump github.com/helmfile/vals from 0.37.0 to 0.37.1 by @dependabot in #1500 * build(deps): bump github.com/aws/aws-sdk-go from 1.52.0 to 1.52.1 by @dependabot in #1499 * build(deps): bump jinja2 from 3.1.3 to 3.1.4 in /docs by @dependabot in #1505 * build(deps): bump golang.org/x/term from 0.19.0 to 0.20.0 by @dependabot in #1502 * build(deps): bump github.com/helmfile/chartify from 0.20.0 to 0.20.1 by @dependabot in #1503 * build(deps): bump github.com/aws/aws-sdk-go from 1.52.1 to 1.52.2 by @dependabot in #1501 * build(deps): bump github.com/aws/aws-sdk-go from 1.52.2 to 1.52.3 by @dependabot in #1507 * build(deps): bump golangci/golangci-lint-action from 5 to 6 by @dependabot in #1506 * Remove config key order check by @drivelikebrazil in #1504 * Relax the helmfile.lock helmfile binary version constraint by @mumoshu in #1511 * build(deps): bump github.com/aws/aws-sdk-go from 1.52.3 to 1.52.4 by @dependabot in #1509 * v1: Document experimental features by @mumoshu in #1512 * Update the project status with invitation to v1 rc testers by @mumoshu in #1513 * build(deps): bump github.com/aws/aws-sdk-go from 1.52.4 to 1.52.5 by @dependabot in #1514 * chore: upgrade kubectl to v1.28.9 by @rtomadpg in #1516 * build(deps): bump github.com/aws/aws-sdk-go from 1.52.5 to 1.52.6 by @dependabot in #1518 * bump helm-diff to v3.9.6 by @yxxhero in #1517 * Add helmfile template --show-only by @jim-barber-he in #1494 * build(deps): bump github.com/aws/aws-sdk-go from 1.52.6 to 1.53.0 by @dependabot in #1519 * build(deps): bump k8s.io/apimachinery from 0.30.0 to 0.30.1 by @dependabot in #1521 * build(deps): bump github.com/aws/aws-sdk-go from 1.53.0 to 1.53.2 by @dependabot in #1520 * build(deps): bump github.com/aws/aws-sdk-go from 1.53.2 to 1.53.3 by @dependabot in #1525 * build(deps): bump github.com/aws/aws-sdk-go from 1.53.3 to 1.53.4 by @dependabot in #1526 * Fix typo and link for supported backends by @koenpunt in #1529 * build(deps): bump github.com/aws/aws-sdk-go from 1.53.4 to 1.53.5 by @dependabot in #1528 * build(deps): bump github.com/aws/aws-sdk-go from 1.53.5 to 1.53.6 by @dependabot in #1531 * build(deps): bump github.com/aws/aws-sdk-go from 1.53.6 to 1.53.7 by @dependabot in #1532 * build(deps): bump github.com/aws/aws-sdk-go from 1.53.7 to 1.53.8 by @dependabot in #1534 * feat: bump helm to v3.15.1 by @yxxhero in #1523 * build(deps): bump github.com/aws/aws-sdk-go from 1.53.8 to 1.53.9 by @dependabot in #1535 * bump helm-diff to 3.9.7 by @yxxhero in #1536 OBS-URL: https://build.opensuse.org/request/show/1177027 OBS-URL: https://build.opensuse.org/package/show/devel:kubic/helmfile?expand=0&rev=111
121 lines
4.0 KiB
RPMSpec
121 lines
4.0 KiB
RPMSpec
#
|
|
# spec file for package helmfile
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
# 2021-2024 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 2f408163cff1ac89e1e24affa38d78125216b241
|
|
Name: helmfile
|
|
Version: 0.165.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 >= 3.13.1
|
|
Recommends: helm >= 3.14.0
|
|
BuildRequires: golang-packaging
|
|
BuildRequires: xz
|
|
BuildRequires: golang(API) >= 1.22
|
|
Obsoletes: %{name}-bash-completion < %{version}
|
|
Obsoletes: %{name}-zsh-completion < %{version}
|
|
|
|
%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.
|
|
|
|
%package bash-completion
|
|
Summary: Bash Completion for %{name}
|
|
Group: System/Shells
|
|
Requires: %{name} = %{version}
|
|
Supplements: (%{name} and bash-completion)
|
|
BuildArch: noarch
|
|
|
|
%description bash-completion
|
|
Bash command line completion support for %{name}.
|
|
|
|
%package zsh-completion
|
|
Summary: Zsh Completion for %{name}
|
|
Group: System/Shells
|
|
Requires: %{name} = %{version}
|
|
Supplements: (%{name} and zsh)
|
|
BuildArch: noarch
|
|
|
|
%description zsh-completion
|
|
Zsh command line completion support for %{name}.
|
|
|
|
%package fish-completion
|
|
Summary: Fish Completion for %{name}
|
|
Group: System/Shells
|
|
Requires: %{name} = %{version}
|
|
Supplements: (%{name} and fish)
|
|
BuildArch: noarch
|
|
|
|
%description fish-completion
|
|
Fish command line completion support for %{name}.
|
|
|
|
%prep
|
|
%setup -qa1
|
|
|
|
%build
|
|
modified="$(sed -n '/^----/n;s/ - .*$//;p;q' "%{_sourcedir}/%{name}.changes")"
|
|
SOURCE_DATE_EPOCH=$(date -u -d "${modified}" "+%s")
|
|
export SOURCE_DATE_EPOCH
|
|
rm -f source_date_epoch
|
|
echo SOURCE_DATE_EPOCH=$SOURCE_DATE_EPOCH > source_date_epoch
|
|
go build -mod=vendor -buildmode=pie
|
|
|
|
%install
|
|
. ./source_date_epoch
|
|
export SOURCE_DATE_EPOCH
|
|
make TAG=v%{version} install
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
install -m755 ${HOME}/go/bin/helmfile %{buildroot}/%{_bindir}/helmfile
|
|
mkdir -p %{buildroot}%{_datarootdir}/bash-completion/completions
|
|
%{buildroot}/%{_bindir}/helmfile completion bash > %{buildroot}%{_datarootdir}/bash-completion/completions/%{name}
|
|
mkdir -p %{buildroot}%{_datarootdir}/zsh_completion.d
|
|
%{buildroot}/%{_bindir}/helmfile completion zsh > %{buildroot}%{_datarootdir}/zsh_completion.d/_%{name}
|
|
mkdir -p %{buildroot}%{_datadir}/fish/vendor_completions.d
|
|
%{buildroot}/%{_bindir}/helmfile completion fish > %{buildroot}%{_datarootdir}/fish/vendor_completions.d/%{name}.fish
|
|
|
|
%files
|
|
%doc README.md
|
|
%license LICENSE
|
|
%{_bindir}/helmfile
|
|
|
|
%files bash-completion
|
|
%dir %{_datarootdir}/bash-completion/completions/
|
|
%{_datarootdir}/bash-completion/completions/%{name}
|
|
|
|
%files zsh-completion
|
|
%dir %{_datarootdir}/zsh_completion.d/
|
|
%{_datarootdir}/zsh_completion.d/_%{name}
|
|
|
|
%files fish-completion
|
|
%dir %{_datarootdir}/fish
|
|
%dir %{_datarootdir}/fish/vendor_completions.d
|
|
%{_datarootdir}/fish/vendor_completions.d/%{name}.fish
|
|
|
|
%changelog
|