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