Skip to content

Commit

Permalink
fix(cf-idw): fix start command
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmorano committed Jul 15, 2024
1 parent 8f8157b commit 18305a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions charts/cf-idw/templates/witness-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ spec:
containers:
- name: witness
image: "{{ .image.repository }}:{{ .image.tag }}"
command: ["kli", "witness", "start", "--name witness", "--alias witness"]
command: ["bash", "-c", "kli witness start --name witness --alias witness"]
env:
- name: KERI_SCRIPT_DIR
value: /usr/local/var/keri
ports:
- containerPort: {{ .port | 5631 }}
hostPort: {{ .port | 5631 }}
- containerPort: {{ .port | default 5631 }}
hostPort: {{ .port | default 5631 }}
protocol: TCP
volumeMounts:
- mountPath: /usr/local/var/keri
Expand Down

0 comments on commit 18305a0

Please sign in to comment.