Updated configserver chart
This commit is contained in:
parent
d8290ecd23
commit
d1f69fd758
|
@ -1,6 +1,6 @@
|
|||
dependencies:
|
||||
- name: template
|
||||
repository: file://../template
|
||||
version: 0.1.20
|
||||
digest: sha256:f32bc1668aba184201c08fdd5b027bf8704aeabcea663f08fce6aec0421d2684
|
||||
generated: "2023-11-02T11:50:35.049198+01:00"
|
||||
version: 0.2.1
|
||||
digest: sha256:674adb8dc3e80e29b3026aa77c48f3371661f8713fad03242cedb27f7c4c6958
|
||||
generated: "2023-11-04T12:38:57.160851+01:00"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
apiVersion: v2
|
||||
name: configserver
|
||||
version: 0.1.21
|
||||
version: 0.1.22
|
||||
type: application
|
||||
description: "Minimal Spring Boot config server"
|
||||
maintainers:
|
||||
|
@ -10,7 +10,7 @@ sources:
|
|||
- https://git.2martens.de/2martens/config-server
|
||||
dependencies:
|
||||
- name: template
|
||||
version: 0.1.20
|
||||
version: 0.2.1
|
||||
repository: file://../template
|
||||
annotations:
|
||||
artifacthub.io/images: |
|
||||
|
@ -21,7 +21,7 @@ annotations:
|
|||
- linux/arm64
|
||||
artifacthub.io/changes: |
|
||||
- kind: changed
|
||||
description: Added support for prometheus operator
|
||||
description: Updated template chart
|
||||
artifacthub.io/signKey: |
|
||||
fingerprint: F0F153B65BAD467201D7544E47393ABD1F96B7C8
|
||||
url: https://mafiasi.de/pks/key/47393ABD1F96B7C8.asc
|
||||
|
|
|
@ -60,6 +60,8 @@ prometheus:
|
|||
# namespace: the namespace of the Prometheus installation
|
||||
# the value is templated
|
||||
namespace:
|
||||
# name of helm release or argo cd application
|
||||
releaseName:
|
||||
# Overwrite with application specific environment variables
|
||||
# Each item has key and value, where the value is parsed as a template
|
||||
environment:
|
||||
|
@ -134,6 +136,17 @@ autoscaling:
|
|||
maxReplicas: 100
|
||||
targetCPUUtilizationPercentage: 80
|
||||
# targetMemoryUtilizationPercentage: 80
|
||||
vault:
|
||||
# If enabled, no ordinary secret resource will be created, even if secrets value is populated.
|
||||
enabled: false
|
||||
# name of the Vault secrets applications
|
||||
applicationName: ""
|
||||
# id of the organization in Vault secrets
|
||||
organizationId: ""
|
||||
# id of the project in Vault secrets
|
||||
projectId: ""
|
||||
# if not provided, vault-secrets-operator-system will be used
|
||||
operatorNamespace: ""
|
||||
# Configure nodeSelector, contents will be added verbatim to key nodeSelector in deployment pod template
|
||||
nodeSelector: {}
|
||||
# Configure tolerations, contents will be added verbatim to key tolerations in deployment pod template
|
||||
|
|
Reference in New Issue