Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions helm/templates/job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
initContainers:
{{- if or (eq .Values.job.prefix "default") (eq .Values.job.prefix "attribute") (eq .Values.job.prefix "all") }}
- name: attribute-service-ready
image: busybox
image: {{ .Values.initContainers.image.repository }}
imagePullPolicy: IfNotPresent
command: ["sh", "-c"]
args: ["until nc -zv {{ .Values.attributeServiceConfig.data.host }} {{ .Values.attributeServiceConfig.data.port }}; \
Expand All @@ -56,7 +56,7 @@ spec:
{{- end }}
{{- if or (eq .Values.job.prefix "default") (eq .Values.job.prefix "entity") (eq .Values.job.prefix "all") }}
- name: entity-service-ready
image: busybox
image: {{ .Values.initContainers.image.repository }}
imagePullPolicy: IfNotPresent
command: ["sh", "-c"]
args: ["until nc -zv {{ .Values.entityServiceConfig.data.host }} {{ .Values.entityServiceConfig.data.port }}; \
Expand Down
4 changes: 4 additions & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ image:

imagePullSecrets: []

initContainers:
image:
repository: busybox

nodeLabels: {}

javaOpts: "-Xms256M -Xmx768M"
Expand Down