You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ch...@apache.org on 2023/03/26 10:19:55 UTC

[kyuubi] branch master updated: [KYUUBI #4605] [K8S][HELM] Set IfNotPresent pullPolicy by default

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

chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git


The following commit(s) were added to refs/heads/master by this push:
     new 5289d1c2d [KYUUBI #4605] [K8S][HELM] Set IfNotPresent pullPolicy by default
5289d1c2d is described below

commit 5289d1c2d8e48105dad1e7b1f29c126f2ca19975
Author: dnskr <dn...@gmail.com>
AuthorDate: Sun Mar 26 18:19:46 2023 +0800

    [KYUUBI #4605] [K8S][HELM] Set IfNotPresent pullPolicy by default
    
    ### _Why are the changes needed?_
    The change is needed to avoid pulling immutable image `apache/kyuubi:1.7.0` from image registry each time pod created.
    Current `pullPolicy: Always` was important when mutable image `apache/kyuubi:master-snapshot` was used.
    
    ### _How was this patch tested?_
    - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible
    
    - [ ] Add screenshots for manual tests if appropriate
    
    - [ ] [Run test](https://kyuubi.readthedocs.io/en/master/develop_tools/testing.html#running-tests) locally before make a pull request
    
    Closes #4605 from dnskr/chart_pullPolicy.
    
    Closes #4605
    
    0f323ab46 [dnskr] [K8S][HELM] Set IfNotPresent pullPolicy by default
    
    Authored-by: dnskr <dn...@gmail.com>
    Signed-off-by: Cheng Pan <ch...@apache.org>
---
 charts/kyuubi/values.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/charts/kyuubi/values.yaml b/charts/kyuubi/values.yaml
index 876aa0fe4..e2a59bc91 100644
--- a/charts/kyuubi/values.yaml
+++ b/charts/kyuubi/values.yaml
@@ -24,7 +24,7 @@ replicaCount: 2
 
 image:
   repository: apache/kyuubi
-  pullPolicy: Always
+  pullPolicy: IfNotPresent
   tag: ~
 
 imagePullSecrets: []