diff --git a/apps/system/logging/.gitignore b/apps/system/logging/.gitignore new file mode 100644 index 0000000..719aed9 --- /dev/null +++ b/apps/system/logging/.gitignore @@ -0,0 +1,2 @@ +requirements.lock +charts/ diff --git a/apps/system/logging/Chart.yaml b/apps/system/logging/Chart.yaml new file mode 100644 index 0000000..c216ac4 --- /dev/null +++ b/apps/system/logging/Chart.yaml @@ -0,0 +1 @@ +name: logging diff --git a/apps/system/logging/requirements.yaml b/apps/system/logging/requirements.yaml new file mode 100644 index 0000000..2a95d3c --- /dev/null +++ b/apps/system/logging/requirements.yaml @@ -0,0 +1,4 @@ +dependencies: +- name: graylog + version: '1.3.9' + repository: '@stable' diff --git a/apps/system/logging/values.yaml b/apps/system/logging/values.yaml new file mode 100644 index 0000000..e69de29 diff --git a/main/apps/logging.yaml b/main/apps/logging.yaml new file mode 100644 index 0000000..3b6f277 --- /dev/null +++ b/main/apps/logging.yaml @@ -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 diff --git a/main/namespaces/logging.yaml b/main/namespaces/logging.yaml new file mode 100644 index 0000000..7a365ea --- /dev/null +++ b/main/namespaces/logging.yaml @@ -0,0 +1,4 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: logging