diff --git a/plugins/cloud-costs/CHANGELOG.md b/plugins/cloud-costs/CHANGELOG.md index d0fc39cf9..64b3d8185 100644 --- a/plugins/cloud-costs/CHANGELOG.md +++ b/plugins/cloud-costs/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.3.2 +* Removed anthoscli + ## 0.3.1 * Replaced cloud costs image diff --git a/plugins/cloud-costs/Dockerfile b/plugins/cloud-costs/Dockerfile index a3ece1c63..e3425c301 100644 --- a/plugins/cloud-costs/Dockerfile +++ b/plugins/cloud-costs/Dockerfile @@ -20,6 +20,7 @@ RUN if [ "${TARGETARCH}" = "arm64" ] ; then googleArch="arm"; else googleArch="x ./google-cloud-sdk/install.sh && \ rm -rf google-cloud-sdk.tar.gz +RUN rm ./google-cloud-sdk/bin/anthoscli RUN ./google-cloud-sdk/bin/gcloud components install bq COPY cloud-costs.sh cloud-costs.sh diff --git a/plugins/cloud-costs/version.txt b/plugins/cloud-costs/version.txt index a2268e2de..9fc80f937 100644 --- a/plugins/cloud-costs/version.txt +++ b/plugins/cloud-costs/version.txt @@ -1 +1 @@ -0.3.1 \ No newline at end of file +0.3.2 \ No newline at end of file diff --git a/plugins/postgres-partman/CHANGELOG.md b/plugins/postgres-partman/CHANGELOG.md index 7c5f09e1f..9fe475a6b 100644 --- a/plugins/postgres-partman/CHANGELOG.md +++ b/plugins/postgres-partman/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 14.8.0 +* upgrading postgres version + ## 14.7.1 * Add `apt-get update` to Dockerfile diff --git a/plugins/postgres-partman/Dockerfile b/plugins/postgres-partman/Dockerfile index 64830616b..d060e0563 100644 --- a/plugins/postgres-partman/Dockerfile +++ b/plugins/postgres-partman/Dockerfile @@ -1,13 +1,14 @@ -FROM docker.io/bitnami/postgresql:14.7.0-debian-11-r31 +FROM postgres:14.10-alpine3.19 USER root -ENV PG_PARTMAN_VERSION v4.7.3 -RUN apt-get update -RUN install_packages wget -RUN install_packages make -RUN install_packages gcc -RUN install_packages libc6-dev -RUN wget -O pg_partman.tar.gz "https://github.com/pgpartman/pg_partman/archive/$PG_PARTMAN_VERSION.tar.gz" +ENV PG_PARTMAN_VERSION v4.6.2 + +RUN apk -U upgrade +RUN apk update && apk upgrade + +RUN apk add curl make gcc libc-dev postgresql-dev + +RUN curl -L https://github.com/pgpartman/pg_partman/archive/$PG_PARTMAN_VERSION.tar.gz -o "pg_partman.tar.gz" RUN mkdir -p /usr/src/pg_partman \ && tar \ --extract \ diff --git a/plugins/postgres-partman/version.txt b/plugins/postgres-partman/version.txt index a984c5e3f..9306ff90b 100644 --- a/plugins/postgres-partman/version.txt +++ b/plugins/postgres-partman/version.txt @@ -1 +1 @@ -14.7.1 +14.8.0