feat: add helmfile package configuration
Build / build-9 (pull_request) Successful in 41s
Build / build-8 (pull_request) Successful in 50s

Add RPM package configuration for helmfile v1.1.7, a declarative tool for deploying Kubernetes Helm charts.
This commit is contained in:
2025-10-04 12:51:56 +10:00
parent 5919cd377f
commit 961ceb0df3
5 changed files with 80 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
# nfpm.yaml
name: helmfile
version: ${PACKAGE_VERSION}
release: ${PACKAGE_RELEASE}
arch: amd64
platform: linux
section: default
priority: extra
description: "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; and periodically sync to avoid skew in environments."
maintainer: Helmfile Contributors
homepage: https://github.com/helmfile/helmfile
license: MIT
disable_globbing: false
replaces:
- helmfile
provides:
- helmfile
# Files to include in the package
contents:
- src: /app/helmfile
dst: /usr/bin/helmfile
file_info:
mode: 0755
owner: root
group: root
# Scripts to run during installation/removal (optional)
# scripts:
# preinstall: ./scripts/preinstall.sh
# postinstall: ./scripts/postinstall.sh
# preremove: ./scripts/preremove.sh
# postremove: ./scripts/postremove.sh