Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ resources:
- external-dns/external-dns-cloudflare/ks.yaml
- cloudflare-operator-system/cloudflare-operator/ks.yaml
- cloudflare-operator-system/cloudflare-tunnel/ks.yaml
- logging/ks.yaml
- logging/logging-operator/ks.yaml
- logging/logging-config/ks.yaml
- kasten-io/ks.yaml
- spegel/ks.yaml
- renovate/ks.yaml
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- logging.yaml
- clusteroutput-vcflogs.yaml
- clusterflow-all.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
# logging-config — declares the actual logging pipeline (Logging,
# ClusterFlow, ClusterOutput CRs) on top of the operator's CRDs.
#
# Depends on `logging-operator` so Flux waits for the chart's
# HelmRelease to land + the CRDs to register before applying these
# CRs. Without this split, the kustomization failed on first apply
# with "no matches for kind Logging in version
# logging.banzaicloud.io/v1beta1".
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
name: logging-config
namespace: flux-system
spec:
interval: 1h
dependsOn:
- name: logging-operator
path: ./cluster-talos/kubernetes/infrastructure/platform/logging/logging-config/app
prune: true
sourceRef:
kind: GitRepository
name: flux-system
postBuild:
substituteFrom:
- kind: Secret
name: cluster-vars
wait: true
timeout: 5m
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- namespace.yaml
- helmrelease-operator.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
# logging-operator — installs the Kube Logging Operator HelmRelease.
# This ks owns the operator deployment + the CRDs it ships
# (Logging, ClusterFlow, ClusterOutput, FluentbitAgent, etc.).
#
# Split from `logging-config` because the CRs in that sister ks
# can't apply until these CRDs exist. Mirrors the
# cert-manager / certs split pattern already used in this repo.
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
name: logging-operator
namespace: flux-system
spec:
interval: 1h
dependsOn:
- name: configs
path: ./cluster-talos/kubernetes/infrastructure/platform/logging/logging-operator/app
prune: true
sourceRef:
kind: GitRepository
name: flux-system
wait: true
timeout: 5m
Loading