Bump yacy
All checks were successful
Publish Helm Charts / build-and-publish (push) Successful in 10s
All checks were successful
Publish Helm Charts / build-and-publish (push) Successful in 10s
This commit is contained in:
@@ -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/
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user