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
2 changes: 1 addition & 1 deletion .github/workflows/helm_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ jobs:
uses: helm/kind-action@v1.12.0
- name: Run chart-testing (install)
if: steps.list-changed.outputs.changed == 'true'
run: ct install --target-branch ${{ github.event.repository.default_branch }}
run: ct install --target-branch ${{ github.event.repository.default_branch }} --helm-extra-set-args="--set EF_OUTPUT_STDOUT_ENABLE=true"
4 changes: 2 additions & 2 deletions charts/netobserv/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: netobserv
description: ElastiFlow NetObserv
type: application
version: 0.4.4
appVersion: 7.5.3
version: 0.4.5
appVersion: 7.10.3

keywords:
- netflow
Expand Down
4 changes: 4 additions & 0 deletions charts/netobserv/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ spec:
{{- end }}
- name: GEOIPUPDATE_DB_DIR
value: /data
{{- if .Values.maxmind.geoipEnabled }}
- name: GEOIPUPDATE_FREQUENCY
value: "{{ .Values.maxmind.geoipUpdateFrequency }}"
{{- end }}
volumeMounts:
- name: geolite2-data
mountPath: /data
Expand Down
10 changes: 6 additions & 4 deletions charts/netobserv/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ maxmind:
# Enabling geoip will look up the country, subdivisions (regions), city, and
# postal code associated with IPv4 and IPv6 addresses.
geoipEnabled: false
# When geoip is enabled, this specifies the frequency in hours to update the MaxMind geoip database.
geoipUpdateFrequency: 24
accountId: ""
licenseKey: ""

Expand Down Expand Up @@ -217,11 +219,11 @@ ingress:

resources:
limits:
cpu: 100m
memory: 384Mi
cpu: 2
memory: 4096Mi
requests:
cpu: 100m
memory: 384Mi
cpu: 1
memory: 2048Mi

livenessProbe:
enabled: true
Expand Down