Inclut des manifests pour le Deployment, le Service et un example de Secret ConfigMap.
45 lines
1 KiB
YAML
45 lines
1 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: agendas-deployment
|
|
labels:
|
|
app: agendas
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: agendas
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: agendas
|
|
spec:
|
|
containers:
|
|
- name: agendas
|
|
image: git.agecem.com/bottin/agendas:latest
|
|
command: ['agendas', '--config', '/etc/agendas/config.yaml']
|
|
imagePullPolicy: Always
|
|
ports:
|
|
- containerPort: 3333
|
|
volumeMounts:
|
|
- name: config-secret
|
|
mountPath: '/etc/agendas/'
|
|
readOnly: true
|
|
- name: localtime
|
|
mountPath: /etc/localtime
|
|
readOnly: true
|
|
volumes:
|
|
- name: config-secret
|
|
secret:
|
|
secretName: agendas-config-secret
|
|
items:
|
|
- key: config.yaml
|
|
path: config.yaml
|
|
- key: cert.pem
|
|
path: cert.pem
|
|
- key: key.pem
|
|
path: key.pem
|
|
- name: localtime
|
|
hostPath:
|
|
path: /etc/localtime
|
|
type: File
|