From bfc6bd3587b73043777a1d42c8d0c498ba8fdd7f Mon Sep 17 00:00:00 2001 From: Steve Kriss Date: Thu, 30 Apr 2020 16:13:20 -0600 Subject: [PATCH] update container base images from bionic to focal (#2471) Signed-off-by: Steve Kriss --- Dockerfile-velero | 2 +- Dockerfile-velero-arm | 2 +- Dockerfile-velero-arm64 | 2 +- Dockerfile-velero-ppc64le | 2 +- Dockerfile-velero-restic-restore-helper | 2 +- Dockerfile-velero-restic-restore-helper-arm | 2 +- Dockerfile-velero-restic-restore-helper-arm64 | 2 +- Dockerfile-velero-restic-restore-helper-ppc64le | 2 +- changelogs/unreleased/2471-skriss | 1 + 9 files changed, 9 insertions(+), 8 deletions(-) create mode 100644 changelogs/unreleased/2471-skriss diff --git a/Dockerfile-velero b/Dockerfile-velero index dddd63216..db1fe1cbe 100644 --- a/Dockerfile-velero +++ b/Dockerfile-velero @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM ubuntu:bionic +FROM ubuntu:focal LABEL maintainer="Steve Kriss " diff --git a/Dockerfile-velero-arm b/Dockerfile-velero-arm index 2fa28046e..552a40064 100644 --- a/Dockerfile-velero-arm +++ b/Dockerfile-velero-arm @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM arm32v7/ubuntu:bionic +FROM arm32v7/ubuntu:focal ADD /bin/linux/arm/restic /usr/bin/restic diff --git a/Dockerfile-velero-arm64 b/Dockerfile-velero-arm64 index e92732292..b7ba6578d 100644 --- a/Dockerfile-velero-arm64 +++ b/Dockerfile-velero-arm64 @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM arm64v8/ubuntu:bionic +FROM arm64v8/ubuntu:focal ADD /bin/linux/arm64/restic /usr/bin/restic diff --git a/Dockerfile-velero-ppc64le b/Dockerfile-velero-ppc64le index c7125672b..79193be54 100644 --- a/Dockerfile-velero-ppc64le +++ b/Dockerfile-velero-ppc64le @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM ppc64le/ubuntu:bionic +FROM ppc64le/ubuntu:focal LABEL maintainer="Prajyot Parab " diff --git a/Dockerfile-velero-restic-restore-helper b/Dockerfile-velero-restic-restore-helper index 045c7752f..d3c87b95b 100644 --- a/Dockerfile-velero-restic-restore-helper +++ b/Dockerfile-velero-restic-restore-helper @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM ubuntu:bionic +FROM ubuntu:focal LABEL maintainer="Steve Kriss " diff --git a/Dockerfile-velero-restic-restore-helper-arm b/Dockerfile-velero-restic-restore-helper-arm index aa0ead6c2..f95f11919 100644 --- a/Dockerfile-velero-restic-restore-helper-arm +++ b/Dockerfile-velero-restic-restore-helper-arm @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM arm32v7/ubuntu:bionic +FROM arm32v7/ubuntu:focal ADD /bin/linux/arm/velero-restic-restore-helper . diff --git a/Dockerfile-velero-restic-restore-helper-arm64 b/Dockerfile-velero-restic-restore-helper-arm64 index b42220d0a..15b15e555 100644 --- a/Dockerfile-velero-restic-restore-helper-arm64 +++ b/Dockerfile-velero-restic-restore-helper-arm64 @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM arm64v8/ubuntu:bionic +FROM arm64v8/ubuntu:focal ADD /bin/linux/arm64/velero-restic-restore-helper . diff --git a/Dockerfile-velero-restic-restore-helper-ppc64le b/Dockerfile-velero-restic-restore-helper-ppc64le index 556d13112..1b712ff00 100644 --- a/Dockerfile-velero-restic-restore-helper-ppc64le +++ b/Dockerfile-velero-restic-restore-helper-ppc64le @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM ppc64le/ubuntu:bionic +FROM ppc64le/ubuntu:focal LABEL maintainer="Prajyot Parab " diff --git a/changelogs/unreleased/2471-skriss b/changelogs/unreleased/2471-skriss new file mode 100644 index 000000000..a7138f57b --- /dev/null +++ b/changelogs/unreleased/2471-skriss @@ -0,0 +1 @@ +update container base images from ubuntu:bionic to ubuntu:focal