Fixed error with missing templates
This commit is contained in:
parent
7129b5959c
commit
d5cae6df01
|
@ -1,6 +1,6 @@
|
|||
dependencies:
|
||||
- name: template
|
||||
repository: https://repo.2martens.de/charts
|
||||
version: 0.1.15
|
||||
digest: sha256:8bc1d4b964e7455327efb4bce13a28674488b324e69085e18850f4037b03e5c0
|
||||
generated: "2023-10-30T08:08:33.20112+01:00"
|
||||
version: 0.1.22
|
||||
digest: sha256:0d5dce9d30d729ff79f416fc519f73b09f3d9d33bd6f6b9a7bbbb7c10f05735e
|
||||
generated: "2023-11-02T12:21:31.640493+01:00"
|
||||
|
|
|
@ -4,5 +4,5 @@ version: 0.1.0
|
|||
type: application
|
||||
dependencies:
|
||||
- name: template
|
||||
version: 0.1.15
|
||||
version: 0.1.22
|
||||
repository: https://repo.2martens.de/charts
|
||||
|
|
|
@ -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