mirror of
https://github.com/sameersbn/docker-gitlab.git
synced 2026-01-25 14:08:09 +00:00
27 lines
510 B
YAML
27 lines
510 B
YAML
apiVersion: v1
|
|
kind: ReplicationController
|
|
metadata:
|
|
name: redis
|
|
labels:
|
|
name: redis
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
name: redis
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: redis
|
|
spec:
|
|
containers:
|
|
- name: redis
|
|
image: quay.io/sameersbn/redis
|
|
ports:
|
|
- containerPort: 6379
|
|
protocol: TCP
|
|
livenessProbe:
|
|
TCPSocket:
|
|
port: 6379
|
|
initialDelaySeconds: 30
|
|
timeoutSeconds: 1
|