Skip to content
Snippets Groups Projects

Fix for Sandboxed installation

Merged Roberto DePietri requested to merge roberto.depietri/gwcelery-helm:sandboxed into main
1 unresolved thread
Files
4
@@ -43,6 +43,8 @@ livenessProbe:
chmod 600 /tmp/secrets-copy/auth.toml ;
cp /tmp/secrets/netrc /tmp/secrets-copy/netrc ;
chmod 600 /tmp/secrets-copy/netrc ;
cp /tmp/secrets/kafka_credential_map /tmp/secrets-copy/kafka_credential_map.json ;
chmod 600 /tmp/secrets-copy/kafka_credential_map.json ;
cp /tmp/secrets/x509up_u1000 /tmp/secrets-copy/x509up_u1000 ;
chmod 600 /tmp/secrets-copy/x509up_u1000 ;
cat $(python -m requests.certs) /tmp/ca.crt > /tmp/cabundle/cacerts.pem
@@ -83,6 +85,12 @@ livenessProbe:
{{- if .Values.gracedbSandboxed.enabled }}
- name: REQUESTS_CA_BUNDLE
value: /home/gwcelery/cacerts.pem
- name: GRACEDB_HOSTNAME
value: {{ .Values.publicName }}
- name: IGWN_HOSTNAME
value: {{ printf "kafka://%s" .Values.publicName }}
- name: KAFKA_HOSTNAME
value: {{ printf "kafka://%s" .Values.publicName }}
Please register or sign in to reply
{{- end }}
- name: LIGO_DATAFIND_SERVER
value: {{ .Values.ligoDatafindServer }}
@@ -97,6 +105,9 @@ livenessProbe:
- name: secrets-copy
mountPath: /home/gwcelery/.config/hop/auth.toml
subPath: auth.toml
- name: secrets-copy
mountPath: /home/gwcelery/.config/gwcelery/kafka_credential_map.json
subPath: kafka_credential_map.json
- name: secrets-copy
mountPath: /tmp/x509up_u1000
subPath: x509up_u1000
Loading