We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9526f54 commit f2c3d7dCopy full SHA for f2c3d7d
redis-load-test.yaml
@@ -0,0 +1,31 @@
1
+---
2
+apiVersion: apps/v1
3
+kind: Deployment
4
+metadata:
5
+ name: redis-load-test
6
+spec:
7
+ strategy:
8
+ type: Recreate
9
+ selector:
10
+ matchLabels:
11
+ app: redis-load-test
12
+ replicas: 1
13
+ template:
14
+ metadata:
15
+ labels:
16
17
+ spec:
18
+ containers:
19
+ - env:
20
+ - name: REDIS_PORT
21
+ value: "6379"
22
+ - name: REDIS_HOST
23
+ value: "localhost"
24
+ - name: REDIS_PW
25
+ value: "your_redis_auth"
26
27
+ image: arieslaluces/rlt:latest
28
+ ports:
29
+ - containerPort: 80
30
+
31
0 commit comments