Skip to content

Commit 97a9a53

Browse files
committed
Release 4.9.5
1 parent 356f57c commit 97a9a53

File tree

8 files changed

+119
-22
lines changed

8 files changed

+119
-22
lines changed

charts/cdefense/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ type: application
1313
# This is the chart version. This version number should be incremented each time you make changes
1414
# to the chart and its templates, including the app version.
1515
# Versions are expected to follow Semantic Versioning (https://semver.org/)
16-
version: 4.9.4
16+
version: 4.9.5
1717
# This is the version number of the application being deployed. This version number should be
1818
# incremented each time you make changes to the application. Versions are not expected to
1919
# follow Semantic Versioning. They should reflect the version the application is using.
2020
# It is recommended to use it with quotes.
21-
appVersion: "4.9.4"
21+
appVersion: "4.9.5"

charts/cdefense/templates/api/config.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,5 @@ data:
4040
CLOUDDEFENSE_SENDGRID_EMAIL: "support-noreply@clouddefense.ai"
4141
MICRONAUT_ENVIRONMENTS: {{ .Values.api.environment | default "dev" }}
4242
ALERT_SERVICE_URL: "http://alertservice"
43-
CUSTOM_ALLOWED_ORIGIN: {{ .Values.api.origin | default "https://cdefense.clouddefenseai.com" }}
43+
CUSTOM_ALLOWED_ORIGIN: {{ .Values.api.origin | default "https://cdefense.clouddefenseai.com" }}
44+
NODEJS_SERVER: "http://pdf-generator/"

charts/cdefense/templates/api/deployment.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,11 @@ spec:
363363
configMapKeyRef:
364364
name: scan-server-config
365365
key: ALERT_SERVICE_URL
366+
- name: NODEJS_SERVER
367+
valueFrom:
368+
configMapKeyRef:
369+
name: scan-server-config
370+
key: NODEJS_SERVER
366371
- name: ATTACK_PATH_KEY
367372
valueFrom:
368373
secretKeyRef:

charts/cdefense/templates/ingress.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,13 @@ spec:
7171
name: keycloak
7272
port:
7373
number: 80
74+
- path: /pdfGenerator/*
75+
pathType: ImplementationSpecific
76+
backend:
77+
service:
78+
name: pdf-generator
79+
port:
80+
number: 80
7481
- path: /cd-auth/*
7582
pathType: ImplementationSpecific
7683
backend:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{{ if .Values.pdfgenerator.enabled }}
2+
---
3+
apiVersion: apps/v1
4+
kind: Deployment
5+
metadata:
6+
name: pdf-generator
7+
namespace: {{ .Release.Namespace | default "default"}}
8+
spec:
9+
selector:
10+
matchLabels:
11+
app: pdf-generator
12+
# replicas: {{ .Values.pdfgenerator.replicas }}
13+
strategy:
14+
type: Recreate
15+
# type: RollingUpdate
16+
# rollingUpdate:
17+
# maxUnavailable: 0%
18+
# maxSurge: 25%
19+
template:
20+
metadata:
21+
labels:
22+
app: pdf-generator
23+
spec:
24+
{{- if .Values.pdfgenerator.nodeSelector }}
25+
nodeSelector:
26+
label: {{ .Values.pdfgenerator.nodeSelector }}
27+
{{- end }}
28+
{{- if .Values.pdfgenerator.tolerations }}
29+
tolerations:
30+
{{ toYaml .Values.pdfgenerator.tolerations | indent 8 }}
31+
{{- end }}
32+
imagePullSecrets:
33+
- name: regcred
34+
containers:
35+
- name: pdf-generator
36+
image: {{ .Values.pdfgenerator.image }}:{{ .Values.pdfgenerator.version }}
37+
imagePullPolicy: Always
38+
# resources:
39+
# requests:
40+
# memory: {{ .Values.pdfgenerator.resources.requests.memory}}
41+
# cpu: {{ .Values.pdfgenerator.resources.requests.cpu }}
42+
# limits:
43+
# memory: {{ .Values.pdfgenerator.resources.limits.memory}}
44+
# cpu: {{ .Values.pdfgenerator.resources.limits.cpu }}
45+
46+
{{ end }}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{{ if .Values.pdfgenerator.enabled }}
2+
---
3+
apiVersion: v1
4+
kind: Service
5+
metadata:
6+
name: pdf-generator
7+
labels:
8+
app: pdf-generator
9+
spec:
10+
type: {{ .Values.pdfgenerator.service.type }}
11+
selector:
12+
app: pdf-generator
13+
ports:
14+
{{- .Values.pdfgenerator.service.ports | toYaml | nindent 2 -}}
15+
16+
{{ end }}

charts/cdefense/values.yaml

+31-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "release-4.9.4"
1+
version: "release-4.9.5"
22
domain: clouddefenseai.com
33
hostname: cdefense.clouddefenseai.com
44

@@ -210,3 +210,33 @@ ai:
210210
maxReplicas: 3
211211
targetCPUUtilizationPercentage: 80
212212
targetMemoryUtilizationPercentage: 80
213+
214+
pdfgenerator:
215+
enabled: true
216+
nodeSelector: cdefense
217+
tolerations: []
218+
replicas: 1
219+
image: cdefense/pdf-generator-service
220+
version: "prod"
221+
resources:
222+
requests:
223+
memory: "750Mi"
224+
cpu: "250m"
225+
limits:
226+
memory: "1300Mi"
227+
# cpu: "50m"
228+
service:
229+
type: NodePort
230+
ports:
231+
- port: 80
232+
targetPort: 3000
233+
autoscaling:
234+
enabled: false
235+
minReplicas: 1
236+
maxReplicas: 5
237+
targetCPUUtilizationPercentage: 100
238+
targetMemoryUtilizationPercentage: 100
239+
scaleUpstabilizationWindowSeconds: 30
240+
scaleUpvalue: 1
241+
scaleDownstabilizationWindowSeconds: 20
242+
scaleDownvalue: 1

release.md

+10-18
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,15 @@
1-
Release Date : 11.11.2024
2-
Release Notes : 4.9.4
1+
Release Date : 17.12.2024
2+
Release Notes : 4.9.5
33

44
New Features:
55

6-
1) Added Schedule scan support for DAST and API scan: We have added schedule scan support for DAST and API scan, providing better user experience.
7-
2) Introduced License report: We have added license report for centralized tracking of utilization metrics.
8-
3) Added Scan Type filter at Application Page: We have added Scan Type filter at Application Page for better user experience.
9-
4) Moved Team Selector to side filter: We have removed the team selector from page header and moved it under side filter for better accessibility and uniformity.
10-
5) Combined Generic API key and Personal API key for better manageability.
11-
6) Captcha v3 Integration on #: Added Google reCAPTCHA v3 to the sign-up process to enhance security and prevent bot registrations.
12-
7) OTP Verification for Password: Implemented OTP validation to verify user identity before allowing password changes.
13-
8) Recover deleted application: We have provided facility to recover deleted application within 15 days to avoid accidental information loss.
14-
6+
1) Azure Container Registry Integration: We have introduced integration with Azure Container Registry (ACR), enabling seamless scanning functionality for enhanced container security.
7+
2) Google Artifact Registry Integration: Added integration and scanning functionality for Google Artifact Registry, ensuring broader support for artifact repositories.
8+
3) Graphical Widgets in Weekly Organization Report: Improved the Weekly Organization Report with graphical widgets for enhanced reporting and a more user-friendly visualization experience..
9+
4) Enhanced OSS Scan License for CLI: The OSS Scan License now includes additional information in the CLI version for more detailed and actionable reporting.
1510
Improvements:
1611

17-
1) Updated the Azure devops access token request access level.
18-
2) Bug Fixing on Backend: Fixed bugs across the application for better user experience.
19-
3) Fixed list of UI issues.
20-
4) Fixed report genration under Scan history
21-
5) Updated the rule mappings with OWASP top 10 and SANS top 25 standard.
22-
6) Removed error message shown on session logout.
23-
7) Fixed automated container image scan.
12+
1) Tighter User Privilege Controls: Implemented tighter restrictions on the actions each user role can perform across the platform.
13+
2) Revamped Email Templates: Redesigned email templates to provide more targeted and relevant information for users, ensuring clearer and more effective communication.
14+
3) Bug Fixing on Backend: Fixed bugs across the application for better user experience.
15+
4) Fixed list of UI issues.

0 commit comments

Comments
 (0)