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

chore(deps): update socialgouv/docker images to v6.70.1 #770

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/azure-pg/create-db.job.ts
Expand Up @@ -3,8 +3,8 @@ import { Job } from "kubernetes-models/batch/v1";
const DEFAULT_EXTENSIONS = "hstore pgcrypto citext uuid-ossp postgis";

const SOCIALGOUV_DOCKER_IMAGE = "ghcr.io/socialgouv/docker/azure-db";
// renovate: datasource=docker depName=ghcr.io/socialgouv/docker/azure-db versioning=6.56.1
const SOCIALGOUV_DOCKER_VERSION = "6.56.1";
// renovate: datasource=docker depName=ghcr.io/socialgouv/docker/azure-db versioning=6.70.1
const SOCIALGOUV_DOCKER_VERSION = "6.70.1";

export const createDbJob = ({
database,
Expand Down
4 changes: 2 additions & 2 deletions src/components/azure-pg/drop-autodevops-dbs.job.ts
Expand Up @@ -5,8 +5,8 @@ interface DropAutodevopsDbsJobArgs {
}

const SOCIALGOUV_DOCKER_IMAGE = "ghcr.io/socialgouv/docker/azure-db";
// renovate: datasource=docker depName=ghcr.io/socialgouv/docker/azure-db versioning=6.56.1
const SOCIALGOUV_DOCKER_VERSION = "6.56.1";
// renovate: datasource=docker depName=ghcr.io/socialgouv/docker/azure-db versioning=6.70.1
const SOCIALGOUV_DOCKER_VERSION = "6.70.1";

export const dropAutodevopsDbsJob = ({
secretRefName = `azure-pg-admin-user`,
Expand Down
4 changes: 2 additions & 2 deletions src/components/azure-pg/drop-db.job.ts
Expand Up @@ -2,8 +2,8 @@ import environments from "@socialgouv/kosko-charts/environments";
import { Job } from "kubernetes-models/batch/v1";

const SOCIALGOUV_DOCKER_IMAGE = "ghcr.io/socialgouv/docker/azure-db";
// renovate: datasource=docker depName=ghcr.io/socialgouv/docker/azure-db versioning=6.56.1
const SOCIALGOUV_DOCKER_VERSION = "6.56.1";
// renovate: datasource=docker depName=ghcr.io/socialgouv/docker/azure-db versioning=6.70.1
const SOCIALGOUV_DOCKER_VERSION = "6.70.1";

export const dropDbJob = ({
database,
Expand Down
4 changes: 2 additions & 2 deletions src/components/azure-pg/restore-db.job.ts
Expand Up @@ -23,8 +23,8 @@ interface RestoreDbJobArgs {
}

const SOCIALGOUV_DOCKER_IMAGE = "ghcr.io/socialgouv/docker/azure-db";
// renovate: datasource=docker depName=ghcr.io/socialgouv/docker/azure-db versioning=6.56.1
const SOCIALGOUV_DOCKER_VERSION = "6.56.1";
// renovate: datasource=docker depName=ghcr.io/socialgouv/docker/azure-db versioning=6.70.1
const SOCIALGOUV_DOCKER_VERSION = "6.70.1";

const restoreScript = `

Expand Down
4 changes: 2 additions & 2 deletions src/utils/waitForHttp.ts
@@ -1,8 +1,8 @@
import type { IIoK8sApiCoreV1Container } from "kubernetes-models/_definitions/IoK8sApiCoreV1Container";

const SOCIALGOUV_DOCKER_IMAGE = "ghcr.io/socialgouv/docker/wait-for-http";
// renovate: datasource=docker depName=ghcr.io/socialgouv/docker/wait-for-http versioning=6.56.1
const SOCIALGOUV_DOCKER_VERSION = "6.56.1";
// renovate: datasource=docker depName=ghcr.io/socialgouv/docker/wait-for-http versioning=6.70.1
const SOCIALGOUV_DOCKER_VERSION = "6.70.1";

/** params for the [[waitForHttp]] function */
export interface WaitForHttpParams {
Expand Down
4 changes: 2 additions & 2 deletions src/utils/waitForPostgres.ts
@@ -1,8 +1,8 @@
import type { IIoK8sApiCoreV1Container } from "kubernetes-models/_definitions/IoK8sApiCoreV1Container";

const SOCIALGOUV_DOCKER_IMAGE = "ghcr.io/socialgouv/docker/wait-for-postgres";
// renovate: datasource=docker depName=ghcr.io/socialgouv/docker/wait-for-postgres versioning=6.56.1
const SOCIALGOUV_DOCKER_VERSION = "6.56.1";
// renovate: datasource=docker depName=ghcr.io/socialgouv/docker/wait-for-postgres versioning=6.70.1
const SOCIALGOUV_DOCKER_VERSION = "6.70.1";

/** params for the [[waitForPostgres]] function */
export interface WaitForPostgresParams {
Expand Down