mirror of
https://github.com/tgbot-collection/ytdlbot.git
synced 2025-02-25 07:44:13 +08:00
53 lines
816 B
YAML
53 lines
816 B
YAML
|
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: {}
|