Commit Graph
573 Commits
Author SHA1 Message Date
SyedaFatimaKazmi a3683bf4a1 Bump helm chart to 2.2.15 and appVersion to v1.4.20 2026-08-07 15:23:15 +05:00
Sachin AvinaandGitHub 823326c22b Update values.yaml 2026-07-22 18:58:15 +05:30
Sachin AvinaandGitHub dfa264d6d0 Added helm tests for service resource 2026-07-22 18:53:19 +05:30
Sachin AvinaandGitHub 3e00e2a26c Updated values.schema.json 2026-07-22 18:32:44 +05:30
Sachin AvinaandGitHub 0ab56789d1 changed the trim character to fix the indentation issue 2026-07-22 18:31:37 +05:30
Sachin AvinaandGitHub 065caea78f rephrased the helper text for better understanding of supported values in values.yaml 2026-07-21 19:38:17 +05:30
Sachin AvinaandGitHub 91411a5e43 Update values.schema.json for ipFamilypolicy and ipFamilies 2026-07-21 19:03:51 +05:30
Sachin AvinaandGitHub 6705ddcae8 Update values.yaml 2026-07-21 18:48:59 +05:30
Sachin AvinaandGitHub 0e738be85c expose ipFamilies and ipFamilyPolicy for Service via helm values
1189
2026-07-21 18:40:26 +05:30
Michał Marszałek 53ae379242 Merge remote-tracking branch 'upstream/master' into 951-namespace-scope-rbac
# Conflicts:
#	internal/pkg/cmd/reloader.go
#	internal/pkg/cmd/reloader_test.go
2026-07-02 11:07:13 +02:00
Safwan cd1f9cecef Bump helm chart to 2.2.14 and appVersion to v1.4.19 2026-07-01 19:25:32 +05:00
Safwan 32d91007ca Bump helm chart to 2.2.13 and appVersion to v1.4.18 2026-07-01 16:02:42 +05:00
Michał MarszałekandClaude Opus 4.8 50153d05ea feat: scoped multi-namespace mode (Role per namespace, no ClusterRole)
Add a third RBAC posture between watch-globally (ClusterRole) and single
namespace: give Reloader an explicit list of namespaces to watch. The chart
creates a namespace-scoped Role + RoleBinding in each listed namespace (no
ClusterRole), and one install covers them all.

Go:
- new --namespaces flag / options.Namespaces
- resolveWatchNamespaces() picks list -> KUBERNETES_NAMESPACE -> all
- controller creation loops over the watched namespaces
- namespaces-to-ignore is now only honored in global mode (watchGlobally=true);
  in single-namespace and scoped modes the watched set is already explicit

Helm:
- new reloader.namespaces value (active when watchGlobally=false); accepts either
  a YAML list or a comma-separated string for consistency with the sibling
  namespace options
- reloader-watchNamespaces helper (release ns always auto-included, deduped)
- shared reloader-namespaced-rules template reused per namespace
- role.yaml/rolebinding.yaml range over the list; deployment passes --namespaces
- --namespaces-to-ignore only rendered when watchGlobally=true
- fail guard for watchGlobally=true + namespaces set

Tests: unit test for resolveWatchNamespaces; scoped-namespaces e2e case.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-26 15:48:38 +02:00
yvjessestephensandGitHub f12425e96f Merge branch 'stakater:master' into fix/configmaps-resources-to-ignore-mismatch 2026-06-12 08:30:59 -05:00
Muhammad Safwan KarimandGitHub b9718d5638 Merge pull request #1146 from riptide-01/feat/ignore-annotation-flag
feat: add --ignore-annotation flag to override reloader.stakater.com/ignore
2026-06-12 15:09:42 +05:00
Smyslov Maxim ddf0ee99d1 Merge branch 'master' into feat/ignore-annotation-flag 2026-06-10 22:49:50 +03:00
yvjessestephensandGitHub c46937c5b0 Merge branch 'stakater:master' into fix/configmaps-resources-to-ignore-mismatch 2026-06-10 07:50:44 -05:00
t3mi 500c2e57cb feat(helm): add support for enabling user namespace
Signed-off-by: t3mi <t3mi@users.noreply.github.com>
2026-06-10 10:36:43 +00:00
Safwan d633294d75 updated helm version 2026-05-25 13:35:01 +05:00
Smyslov MaximandCursor b2b40da4cf feat: add --ignore-annotation flag to override reloader.stakater.com/ignore
Allow users to customise the annotation key used to mark ConfigMaps and
Secrets as ignored by Reloader, consistent with how every other annotation
key is already overridable via a dedicated CLI flag.

Changes:
- internal/pkg/util/util.go: register --ignore-annotation persistent flag
  backed by options.IgnoreResourceAnnotation
- deployments/kubernetes/chart/reloader/templates/deployment.yaml: pass
  --ignore-annotation when custom_annotations.ignore is set in Helm values
- deployments/kubernetes/chart/reloader/values.yaml: document the new
  custom_annotations.ignore key in the example comment
- README.md: add --ignore-annotation to the Annotation Key Overrides table
  and mention the flag alongside the Resource-Level Ignore Annotation section

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-21 11:13:31 +03:00
Jesse Stephens d527ae8d5a fix: align resources-to-ignore=configMaps with renamed ResourceMap key
PR #1061 renamed the configmap key in kube.ResourceMap from "configMaps"
(camelCase) to "configmaps" (lowercase) to fix controllers not being
able to mark themselves as initialized. However, two callers were not
updated to match the new canonical key:

1. The Helm chart's deployment template still emits
   `--resources-to-ignore=configMaps` (camelCase) when
   `reloader.ignoreConfigMaps: true` is set.
2. The validation in `GetIgnoredResourcesList` only accepts the legacy
   camelCase spelling.

Because `ignoredResourcesList.Contains(k)` uses case-sensitive string
equality, the lookup against the new lowercase ResourceMap key never
matches. The configmaps controller is created and starts watching
ConfigMaps cluster-wide, even though the chart's ClusterRole template
(also gated on `ignoreConfigMaps`) does not grant permission for it.

The resulting pod logs are full of:

  configmaps is forbidden: User "system:serviceaccount:reloader:reloader-reloader"
  cannot list resource "configmaps" in API group "" at the cluster scope

This change:

- Updates the chart deployment template to emit the canonical lowercase
  `configmaps` value.
- Normalizes the input in `GetIgnoredResourcesList`, accepting both
  `configMaps` (legacy, for backward compatibility with users who pass
  the flag directly) and `configmaps` (canonical), and emitting the
  canonical form to the caller.
- Updates the flag help text and adds tests covering both spellings.
2026-05-20 14:19:13 -05:00
Safwan 05ffe3389c Bump helm chart to 2.2.11 and appVersion to v1.4.16 2026-04-15 13:34:35 +05:00
Safwan 2b1bfc4b7d Bump helm chart to 2.2.10 and appVersion to v1.4.15 2026-04-13 21:55:17 +05:00
Safwan 1993b6a76e Bump chart 2026-03-05 08:37:35 +05:00
Faizan AhmadandGitHub 03ef58df13 Merge pull request #1091 from hznor/feature/improve-readme 2026-03-04 14:56:41 +01:00
Safwan 20e2680539 Bump chart and version 2026-02-13 21:44:45 +05:00
hznor 1e68bd58cd improve README.md 2026-02-04 16:50:25 +01:00
faizanahmad055 85f1c13de9 Add CSI integration in rbac
Signed-off-by: faizanahmad055 <faizan.ahmad55@outlook.com>
2026-01-04 00:47:13 +01:00
faizanahmad055 c9cab4f6e0 Update chart for CSI driver
Signed-off-by: faizanahmad055 <faizan.ahmad55@outlook.com>
2026-01-03 19:32:43 +01:00
Safwan ebac11f904 Update helm chart 1.4.12 2025-12-15 02:43:09 +05:00
Muhammad Safwan KarimandGitHub 8545fe8d8d Merge pull request #1043 from michael-voegeli-fnt/master
feat(helm): support both object and string formats for imagePullSecrets
2025-12-11 00:16:35 +05:00
Safwan 3afe895045 bump chart 2025-12-10 17:17:28 +05:00
Safwan 64a18ff207 buno version 2025-12-10 17:10:27 +05:00
Michael VögeliandGitHub 04dec609f0 Merge branch 'master' into master 2025-12-02 13:25:53 +01:00
Muhammad Safwan KarimandGitHub d409b79a11 Merge pull request #1049 from Wamgleb/fix-pause-annotation-bug
fix:Rename pause-deployment-annotation to pause-deployment-time-annot…
2025-11-14 21:50:22 +05:00
Muhammad Safwan KarimandGitHub 7080ec27cc Merge pull request #1032 from arizon-dread/fix-openshift-runAsUser-documentation
fix the value reference to runAsUser for OpenShift
2025-11-13 18:13:54 +05:00
Hlib Kalinchuk 765053f21e fix:Rename pause-deployment-annotation to pause-deployment-time-annotation in deployment.yaml 2025-11-07 14:36:59 +02:00
Muhammad Safwan KarimandGitHub bfb720e9e9 Bump chart 2025-11-05 16:13:37 +05:00
Michael Vögeli e9114d3455 chore(helm): bump chart version 2025-11-05 11:21:21 +01:00
Michael Vögeli 10b3e077b5 feat(helm): support both object and string formats for imagePullSecrets
Extended Helm chart configuration to allow imagePullSecrets to be defined
either as a list of strings (e.g., `- my-pull-secret`) or as a list of
objects with `name` keys (e.g., `- name: my-pull-secret`).
2025-11-05 11:07:31 +01:00
Muhammad Safwan KarimandGitHub 4694b7570e Bump chart 2025-11-04 14:40:54 +05:00
renovate[bot]andGitHub 3de9c688f2 chore(deps): update ghcr.io/stakater/reloader docker tag to v1.4.9 2025-11-04 09:31:37 +00:00
Felix TonnvikandGitHub cadf4489e8 Merge branch 'master' into release-v1.4.9 2025-11-03 18:05:44 +01:00
Felix-Stakaterandgithub-actions[bot] 09f2a63b00 Bump version to 1.4.9
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-11-03 16:57:23 +00:00
Erik Svensson 8980e1fd80 fix the value reference so it matches the chart value in the documentation 2025-11-03 08:57:13 +01:00
SafwanandFelix bd767a7ef1 Bump chart 2025-09-15 14:00:18 +02:00
Pradeep Lakshmi NarasimhaandFelix dd0807e951 fix: Controller not respecting ignore* flags 2025-08-29 12:24:02 +02:00
Muhammad Safwan KarimandGitHub b8edc25177 Fix comment for adding Stakater Helm repository (#1004) 2025-08-25 18:58:32 +05:00
Muhammad Safwan KarimandGitHub 816ad6d430 bump image tag and chart version (#1002) 2025-08-25 17:53:22 +05:00
Nitin Verma 42cd7e71a2 reloader: Add in support for dnsConfig for pod reloader. This is supported as a common standard in most public helm charts, so decided to create a PR here. 2025-08-04 07:52:57 +01:00