Skip to content

Commit

Permalink
added configmap
Browse files Browse the repository at this point in the history
  • Loading branch information
rjonczy committed Nov 22, 2023
1 parent 6e9569b commit ff39ba5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/composable-ibc/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: composable-ibc
description: A Helm chart withy deployment manifests of composable-ibc for Kubernetes
type: application
version: 0.1.1
version: 0.1.2
appVersion: "0.1.0"
10 changes: 10 additions & 0 deletions charts/composable-ibc/templates/configmap.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "composable-ibc.fullname" . }}
labels:
{{- include "composable-ibc.labels" . | nindent 4 }}
data:
config-core.toml: |-
prometheus_endpoint = {{ .Values.config.prometheus_endpoint | quote }}
7 changes: 5 additions & 2 deletions charts/composable-ibc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ image:
tag: "master"

imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

serviceAccount:
create: true
Expand Down Expand Up @@ -54,3 +52,8 @@ nodeSelector: {}
tolerations: []

affinity: {}

# -- Relayers config
config:
# -- Prometheus metrics
prometheus_endpoint: "0.0.0.0:19617"

0 comments on commit ff39ba5

Please sign in to comment.