mirror of
https://github.com/openappsec/openappsec.git
synced 2025-09-30 19:47:44 +03:00
Adding open-appsec-kong helm chart to repo based on kong 2.16.1
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
{{ if (and (.Values.postgresql.enabled) .Values.waitImage.enabled) }}
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: {{ template "kong.fullname" . }}-bash-wait-for-postgres
|
||||
namespace: {{ template "kong.namespace" . }}
|
||||
labels:
|
||||
{{- include "kong.metaLabels" . | nindent 4 }}
|
||||
data:
|
||||
wait.sh: |
|
||||
until timeout 2 bash -c "9<>/dev/tcp/${KONG_PG_HOST}/${KONG_PG_PORT}"
|
||||
do echo "waiting for db - trying ${KONG_PG_HOST}:${KONG_PG_PORT}"
|
||||
sleep 2
|
||||
done
|
||||
{{ end }}
|
Reference in New Issue
Block a user