mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-17 18:24:14 +02:00
26 lines
750 B
YAML
26 lines
750 B
YAML
---
|
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/fluxcd-community/flux2-schemas/main/helmrelease-helm-v2beta1.json
|
|
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: vector-aggregator
|
|
namespace: monitoring
|
|
spec:
|
|
values:
|
|
initContainers:
|
|
init-geoip:
|
|
image: docker.io/maxmindinc/geoipupdate:v6.0
|
|
env:
|
|
- name: GEOIPUPDATE_EDITION_IDS
|
|
value: GeoLite2-City
|
|
- name: GEOIPUPDATE_FREQUENCY
|
|
value: "0"
|
|
- name: GEOIPUPDATE_VERBOSE
|
|
value: "true"
|
|
envFrom:
|
|
- secretRef:
|
|
name: vector-aggregator-secret
|
|
volumeMounts:
|
|
- name: geoip
|
|
mountPath: /usr/share/GeoIP
|