Skip to content

Commit

Permalink
[hotfix] Pin busybox version to 1.35.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xshipeng committed Feb 10, 2023
1 parent dfd1943 commit 80233f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/content/docs/custom-resource/pod-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ spec:
initContainers:
# Sample sidecar container
- name: busybox
image: busybox:1.36.0
image: busybox:1.35.0
command: [ 'sh','-c','echo hello from task manager' ]
job:
jarURI: local:///opt/flink/examples/streaming/StateMachineExample.jar
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/data/flinkdep-cr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ spec:
spec:
initContainers:
- name: artifacts-fetcher
image: busybox:1.36.0
image: busybox:1.35.0
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' ]
Expand Down
2 changes: 1 addition & 1 deletion examples/pod-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ spec:
initContainers:
# Sample init container for fetching remote artifacts
- name: busybox
image: busybox:1.36.0
image: busybox:1.35.0
volumeMounts:
- mountPath: /opt/flink/downloads
name: downloads
Expand Down

0 comments on commit 80233f2

Please sign in to comment.