Added revision history limit
This commit is contained in:
parent
3848f552c7
commit
7129b5959c
|
@ -1,6 +1,6 @@
|
|||
dependencies:
|
||||
- name: template
|
||||
repository: file://../template
|
||||
version: 0.1.14
|
||||
digest: sha256:b5659a36090dbcc6f457bed11e62c17ea1d6c4eeb8d02c556c8c3c80e55d2a89
|
||||
generated: "2023-10-29T21:04:02.419077+01:00"
|
||||
version: 0.1.22
|
||||
digest: sha256:32e239402e34e5ca219d00190ba9e659061b5c290081500de53ba7bb0aa1d40e
|
||||
generated: "2023-11-02T12:19:11.875259+01:00"
|
||||
|
|
|
@ -2,18 +2,18 @@ apiVersion: v2
|
|||
name: zookeeper
|
||||
description: Simple Zookeeper chart to get started
|
||||
type: application
|
||||
version: 0.1.3
|
||||
version: 0.1.4
|
||||
maintainers:
|
||||
- name: Jim Martens
|
||||
url: https://2martens.de
|
||||
dependencies:
|
||||
- name: template
|
||||
version: 0.1.14
|
||||
version: 0.1.22
|
||||
repository: file://../template
|
||||
annotations:
|
||||
artifacthub.io/changes: |
|
||||
- kind: added
|
||||
description: Added ArtifactHub metadata
|
||||
description: Added revision history limit
|
||||
artifacthub.io/signKey: |
|
||||
fingerprint: F0F153B65BAD467201D7544E47393ABD1F96B7C8
|
||||
url: https://mafiasi.de/pks/key/47393ABD1F96B7C8.asc
|
||||
|
|
|
@ -11,6 +11,8 @@ livenessProbe:
|
|||
enabled: false
|
||||
readinessProbe:
|
||||
enabled: false
|
||||
prometheus:
|
||||
enabled: false
|
||||
environment:
|
||||
- name: ZOOKEEPER_CLIENT_PORT
|
||||
value: "{{ .Values.application.port }}"
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
# the default for your application differs. The image.repository is a prime candidate for that.
|
||||
|
||||
replicaCount: 1
|
||||
# revisionHistoryLimit: can be configured to reduce/increase amount of stored replica sets for rollback
|
||||
revisionHistoryLimit: 10
|
||||
image:
|
||||
repository: confluentinc/cp-zookeeper
|
||||
pullPolicy: IfNotPresent
|
||||
|
@ -46,6 +48,13 @@ application:
|
|||
profile: prod
|
||||
isSpring: false
|
||||
tickTime: 2000
|
||||
prometheus:
|
||||
enabled: false
|
||||
# only enable if you have the Prometheus operator installed, otherwise it will fail due to missing CRDs
|
||||
useCRDs: false
|
||||
# namespace: the namespace of the Prometheus installation
|
||||
# the value is templated
|
||||
namespace:
|
||||
# Overwrite with application specific environment variables
|
||||
# Each item has key and value, where the value is parsed as a template
|
||||
environment:
|
||||
|
@ -124,14 +133,3 @@ affinity: {}
|
|||
podSpec: {}
|
||||
# containerSpec: will be added at the bottom of the container specification in the pod template
|
||||
containerSpec: {}
|
||||
argocd:
|
||||
enabled: false
|
||||
project: default
|
||||
repoURL: https://github.com/exampleUser/exampleRepo
|
||||
targetRevision: HEAD
|
||||
# pathInRepo: is required if it is a git repo
|
||||
pathInRepo: /
|
||||
# chartName: required if repo is a Helm chart repo
|
||||
chartName: ""
|
||||
# targetCluster: specifies the cluster to deploy to
|
||||
targetCluster: https://kubernetes.default.svc
|
||||
|
|
Reference in New Issue