File size: 816 Bytes
94ecfcc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
apiVersion: v1
kind: Namespace
metadata:
name: ytdl
---
apiVersion: apps/v1
kind: Deployment
metadata:
creationTimestamp: null
labels:
ytdl: redis
name: redis
namespace: ytdl
spec:
replicas: 1
selector:
matchLabels:
ytdl: redis
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
ytdl: redis
spec:
containers:
- image: redis:7-alpine
name: redis
ports:
- containerPort: 6379
resources: {}
restartPolicy: Always
status: {}
---
apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
labels:
ytdl: redis
name: redis
namespace: ytdl
spec:
ports:
- name: "6379"
port: 6379
targetPort: 6379
selector:
ytdl: redis
status:
loadBalancer: {} |