Compare commits

..

2 Commits

Author SHA1 Message Date
49f70388d2 update common chart
Some checks failed
lint-and-test / lint-helm (push) Failing after 17s
release-charts-generic-device-plugin / release (push) Failing after 16s
release-charts-cloudflared / release (push) Failing after 25s
lint-and-test / chart-testing (push) Successful in 39s
release-charts-redis-replication / release (push) Successful in 37s
renovate / renovate (push) Successful in 50s
2026-01-08 14:54:51 -06:00
2b1016b45b move sentinel inside replication 2026-01-08 14:54:51 -06:00
9 changed files with 93 additions and 74 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v2
name: cloudflared
version: 2.1.4
version: 2.1.5
description: Cloudflared Tunnel
keywords:
- cloudflare
@@ -13,6 +13,6 @@ maintainers:
dependencies:
- name: common
repository: https://bjw-s-labs.github.io/helm-charts/
version: 4.5.0
version: 4.6.0
icon: https://avatars.githubusercontent.com/u/314135?s=48&v=4
appVersion: "2025.11.1"

View File

@@ -1,6 +1,6 @@
# cloudflared
![Version: 2.1.4](https://img.shields.io/badge/Version-2.1.4-informational?style=flat-square) ![AppVersion: 2025.11.1](https://img.shields.io/badge/AppVersion-2025.11.1-informational?style=flat-square)
![Version: 2.1.5](https://img.shields.io/badge/Version-2.1.5-informational?style=flat-square) ![AppVersion: 2025.11.1](https://img.shields.io/badge/AppVersion-2025.11.1-informational?style=flat-square)
Cloudflared Tunnel
@@ -19,7 +19,7 @@ Cloudflared Tunnel
| Repository | Name | Version |
|------------|------|---------|
| https://bjw-s-labs.github.io/helm-charts/ | common | 4.5.0 |
| https://bjw-s-labs.github.io/helm-charts/ | common | 4.6.0 |
## Values

View File

@@ -14,5 +14,5 @@ maintainers:
dependencies:
- name: common
repository: https://bjw-s-labs.github.io/helm-charts/
version: 4.5.0
version: 4.6.0
appVersion: 0.20.4

View File

@@ -1,6 +1,6 @@
# generic-device-plugin
![Version: 0.20.10](https://img.shields.io/badge/Version-0.20.10-informational?style=flat-square) ![AppVersion: 0.20.4](https://img.shields.io/badge/AppVersion-0.20.4-informational?style=flat-square)
![Version: 0.20.11](https://img.shields.io/badge/Version-0.20.11-informational?style=flat-square) ![AppVersion: 0.20.4](https://img.shields.io/badge/AppVersion-0.20.4-informational?style=flat-square)
Generic Device Plugin
@@ -19,7 +19,7 @@ Generic Device Plugin
| Repository | Name | Version |
|------------|------|---------|
| https://bjw-s-labs.github.io/helm-charts/ | common | 4.5.0 |
| https://bjw-s-labs.github.io/helm-charts/ | common | 4.6.0 |
## Values

View File

@@ -1,6 +1,6 @@
apiVersion: v2
name: redis-replication
version: 0.5.0
version: 0.6.0
description: Redis Replication with Sentinel
keywords:
- redis-operator
@@ -12,4 +12,4 @@ sources:
maintainers:
- name: alexlebens
icon: https://github.com/OT-CONTAINER-KIT/redis-operator/raw/main/static/redis-operator-logo.svg
appVersion: v0.21.0
appVersion: v0.23.0

View File

@@ -1,6 +1,6 @@
# redis-replication
![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square) ![AppVersion: v0.21.0](https://img.shields.io/badge/AppVersion-v0.21.0-informational?style=flat-square)
![Version: 0.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![AppVersion: v0.23.0](https://img.shields.io/badge/AppVersion-v0.23.0-informational?style=flat-square)
Redis Replication with Sentinel

View File

@@ -37,3 +37,22 @@ spec:
redisExporter:
enabled: {{ .Values.redisReplication.redisExporter.enabled }}
image: "{{ .Values.redisReplication.redisExporter.image.repository }}:{{ .Values.redisReplication.redisExporter.image.tag }}"
{{- if .Values.redisSentinel.enabled }}
sentinel:
image: "{{ .Values.redisSentinel.image.repository }}:{{ .Values.redisSentinel.image.tag }}"
imagePullPolicy: {{ .Values.redisSentinel.image.pullPolicy }}
{{ if .Values.existingSecret.enabled }}
redisSecret:
name: {{ .Values.existingSecret.name }}
key: {{ .Values.existingSecret.key }}
{{ end }}
resources:
{{- with .Values.redisSentinel.resources }}
{{- toYaml . | nindent 10 }}
{{ end }}
size: {{ .Values.redisSentinel.clusterSize }}
{{- end }}

View File

@@ -1,46 +1,46 @@
{{- if .Values.redisSentinel.enabled }}
---
apiVersion: redis.redis.opstreelabs.in/v1beta2
kind: RedisSentinel
metadata:
name: {{ include "redis.sentinelName" . }}
namespace: {{ include "redis.namespace" . }}
labels:
{{- include "redis.labels" . | nindent 4 }}
{{- include "redis.sentinelSelectorLabels" . | nindent 4 }}
spec:
clusterSize: {{ .Values.redisSentinel.clusterSize }}
# {{- if .Values.redisSentinel.enabled }}
# ---
# apiVersion: redis.redis.opstreelabs.in/v1beta2
# kind: RedisSentinel
# metadata:
# name: {{ include "redis.sentinelName" . }}
# namespace: {{ include "redis.namespace" . }}
# labels:
# {{- include "redis.labels" . | nindent 4 }}
# {{- include "redis.sentinelSelectorLabels" . | nindent 4 }}
# spec:
# clusterSize: {{ .Values.redisSentinel.clusterSize }}
podSecurityContext:
{{- with .Values.redisSentinel.podSecurityContext }}
{{- toYaml . | nindent 10 }}
{{ end }}
# podSecurityContext:
# {{- with .Values.redisSentinel.podSecurityContext }}
# {{- toYaml . | nindent 10 }}
# {{ end }}
redisSentinelConfig:
redisReplicationName: {{ include "redis.replicationName" . }}
{{ if .Values.existingSecret.enabled }}
redisReplicationPassword:
secretKeyRef:
name: {{ .Values.existingSecret.name }}
key: {{ .Values.existingSecret.key }}
{{ end }}
# redisSentinelConfig:
# redisReplicationName: {{ include "redis.replicationName" . }}
# {{ if .Values.existingSecret.enabled }}
# redisReplicationPassword:
# secretKeyRef:
# name: {{ .Values.existingSecret.name }}
# key: {{ .Values.existingSecret.key }}
# {{ end }}
kubernetesConfig:
image: "{{ .Values.redisSentinel.image.repository }}:{{ .Values.redisSentinel.image.tag }}"
imagePullPolicy: {{ .Values.redisSentinel.image.pullPolicy }}
resources:
{{- with .Values.redisSentinel.resources }}
{{- toYaml . | nindent 10 }}
{{ end }}
# kubernetesConfig:
# image: "{{ .Values.redisSentinel.image.repository }}:{{ .Values.redisSentinel.image.tag }}"
# imagePullPolicy: {{ .Values.redisSentinel.image.pullPolicy }}
# resources:
# {{- with .Values.redisSentinel.resources }}
# {{- toYaml . | nindent 10 }}
# {{ end }}
{{ if .Values.existingSecret.enabled }}
redisSecret:
name: {{ .Values.existingSecret.name }}
key: {{ .Values.existingSecret.key }}
{{ end }}
# {{ if .Values.existingSecret.enabled }}
# redisSecret:
# name: {{ .Values.existingSecret.name }}
# key: {{ .Values.existingSecret.key }}
# {{ end }}
redisExporter:
enabled: {{ .Values.redisSentinel.redisExporter.enabled }}
image: "{{ .Values.redisSentinel.redisExporter.image.repository }}:{{ .Values.redisSentinel.redisExporter.image.tag }}"
# redisExporter:
# enabled: {{ .Values.redisSentinel.redisExporter.enabled }}
# image: "{{ .Values.redisSentinel.redisExporter.image.repository }}:{{ .Values.redisSentinel.redisExporter.image.tag }}"
{{- end }}
# {{- end }}

View File

@@ -23,27 +23,27 @@ spec:
scrapeTimeout: {{ .Values.redisReplication.redisExporter.serviceMonitor.scrapeTimeout }}
{{- end }}
{{- if and (.Values.redisSentinel.redisExporter.serviceMonitor.enabled) (.Values.redisSentinel.enabled) }}
---
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: {{ include "redis.sentinelName" . }}
namespace: {{ include "redis.namespace" . }}
labels:
{{- include "redis.labels" . | nindent 4 }}
{{- include "redis.sentinelSelectorLabels" . | nindent 4 }}
{{- with .Values.redisSentinel.redisExporter.serviceMonitor.extraLabels }}
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
selector:
matchLabels:
app: {{ include "redis.sentinelName" . }}
redis_setup_type: sentinel
role: sentinel
endpoints:
- port: sentinel-client
interval: {{ .Values.redisSentinel.redisExporter.serviceMonitor.interval }}
scrapeTimeout: {{ .Values.redisSentinel.redisExporter.serviceMonitor.scrapeTimeout }}
{{- end }}
# {{- if and (.Values.redisSentinel.redisExporter.serviceMonitor.enabled) (.Values.redisSentinel.enabled) }}
# ---
# apiVersion: monitoring.coreos.com/v1
# kind: ServiceMonitor
# metadata:
# name: {{ include "redis.sentinelName" . }}
# namespace: {{ include "redis.namespace" . }}
# labels:
# {{- include "redis.labels" . | nindent 4 }}
# {{- include "redis.sentinelSelectorLabels" . | nindent 4 }}
# {{- with .Values.redisSentinel.redisExporter.serviceMonitor.extraLabels }}
# {{- toYaml . | nindent 4 }}
# {{- end }}
# spec:
# selector:
# matchLabels:
# app: {{ include "redis.sentinelName" . }}
# redis_setup_type: sentinel
# role: sentinel
# endpoints:
# - port: redis-exporter
# interval: {{ .Values.redisSentinel.redisExporter.serviceMonitor.interval }}
# scrapeTimeout: {{ .Values.redisSentinel.redisExporter.serviceMonitor.scrapeTimeout }}
# {{- end }}