File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2058,6 +2058,11 @@ governance-service:
20582058 # @default -- `""` (auto-generated: "http://{Release.Name}-auth-service:8080")
20592059 authServiceUrl : " "
20602060
2061+ # -- PDF Generation Service URL
2062+ # @default -- `""` (auto-generated: "http://{Release.Name}-eqty-pdfgen:8080")
2063+ # PDF generation service base URL for policy report rendering
2064+ pdfgenServiceUrl : " "
2065+
20612066 # ---------------------------------------------------------------------------
20622067 # Service Account Configuration
20632068 # ---------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -520,6 +520,7 @@ All config values support global fallbacks when deployed via umbrella chart.
520520| -------------------------- | ------ | ------- | -------------------------------------------------------------------------------------- |
521521| config.integrityServiceUrl | string | ` "" ` | Integrity Service URL (auto-generated as http://{Release.Name}-integrity-service:3050) |
522522| config.authServiceUrl | string | ` "" ` | Auth Service URL (auto-generated as http://{Release.Name}-auth-service:8080) |
523+ | config.pdfgenServiceUrl | string | ` "" ` | PDF Generation Service URL (auto-generated as http://{Release.Name}-eqty-pdfgen:8080) |
523524
524525#### Worker Service Account Configuration
525526
Original file line number Diff line number Diff line change @@ -329,6 +329,8 @@ spec:
329329 value : {{ .Values.config.integrityServiceUrl | default (printf "http://%s-integrity-service:3050" .Release.Name) | quote }}
330330 - name : AUTH_SERVICE_URL
331331 value : {{ .Values.config.authServiceUrl | default (printf "http://%s-auth-service:8080" .Release.Name) | quote }}
332+ - name : PDFGEN_SERVICE_URL
333+ value : {{ .Values.config.pdfgenServiceUrl | default (printf "http://%s-eqty-pdfgen:8080" .Release.Name) | quote }}
332334
333335 {{- if .Values.config.serviceAccount.enabled }}
334336
Original file line number Diff line number Diff line change @@ -591,6 +591,11 @@ config:
591591 # @default -- `""` (auto-generated: "http://{Release.Name}-auth-service:8080")
592592 authServiceUrl : " "
593593
594+ # -- PDF Generation Service URL
595+ # @default -- `""` (auto-generated: "http://{Release.Name}-eqty-pdfgen:8080")
596+ # PDF generation service base URL for policy report rendering
597+ pdfgenServiceUrl : " "
598+
594599 # ---------------------------------------------------------------------------
595600 # Service Account Configuration
596601 # ---------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments