You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by gy...@apache.org on 2023/01/12 11:57:10 UTC

[flink-kubernetes-operator] 04/04: [hotfix][e2e] Pin busybox version

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

gyfora pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git

commit 8e41ed5ec1adda9ae06bc0b6203abf42939fbf2b
Author: Gyula Fora <g_...@apple.com>
AuthorDate: Thu Jan 12 11:37:59 2023 +0100

    [hotfix][e2e] Pin busybox version
---
 docs/content/docs/custom-resource/pod-template.md | 2 +-
 e2e-tests/data/flinkdep-cr.yaml                   | 2 +-
 examples/pod-template.yaml                        | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/content/docs/custom-resource/pod-template.md b/docs/content/docs/custom-resource/pod-template.md
index 7dd01354..9a544c9d 100644
--- a/docs/content/docs/custom-resource/pod-template.md
+++ b/docs/content/docs/custom-resource/pod-template.md
@@ -93,7 +93,7 @@ spec:
         initContainers:
           # Sample sidecar container
           - name: busybox
-            image: busybox:latest
+            image: busybox:1.33.1
             command: [ 'sh','-c','echo hello from task manager' ]
   job:
     jarURI: local:///opt/flink/examples/streaming/StateMachineExample.jar
diff --git a/e2e-tests/data/flinkdep-cr.yaml b/e2e-tests/data/flinkdep-cr.yaml
index 4c50b3a4..8458cbc2 100644
--- a/e2e-tests/data/flinkdep-cr.yaml
+++ b/e2e-tests/data/flinkdep-cr.yaml
@@ -44,7 +44,7 @@ spec:
     spec:
       initContainers:
         - name: artifacts-fetcher
-          image: busybox:latest
+          image: busybox:1.33.1
           imagePullPolicy: IfNotPresent
           # Use wget or other tools to get user jars from remote storage
           command: [ 'wget', 'https://repo1.maven.org/maven2/org/apache/flink/flink-examples-streaming_2.12/1.14.4/flink-examples-streaming_2.12-1.14.4.jar', '-O', '/flink-artifact/myjob.jar' ]
diff --git a/examples/pod-template.yaml b/examples/pod-template.yaml
index f2b6c6cb..9b01cdf5 100644
--- a/examples/pod-template.yaml
+++ b/examples/pod-template.yaml
@@ -65,7 +65,7 @@ spec:
         initContainers:
           # Sample init container for fetching remote artifacts
           - name: busybox
-            image: busybox:latest
+            image: busybox:1.33.1
             volumeMounts:
               - mountPath: /opt/flink/downloads
                 name: downloads