This commit is contained in:
parent
f6cc9fde1f
commit
d53ae6af74
3 changed files with 66 additions and 0 deletions
|
@ -204,3 +204,57 @@ spec:
|
||||||
automated:
|
automated:
|
||||||
selfHeal: false
|
selfHeal: false
|
||||||
prune: true
|
prune: true
|
||||||
|
---
|
||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: Application
|
||||||
|
metadata:
|
||||||
|
name: loki
|
||||||
|
namespace: argocd
|
||||||
|
spec:
|
||||||
|
project: default
|
||||||
|
source:
|
||||||
|
- chart: loki
|
||||||
|
repoURL: https://grafana.github.io/helm-charts
|
||||||
|
targetRevision: 5.35.0
|
||||||
|
helm:
|
||||||
|
releaseName: loki
|
||||||
|
valueFiles:
|
||||||
|
- $values/loki/values.yaml
|
||||||
|
- repoURL: https://git.ar21.de/yolokube/core-deployments.git
|
||||||
|
targetRevision: HEAD
|
||||||
|
ref: values
|
||||||
|
- repoURL: https://git.ar21.de/yolokube/core-deployments.git
|
||||||
|
targetRevision: HEAD
|
||||||
|
path: loki
|
||||||
|
destination:
|
||||||
|
server: https://kubernetes.default.svc
|
||||||
|
namespace: logs
|
||||||
|
syncPolicy:
|
||||||
|
syncOptions:
|
||||||
|
- CreateNamespace=true
|
||||||
|
automated:
|
||||||
|
selfHeal: false
|
||||||
|
prune: true
|
||||||
|
---
|
||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: Application
|
||||||
|
metadata:
|
||||||
|
name: promtail
|
||||||
|
namespace: argocd
|
||||||
|
spec:
|
||||||
|
project: default
|
||||||
|
source:
|
||||||
|
- chart: promtail
|
||||||
|
repoURL: https://grafana.github.io/helm-charts
|
||||||
|
targetRevision: 6.15.3
|
||||||
|
helm:
|
||||||
|
releaseName: promtail
|
||||||
|
destination:
|
||||||
|
server: https://kubernetes.default.svc
|
||||||
|
namespace: logs
|
||||||
|
syncPolicy:
|
||||||
|
syncOptions:
|
||||||
|
- CreateNamespace=true
|
||||||
|
automated:
|
||||||
|
selfHeal: false
|
||||||
|
prune: true
|
6
loki/namespace.yaml
Normal file
6
loki/namespace.yaml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Namespace
|
||||||
|
metadata:
|
||||||
|
name: logs
|
||||||
|
labels:
|
||||||
|
prometheus: yolokube
|
6
loki/values.yaml
Normal file
6
loki/values.yaml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
minio:
|
||||||
|
enabled: true
|
||||||
|
replicas: 3
|
||||||
|
drivesPerNode: 4
|
||||||
|
loki:
|
||||||
|
auth_enabled: false
|
Loading…
Reference in a new issue