refactor: move stuff around mostly

This commit is contained in:
2024-01-30 19:31:55 +01:00
parent d440c255c9
commit c85fe82429
6 changed files with 15 additions and 9 deletions
+8
View File
@@ -14,4 +14,12 @@ spec:
chart: redis
helm:
values: |
architecture: replication
auth:
enabled: true
sentinel: true
password: ""
existingSecret: ""
existingSecretPasswordKey: ""
usePasswordFiles: false
+18
View File
@@ -0,0 +1,18 @@
apiVersion: v1
kind: Service
metadata:
name: redis-nodeport
namespace: oceanbox
spec:
externalTrafficPolicy: Cluster
ports:
- name: redis
nodePort: 30379
port: 6379
protocol: TCP
targetPort: 6379
selector:
app.kubernetes.io/instance: redis
app.kubernetes.io/name: redis
sessionAffinity: None
type: NodePort