Initial commit

This commit is contained in:
2021-04-20 00:36:44 +02:00
commit aa671d7c8d
9 changed files with 334 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: controller-redis
spec:
replicas: 1
selector:
matchLabels:
app: controller-redis
template:
metadata:
labels:
app: controller-redis
spec:
containers:
- name: controller-redis
image: redis
---
apiVersion: v1
kind: Service
metadata:
name: controller-redis-service
spec:
selector:
app: controller-redis
ports:
- name: controller-redis
protocol: TCP
port: 6390
targetPort: 6390