Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
Signed-off-by: Jeffrey Tang <jeffrey@swirldslabs.com>
  • Loading branch information
JeffreyDallas committed Jul 22, 2024
1 parent d85f397 commit b8f3e11
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,15 @@ spec:
startupProbe:
exec:
command:
- curl
- network-{{ $node.name }}-0.network-{{ $node.name }}.{{ default $.Release.Namespace $.Values.global.namespaceOverride }}.svc.cluster.local:13133
- "/bin/sh"
- "-c"
- |
task() {
mkdir -p /opt/hgcapp/recordStreams/record{{ $node.accountId }}/sidecar
chmod 777 /opt/hgcapp/recordStreams/record{{ $node.accountId }}/sidecar
curl network-{{ $node.name }}-0.network-{{ $node.name }}.{{ default $.Release.Namespace $.Values.global.namespaceOverride }}.svc.cluster.local:13133
}
task
failureThreshold: 30
periodSeconds: 10
timeoutSeconds: 5
Expand Down Expand Up @@ -362,8 +369,8 @@ spec:
- --s3-endpoint
- http://{{ $minioserver.tenant.name }}-hl:9000
volumeMounts:
- name: hgcapp-record-streams-sidecar
mountPath: /opt/hgcapp/recordStreams/sidecar
- name: hgcapp-record-streams
mountPath: /opt/hgcapp/recordStreams
subPath: record{{ $node.accountId }}
env:
- name: DEBUG
Expand Down Expand Up @@ -393,7 +400,7 @@ spec:
- name: SIG_PRIORITIZE
value: {{ default $defaults.sidecars.recordStreamSidecarUploader.config.signature.prioritize (($recordStreamSidecar.config).signature).prioritize | quote }}
- name: BUCKET_PATH
value: "recordstreams/record{{ $node.accountId }}"
value: "recordstreams/record{{ $node.accountId }}/sidecar"
- name: BUCKET_NAME
value: {{ $cloud.buckets.streamBucket | quote }}
- name: S3_ENABLE
Expand Down
4 changes: 2 additions & 2 deletions charts/fullstack-deployment/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ defaults:
interval: 1
defaultBackoff: 1
signature:
require: true
prioritize: true
require: false
prioritize: false
resources: {}
eventStreamUploader:
enabled: true
Expand Down

0 comments on commit b8f3e11

Please sign in to comment.