Skip to content

Commit 7ab2ac5

Browse files
chore: sync from governance-studio-infrastructure @ c514171
Updated: charts Source: eqtylab/governance-studio-infrastructure@c514171
1 parent 45520fc commit 7ab2ac5

4 files changed

Lines changed: 13 additions & 0 deletions

File tree

charts/governance-platform/values.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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
# ---------------------------------------------------------------------------

charts/governance-service/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

charts/governance-service/templates/deployment.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

charts/governance-service/values.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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
# ---------------------------------------------------------------------------

0 commit comments

Comments
 (0)