Bump yacy
All checks were successful
Publish Helm Charts / build-and-publish (push) Successful in 10s

This commit is contained in:
Ultradesu
2026-02-04 16:40:43 +02:00
parent 4d611eebff
commit e4ef679d5d
3 changed files with 15 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ apiVersion: v2
name: yacy
description: A Helm chart for YaCy - a distributed peer-to-peer search engine
type: application
version: 0.1.1
version: 0.1.2
appVersion: "1.930"
icon: https://yacy.net/images/yacy-logo.png
home: https://yacy.net/

View File

@@ -6,6 +6,13 @@ metadata:
{{- include "yacy.labels" . | nindent 4 }}
spec:
replicas: {{ .Values.replicaCount }}
strategy:
type: {{ .Values.deploymentStrategy.type }}
{{- if eq .Values.deploymentStrategy.type "RollingUpdate" }}
rollingUpdate:
maxUnavailable: 1
maxSurge: 1
{{- end }}
selector:
matchLabels:
{{- include "yacy.selectorLabels" . | nindent 6 }}

View File

@@ -7,6 +7,13 @@
# if running multiple replicas
replicaCount: 1
# Deployment strategy configuration
deploymentStrategy:
# -- Strategy type: RollingUpdate or Recreate
# Recreate: stops old pod completely before starting new one
# RollingUpdate: creates new pod before stopping old one (default k8s behavior)
type: Recreate
# Image configuration
image:
# -- Set to true to use a locally built image