Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump from debian:9.1 to debian:9.4. #841

Merged
merged 1 commit into from
Apr 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Bump from debian:9.1 to debian:9.4.
  • Loading branch information
Matt Hillsdon committed Apr 26, 2018
commit 6226f2d16fddc228fc33194ac36234cb2b380874
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