mirror of
https://github.com/amkartashov/gf-k8s.git
synced 2026-01-11 01:49:44 +00:00
add logging app
This commit is contained in:
parent
993e5801e1
commit
b8b41c44fe
6 changed files with 30 additions and 0 deletions
2
apps/system/logging/.gitignore
vendored
Normal file
2
apps/system/logging/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
requirements.lock
|
||||||
|
charts/
|
||||||
1
apps/system/logging/Chart.yaml
Normal file
1
apps/system/logging/Chart.yaml
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
name: logging
|
||||||
4
apps/system/logging/requirements.yaml
Normal file
4
apps/system/logging/requirements.yaml
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
dependencies:
|
||||||
|
- name: graylog
|
||||||
|
version: '1.3.9'
|
||||||
|
repository: '@stable'
|
||||||
0
apps/system/logging/values.yaml
Normal file
0
apps/system/logging/values.yaml
Normal file
19
main/apps/logging.yaml
Normal file
19
main/apps/logging.yaml
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: Application
|
||||||
|
metadata:
|
||||||
|
name: logging
|
||||||
|
namespace: argocd
|
||||||
|
finalizers:
|
||||||
|
- resources-finalizer.argocd.argoproj.io
|
||||||
|
spec:
|
||||||
|
destination:
|
||||||
|
namespace: logging
|
||||||
|
server: https://kubernetes.default.svc
|
||||||
|
project: default
|
||||||
|
source:
|
||||||
|
path: apps/system/logging
|
||||||
|
repoURL: git@github.com:gorilych/gf-k8s
|
||||||
|
syncPolicy:
|
||||||
|
automated:
|
||||||
|
prune: true
|
||||||
|
selfHeal: true
|
||||||
4
main/namespaces/logging.yaml
Normal file
4
main/namespaces/logging.yaml
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Namespace
|
||||||
|
metadata:
|
||||||
|
name: logging
|
||||||
Loading…
Reference in a new issue