Created configuration to deploy Odoo app

This commit is contained in:
Marcin-Ramotowski
2025-05-18 19:55:38 +00:00
commit cf241d7771
4 changed files with 114 additions and 0 deletions

20
ingress.yaml Normal file
View File

@@ -0,0 +1,20 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: odoo-ingress
namespace: odoo
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
ingressClassName: nginx
rules:
- host: odoo.marcin00.pl
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: odoo
port:
number: 8069