Release kubemirror 0.4.6

This commit is contained in:
github-actions[bot]
2025-12-26 18:23:56 +00:00
parent b904b15875
commit 4e611a5885
5 changed files with 35 additions and 4 deletions
+2 -2
View File
@@ -2,8 +2,8 @@ apiVersion: v2
name: kubemirror
description: Kubernetes controller for mirroring resources across namespaces
type: application
version: 0.2.14
appVersion: "0.2.14"
version: 0.4.6
appVersion: "0.4.6"
keywords:
- kubernetes
- controller
@@ -43,6 +43,9 @@ spec:
- --worker-threads={{ .Values.controller.workerThreads }}
- --rate-limit-qps={{ .Values.controller.rateLimitQPS }}
- --rate-limit-burst={{ .Values.controller.rateLimitBurst }}
{{- if .Values.controller.verifySourceFreshness }}
- --verify-source-freshness=true
{{- end }}
{{- if .Values.controller.excludedNamespaces }}
- --excluded-namespaces={{ .Values.controller.excludedNamespaces }}
{{- end }}
+7 -1
View File
@@ -3,7 +3,7 @@ replicaCount: 1
image:
repository: ghcr.io/lukaszraczylo/kubemirror
pullPolicy: IfNotPresent
tag: "0.2.14"
tag: "0.4.6"
imagePullSecrets: []
nameOverride: ""
@@ -60,6 +60,12 @@ controller:
rateLimitQPS: 50.0
rateLimitBurst: 100
# Cache freshness verification
# Compares cache with direct API read to detect informer cache lag
# Prevents mirroring stale data but adds extra API call when cache is stale
# Recommended: false for most deployments (eventual consistency is acceptable)
verifySourceFreshness: false
# Namespace filtering
excludedNamespaces: ""
includedNamespaces: ""
Binary file not shown.