You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2022/12/07 18:08:24 UTC

[arrow-ballista] branch master updated: Fix Helm chart's image format (#550)

This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git


The following commit(s) were added to refs/heads/master by this push:
     new 9bfed3e9 Fix Helm chart's image format (#550)
9bfed3e9 is described below

commit 9bfed3e98c428bb806333d529a978dcd461fff99
Author: Xin Hao <ha...@gmail.com>
AuthorDate: Thu Dec 8 02:08:19 2022 +0800

    Fix Helm chart's image format (#550)
---
 helm/ballista/templates/executor.yaml  | 2 +-
 helm/ballista/templates/scheduler.yaml | 2 +-
 helm/ballista/values.yaml              | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/helm/ballista/templates/executor.yaml b/helm/ballista/templates/executor.yaml
index bf125971..4408d175 100644
--- a/helm/ballista/templates/executor.yaml
+++ b/helm/ballista/templates/executor.yaml
@@ -50,7 +50,7 @@ spec:
         - name: {{ .Chart.Name }}-executor
           securityContext:
             {{- toYaml .Values.securityContext | nindent 12 }}
-          image: "{{ .Values.image.repository }}{{ .Values.image.executor }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
+          image: "{{ .Values.image.repository }}/{{ .Values.image.executor }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
           imagePullPolicy: {{ .Values.image.pullPolicy }}
           command: ["/root/ballista-executor", "--scheduler-host=ballista-scheduler"]
           env:
diff --git a/helm/ballista/templates/scheduler.yaml b/helm/ballista/templates/scheduler.yaml
index 854f3472..fc44c2f2 100644
--- a/helm/ballista/templates/scheduler.yaml
+++ b/helm/ballista/templates/scheduler.yaml
@@ -50,7 +50,7 @@ spec:
         - name: {{ .Chart.Name }}-scheduler
           securityContext:
             {{- toYaml .Values.securityContext | nindent 12 }}
-          image: "{{ .Values.image.repository }}{{ .Values.image.scheduler }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
+          image: "{{ .Values.image.repository }}/{{ .Values.image.scheduler }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
           imagePullPolicy: {{ .Values.image.pullPolicy }}
           env:
             - name: AWS_DEFAULT_REGION
diff --git a/helm/ballista/values.yaml b/helm/ballista/values.yaml
index bbf31627..1bae8934 100644
--- a/helm/ballista/values.yaml
+++ b/helm/ballista/values.yaml
@@ -20,7 +20,7 @@ image:
   repository: ""
   scheduler: ballista-scheduler
   executor: ballista-executor
-  pullPolicy: Never
+  pullPolicy: IfNotPresent
   # Overrides the image tag whose default is the chart appVersion.
   tag: "latest"