Skip to content

Commit

Permalink
Bump from debian:9.1 to debian:9.4. (argoproj#841)
Browse files Browse the repository at this point in the history
  • Loading branch information
mthx authored and jessesuen committed Apr 27, 2018
1 parent f3c4171 commit 30034d4
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Dockerfile-argoexec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:9.1
FROM debian:9.4

RUN apt-get update && \
apt-get install -y curl jq procps git tar && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-builder
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:9.1
FROM debian:9.4

RUN apt-get update && apt-get install -y \
git \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-cli
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:9.1
FROM debian:9.4

COPY dist/argo /bin/

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-workflow-controller
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:9.1
FROM debian:9.4

COPY dist/workflow-controller /bin/

Expand Down
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ spec:
- name: gen-random-int-bash
script:
image: debian:9.1
image: debian:9.4
command: [bash]
source: | # Contents of the here-script
cat /dev/urandom | od -N2 -An -i | awk -v f=1 -v r=100 '{printf "%i\n", f + r * $1 / 65536}'
Expand Down
2 changes: 1 addition & 1 deletion examples/arguments-artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ spec:
path: /usr/local/bin/kubectl
mode: 0755
container:
image: debian:9.1
image: debian:9.4
command: [sh, -c]
args: ["kubectl version"]
2 changes: 1 addition & 1 deletion examples/ci-output-artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ spec:
- name: release-artifact
container:
image: debian:9.1
image: debian:9.4
outputs:
artifacts:
- name: release
Expand Down
2 changes: 1 addition & 1 deletion examples/influxdb-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ spec:
path: /app
daemon: true
container:
image: debian:9.1
image: debian:9.4
restartPolicy: Always
readinessProbe:
httpGet:
Expand Down
2 changes: 1 addition & 1 deletion examples/input-artifact-http.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ spec:
http:
url: https://storage.googleapis.com/kubernetes-release/release/v1.8.0/bin/linux/amd64/kubectl
container:
image: debian:9.1
image: debian:9.4
command: [sh, -c]
args: ["kubectl version"]
2 changes: 1 addition & 1 deletion examples/scripts-bash.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:

- name: gen-random-int
script:
image: debian:9.1
image: debian:9.4
command: [bash]
source: |
cat /dev/urandom | od -N2 -An -i | awk -v f=1 -v r=100 '{printf "%i\n", f + r * $1 / 65536}'
Expand Down
8 changes: 4 additions & 4 deletions workflow/common/validate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ spec:
path: /usr/local/bin/kubectl
mode: 0755
container:
image: debian:9.1
image: debian:9.4
command: [sh, -c]
args: ["kubectl version"]
`
Expand Down Expand Up @@ -796,7 +796,7 @@ spec:
- name: leaf-with-parallelism
parallelism: 2
container:
image: debian:9.1
image: debian:9.4
command: [sh, -c]
args: ["kubectl version"]
`
Expand Down Expand Up @@ -824,7 +824,7 @@ spec:
template: try
- name: try
container:
image: debian:9.1
image: debian:9.4
command: [sh, -c]
args: ["kubectl version"]
`
Expand Down Expand Up @@ -1018,7 +1018,7 @@ spec:
templates:
- name: pod-name-variable
container:
image: debian:9.1
image: debian:9.4
command: [sh, -c]
args: ["kubectl {{pod.name}}"]
outputs:
Expand Down

0 comments on commit 30034d4

Please sign in to comment.