feat(helm): add service annotations (#2979)

This commit is contained in:
Marcin Jurczak
2026-05-01 10:22:40 +02:00
committed by GitHub
parent b32ab02c16
commit 47ca2ba249
4 changed files with 8 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ kubeVersion: '>=1.23.0-0'
name: seerr-chart
description: Seerr helm chart for Kubernetes
type: application
version: 3.5.1
version: 3.6.0
# renovate: image=ghcr.io/seerr-team/seerr
appVersion: 'v3.2.0'
maintainers:

View File

@@ -1,6 +1,6 @@
# seerr-chart
![Version: 3.5.1](https://img.shields.io/badge/Version-3.5.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.2.0](https://img.shields.io/badge/AppVersion-v3.2.0-informational?style=flat-square)
![Version: 3.6.0](https://img.shields.io/badge/Version-3.6.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.2.0](https://img.shields.io/badge/AppVersion-v3.2.0-informational?style=flat-square)
Seerr helm chart for Kubernetes
@@ -101,6 +101,7 @@ If `replicaCount` value was used - remove it. Helm update should work fine after
| securityContext.seccompProfile.type | string | `"RuntimeDefault"` | |
| service.port | int | `80` | |
| service.type | string | `"ClusterIP"` | |
| service.annotations | object | {} | |
| serviceAccount.annotations | object | `{}` | Annotations to add to the service account |
| serviceAccount.automount | bool | `true` | Automatically mount a ServiceAccount's API credentials? |
| serviceAccount.create | bool | `true` | Specifies whether a service account should be created |

View File

@@ -4,6 +4,10 @@ metadata:
name: {{ include "seerr.fullname" . }}
labels:
{{- include "seerr.labels" . | nindent 4 }}
{{- with .Values.service.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
type: {{ .Values.service.type }}
ports:

View File

@@ -70,6 +70,7 @@ securityContext:
service:
type: ClusterIP
port: 80
annotations: {}
# -- Creating PVC to store configuration
config: