This repository has been archived on 2023-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
gitops-tbrnt/odoo/deployment-odoo.yaml
Tobias Brunner 7411263e9d
All checks were successful
continuous-integration/drone/push Build is passing
install odoo - the app
2022-07-12 21:12:58 +02:00

60 lines
1.2 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: odoo
name: odoo
spec:
replicas: 1
strategy:
type: Recreate
selector:
matchLabels:
app: odoo
template:
metadata:
labels:
app: odoo
spec:
containers:
- env:
- name: HOST
value: db
- name: PASSWORD
value: odoo
- name: USER
value: odoo
image: docker.io/library/odoo:15
imagePullPolicy: Always
name: web
ports:
- name: http
containerPort: 8069
livenessProbe:
httpGet:
path: /
port: http
initialDelaySeconds: 300
periodSeconds: 30
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 6
readinessProbe:
httpGet:
path: /
port: http
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 6
volumeMounts:
- mountPath: /var/lib/odoo
name: odoo-data
hostname: web
restartPolicy: Always
volumes:
- name: odoo-data
persistentVolumeClaim:
claimName: odoo-data