initial commit

This commit is contained in:
allard
2025-11-23 18:58:51 +01:00
commit 376a944abc
1553 changed files with 314731 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: redis-insight
namespace: redis
labels:
app: redis-insight
spec:
replicas: 1
selector:
matchLabels:
app: redis-insight
template:
metadata:
labels:
app: redis-insight
spec:
containers:
- name: redis-insight
image: redis/redisinsight
ports:
- containerPort: 5540
env:
---
apiVersion: v1
kind: Service
metadata:
name: redis-insight
namespace: redis
labels:
name: redis-insight
spec:
type: ClusterIP
ports:
- port: 5540
name: http
selector:
app: redis-insight