-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from evilmartians/0.9.0-cloudsql-backup
Update cloudsql-backup chart
- Loading branch information
Showing
8 changed files
with
16 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
apiVersion: v2 | ||
appVersion: "0.12.0" | ||
appVersion: "0.16.5" | ||
description: A Helm chart for periodical backup of cloud postgresql | ||
name: cloudsql-backup | ||
version: 0.8.1 | ||
version: 0.9.0 | ||
maintainers: | ||
- name: Maxim Filatov | ||
email: [email protected] | ||
- name: Kirill Kuznetsov | ||
email: [email protected] | ||
- name: Ilya Cherepanov | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
FROM postgres:13.4-alpine | ||
FROM postgres:14.12-alpine | ||
|
||
RUN apk -U --no-cache upgrade && apk add --no-cache ca-certificates | ||
|
||
# restic installation | ||
ARG RESTIC_URL=https://github.com/restic/restic/releases/download/v0.12.1/restic_0.12.1_linux_amd64.bz2 | ||
ARG RESTIC=restic_0.12.1_linux_amd64 | ||
ARG RESTIC_ARCHIVE=restic_0.12.1_linux_amd64.bz2 | ||
ARG RESTIC_SHA256SUM=11d6ee35ec73058dae73d31d9cd17fe79661090abeb034ec6e13e3c69a4e7088 | ||
ARG RESTIC_URL=https://github.com/restic/restic/releases/download/v0.16.5/restic_0.16.5_linux_amd64.bz2 | ||
ARG RESTIC=restic_0.16.5_linux_amd64 | ||
ARG RESTIC_ARCHIVE=restic_0.16.5_linux_amd64.bz2 | ||
ARG RESTIC_SHA256SUM=f1a9c39d396d1217c05584284352f4a3bef008be5d06ce1b81a6cf88f6f3a7b1 | ||
|
||
RUN wget -q "$RESTIC_URL" \ | ||
RUN wget -q "${RESTIC_URL}" \ | ||
&& echo "${RESTIC_SHA256SUM} ${RESTIC_ARCHIVE}" | sha256sum -c - \ | ||
&& bzip2 -d "${RESTIC_ARCHIVE}" \ | ||
&& chmod +x "$RESTIC" \ | ||
&& mv "$RESTIC" /usr/bin/restic | ||
&& chmod +x "${RESTIC}" \ | ||
&& mv "${RESTIC}" /usr/bin/restic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters