mirror of
https://github.com/sameersbn/docker-gitlab.git
synced 2026-01-18 13:58:25 +00:00
27 lines
502 B
YAML
27 lines
502 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: sameersbn/redis
|
|
ports:
|
|
- containerPort: 6379
|
|
protocol: TCP
|
|
livenessProbe:
|
|
TCPSocket:
|
|
port: 6379
|
|
initialDelaySeconds: 30
|
|
timeoutSeconds: 1
|