Compare commits

...

2 Commits

Author SHA1 Message Date
Marcin-Ramotowski
c758570ad9 Created ConfigMap and Secret 2025-10-04 16:11:30 +02:00
Marcin-Ramotowski
25cd302c42 Updated docker images names 2025-10-04 16:11:19 +02:00
4 changed files with 17 additions and 2 deletions

7
odoo-configmap.yaml Normal file
View File

@@ -0,0 +1,7 @@
kind: ConfigMap
apiVersion: v1
metadata:
name: odoo-configmap
namespace: odoo
data:
DB_USER: odoo

View File

@@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: odoo
image: docker.io/bitnami/odoo:16
image: bitnamilegacy/odoo:16
ports:
- containerPort: 8069
env:

8
odoo-secret.yaml Normal file
View File

@@ -0,0 +1,8 @@
apiVersion: v1
kind: Secret
metadata:
name: odoo-secret
namespace: odoo
type: Opaque
data:
DB_PASSWORD: azhzbWFlc3Rybw==

View File

@@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: postgres
image: docker.io/bitnami/postgresql:15
image: bitnamilegacy/postgresql:15
ports:
- containerPort: 5432
env: