From bbbea24bf0a09967784356940f5e3f9cfde463fe Mon Sep 17 00:00:00 2001 From: Marcin-Ramotowski Date: Sat, 4 Oct 2025 16:08:59 +0200 Subject: [PATCH] Updated docker images names --- odoo-configmap.yaml | 7 +++++++ odoo-deploy.yaml | 2 +- odoo-secret.yaml | 8 ++++++++ postgres-deploy.yaml | 2 +- 4 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 odoo-configmap.yaml create mode 100644 odoo-secret.yaml diff --git a/odoo-configmap.yaml b/odoo-configmap.yaml new file mode 100644 index 0000000..0894403 --- /dev/null +++ b/odoo-configmap.yaml @@ -0,0 +1,7 @@ +kind: ConfigMap +apiVersion: v1 +metadata: + name: odoo-configmap + namespace: odoo +data: + DB_USER: odoo \ No newline at end of file diff --git a/odoo-deploy.yaml b/odoo-deploy.yaml index df6c879..4bb6eca 100644 --- a/odoo-deploy.yaml +++ b/odoo-deploy.yaml @@ -15,7 +15,7 @@ spec: spec: containers: - name: odoo - image: docker.io/bitnami/odoo:16 + image: bitnamilegacy/odoo:16 ports: - containerPort: 8069 env: diff --git a/odoo-secret.yaml b/odoo-secret.yaml new file mode 100644 index 0000000..1e173f9 --- /dev/null +++ b/odoo-secret.yaml @@ -0,0 +1,8 @@ +apiVersion: v1 +kind: Secret +metadata: + name: odoo-secret + namespace: odoo +type: Opaque +data: + DB_PASSWORD: azhzbWFlc3Rybw== \ No newline at end of file diff --git a/postgres-deploy.yaml b/postgres-deploy.yaml index 3ba12c5..6bed926 100644 --- a/postgres-deploy.yaml +++ b/postgres-deploy.yaml @@ -15,7 +15,7 @@ spec: spec: containers: - name: postgres - image: docker.io/bitnami/postgresql:15 + image: bitnamilegacy/postgresql:15 ports: - containerPort: 5432 env: