Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: bump vulnz-nvd-mirror version to 7.0.2 #65

Merged
merged 3 commits into from
Dec 7, 2024
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
5 changes: 5 additions & 0 deletions charts/vulnz-nvd-mirror/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.4.1

- upgrade vulnz to 7.0.2
- remove predefined JAVA_OPT settings, set default memory limit instead

## 0.4.0

- adjust mounted PVC permissions to match app's user
Expand Down
4 changes: 2 additions & 2 deletions charts/vulnz-nvd-mirror/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
kubeVersion: ">=1.24.0-0"
apiVersion: v2
name: vulnz-nvd-mirror
version: 0.4.0
appVersion: 7.0.1
version: 0.4.1
appVersion: 7.0.2
description: NVD api mirror and cache
home: https://github.com/EugenMayer/helm-charts/tree/main/charts/vulnz-nvd-mirror
deprecated: false
Expand Down
33 changes: 18 additions & 15 deletions charts/vulnz-nvd-mirror/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
image:
repository: ghcr.io/jeremylong/open-vulnerability-data-mirror
tag: v7.0.1
tag: v7.0.2
pullPolicy: IfNotPresent

persistence:
Expand Down Expand Up @@ -33,20 +33,6 @@ workload:
podSpec:
containers:
main:
env:
# set this to preseed your API key. the expected structure is
#NVD_API_KEY:
# secretKeyRef:
# name: nvd-api-key
# key: password
JAVA_OPT: -Xmx2g
# amount of retries
#MAX_RETRY: 10
# fetch max record pre page - cannot be higher then 2000 by API limits
#MAX_RECORDS_PER_PAGE: 2000
# show debug logs
#DEBUG: true

probes:
readiness:
port: 80
Expand All @@ -64,6 +50,23 @@ workload:
periodSeconds: 5
failureThreshold: 2

resources:
limits:
memory: 2Gi

# env:
# # set this to preseed your API key. the expected structure is
# NVD_API_KEY:
# secretKeyRef:
# name: nvd-api-key
# key: password
# # amount of retries
# MAX_RETRY: 10
# # fetch max record pre page - cannot be higher then 2000 by API limits
# MAX_RECORDS_PER_PAGE: 2000
# # show debug logs
# DEBUG: true

ingress:
main:
enabled: false
Expand Down