mirror of
https://github.com/wahyd4/home-argocd.git
synced 2026-08-09 05:06:20 +10:00
Add redis
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: redis
|
||||
namespace: argocd
|
||||
spec:
|
||||
project: default
|
||||
source:
|
||||
chart: redis
|
||||
repoURL: https://charts.bitnami.com/bitnami
|
||||
path: redis
|
||||
targetRevision: 16.8.5
|
||||
helm:
|
||||
releaseName: redis
|
||||
# valueFiles: ['redis-values.yaml']
|
||||
values: |
|
||||
auth:
|
||||
sentinel: false
|
||||
existingSecret: redis-credentials
|
||||
existingSecretPasswordKey: redis-password
|
||||
|
||||
persistence:
|
||||
existingClaim: nfs-redis
|
||||
volumePermissions:
|
||||
enabled: true
|
||||
# securityContext:
|
||||
# fsGroup: 1000
|
||||
# runAsUser: 1000
|
||||
metrics:
|
||||
enabled: true
|
||||
serviceMonitor:
|
||||
enabled: true
|
||||
additionalLabels:
|
||||
release: prometheus
|
||||
|
||||
master:
|
||||
service:
|
||||
type: ClusterIP
|
||||
persistence:
|
||||
enabled: true
|
||||
storageClass: nfs
|
||||
existingClaim: nfs-redis
|
||||
|
||||
replica:
|
||||
persistence:
|
||||
enabled: false
|
||||
|
||||
destination:
|
||||
server: https://192.168.1.2:6443
|
||||
namespace: db
|
||||
syncPolicy:
|
||||
automated:
|
||||
prune: true
|
||||
selfHeal: true
|
||||
Reference in New Issue
Block a user