Skip to content

Commit dfce5f8

Browse files
kgrubbmaksym-iv-ef
andauthored
Bump version to 7.10.3 (#41)
* bump version to latest patch release * bump version of netobserv to latest patch release. Add geoip update frequency to prevent maxmind pod from crashlooping. * Update charts/netobserv/templates/deployment.yaml Co-authored-by: Mack (Maksym Iv) <146473578+maksym-iv-elf@users.noreply.github.com> * add stdout output for chart testing to confirm pod health * ct uses a different opt syntax for adding extra set args * update version to 7.10.3 * use extra args properly * bump base cpu and memory * bump base cpu and memory again * increase base cpu and memory --------- Co-authored-by: Mack (Maksym Iv) <146473578+maksym-iv-elf@users.noreply.github.com>
1 parent ee6cdb1 commit dfce5f8

4 files changed

Lines changed: 13 additions & 7 deletions

File tree

.github/workflows/helm_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ jobs:
4040
uses: helm/kind-action@v1.12.0
4141
- name: Run chart-testing (install)
4242
if: steps.list-changed.outputs.changed == 'true'
43-
run: ct install --target-branch ${{ github.event.repository.default_branch }}
43+
run: ct install --target-branch ${{ github.event.repository.default_branch }} --helm-extra-set-args="--set EF_OUTPUT_STDOUT_ENABLE=true"

charts/netobserv/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: netobserv
33
description: ElastiFlow NetObserv
44
type: application
5-
version: 0.4.4
6-
appVersion: 7.5.3
5+
version: 0.4.5
6+
appVersion: 7.10.3
77

88
keywords:
99
- netflow

charts/netobserv/templates/deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ spec:
5656
{{- end }}
5757
- name: GEOIPUPDATE_DB_DIR
5858
value: /data
59+
{{- if .Values.maxmind.geoipEnabled }}
60+
- name: GEOIPUPDATE_FREQUENCY
61+
value: "{{ .Values.maxmind.geoipUpdateFrequency }}"
62+
{{- end }}
5963
volumeMounts:
6064
- name: geolite2-data
6165
mountPath: /data

charts/netobserv/values.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,8 @@ maxmind:
118118
# Enabling geoip will look up the country, subdivisions (regions), city, and
119119
# postal code associated with IPv4 and IPv6 addresses.
120120
geoipEnabled: false
121+
# When geoip is enabled, this specifies the frequency in hours to update the MaxMind geoip database.
122+
geoipUpdateFrequency: 24
121123
accountId: ""
122124
licenseKey: ""
123125

@@ -217,11 +219,11 @@ ingress:
217219

218220
resources:
219221
limits:
220-
cpu: 100m
221-
memory: 384Mi
222+
cpu: 2
223+
memory: 4096Mi
222224
requests:
223-
cpu: 100m
224-
memory: 384Mi
225+
cpu: 1
226+
memory: 2048Mi
225227

226228
livenessProbe:
227229
enabled: true

0 commit comments

Comments
 (0)