mirror of
https://abf.rosa.ru/djam/helmfile.git
synced 2025-02-23 13:42:57 +00:00
Imported from SRPM
This commit is contained in:
commit
eddb0744a9
2 changed files with 38 additions and 0 deletions
2
.abf.yml
Normal file
2
.abf.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
sources:
|
||||||
|
helmfile-0.154.0.tar.gz: 5da6fba623e59a4aa1314d74d474a64c728880f6
|
36
helmfile.spec
Normal file
36
helmfile.spec
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
%define debug %nil
|
||||||
|
%define debug_package %nil
|
||||||
|
|
||||||
|
Name: helmfile
|
||||||
|
Version: 0.154.0
|
||||||
|
Release: 1
|
||||||
|
Summary: Deploy Kubernetes Helm Charts
|
||||||
|
URL: https://helmfile.readthedocs.io
|
||||||
|
Source0: https://github.com/helmfile/helmfile/archive/v%{version}/%{name}-%{version}.tar.gz
|
||||||
|
License: MIT
|
||||||
|
Group: Development/Other
|
||||||
|
BuildRequires: go
|
||||||
|
BuildRequires: git-core
|
||||||
|
BuildRequires: upx
|
||||||
|
|
||||||
|
%description
|
||||||
|
Declaratively deploy your Kubernetes manifests, Kustomize
|
||||||
|
configs, and Charts as Helm releases. Generate all-in-one
|
||||||
|
manifests for use with ArgoCD.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%build
|
||||||
|
go build -o bin/%{name} -ldflags="-s -w -X go.szostok.io/version.version=%{version}" .
|
||||||
|
|
||||||
|
upx bin/%{name}
|
||||||
|
|
||||||
|
%install
|
||||||
|
install -Dm0755 bin/%{name} %{buildroot}%{_bindir}/%{name}
|
||||||
|
|
||||||
|
%files
|
||||||
|
%doc README* LICENSE CONTRIBUTING.md SECURITY.md USERS.md docs examples
|
||||||
|
%{_bindir}/%{name}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue