mirror of
https://github.com/sameersbn/docker-gitlab.git
synced 2026-01-25 14:08:09 +00:00
25 lines
452 B
YAML
25 lines
452 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: redis
|
|
labels:
|
|
name: redis
|
|
spec:
|
|
containers:
|
|
- name: redis
|
|
image: sameersbn/redis
|
|
ports:
|
|
- containerPort: 6379
|
|
protocol: TCP
|
|
volumeMounts:
|
|
- mountPath: /var/lib/redis
|
|
name: data
|
|
livenessProbe:
|
|
TCPSocket:
|
|
port: 6379
|
|
initialDelaySeconds: 30
|
|
timeoutSeconds: 5
|
|
volumes:
|
|
- name: data
|
|
emptyDir: {}
|