mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
59 lines
1.2 KiB
YAML
59 lines
1.2 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: videos-db
|
|
labels:
|
|
app: videos-db
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: videos-db
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: videos-db
|
|
spec:
|
|
initContainers:
|
|
- name: data
|
|
image: busybox
|
|
command: [ "sh", "-c" ]
|
|
args:
|
|
- |
|
|
cp /config/appendonly.aof /tmp/appendonly.aof
|
|
volumeMounts:
|
|
- name: data
|
|
mountPath: /tmp/
|
|
- name: config
|
|
mountPath: /config/
|
|
containers:
|
|
- name: videos-db
|
|
image: redis:6.0-alpine
|
|
ports:
|
|
- containerPort: 6379
|
|
volumeMounts:
|
|
- name: data
|
|
mountPath: /tmp/
|
|
command: [ "redis-server"]
|
|
args: ["--dir", "/tmp", "--appendonly", "yes"]
|
|
volumes:
|
|
- name: data
|
|
emptyDir: {}
|
|
- name: config
|
|
configMap:
|
|
name: videos-db
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: videos-db
|
|
labels:
|
|
app: videos-db
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: videos-db
|
|
ports:
|
|
- protocol: TCP
|
|
port: 6379
|
|
targetPort: 6379 |