Skip to content

Commit

Permalink
changes to core config
Browse files Browse the repository at this point in the history
  • Loading branch information
rjonczy committed Nov 22, 2023
1 parent 4dafee4 commit 454dc3a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 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.3
version: 0.1.4
appVersion: "0.1.0"
4 changes: 2 additions & 2 deletions charts/composable-ibc/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "composable-ibc.fullname" . }}
name: {{ include "composable-ibc.fullname" . }}-core
labels:
{{- include "composable-ibc.labels" . | nindent 4 }}
data:
config-core.toml: |-
config-core.toml: |
prometheus_endpoint = {{ .Values.config.prometheus_endpoint | quote }}
7 changes: 4 additions & 3 deletions charts/composable-ibc/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ spec:
secretName: config-b
- name: config-core
configMap:
defaultMode: 0600
name: {{ include "composable-ibc.fullname" . }}
name: {{ include "composable-ibc.fullname" . }}-core
items:
- key: "config-core.toml"
path: "config-core.toml"
containers:
- name: {{ .Chart.Name }}
securityContext:
Expand All @@ -56,7 +58,6 @@ spec:
- name: config-core
readOnly: true
mountPath: "/opt/hyperspace/config-core"
subPath: config-core
# ports:
# - name: http
# containerPort: 80
Expand Down

0 comments on commit 454dc3a

Please sign in to comment.