SIENTIAPDE-1163

Update values.yaml to restructure service definitions

- Changed the service configuration to a nested structure under 'services'.
- Introduced 'api' and 'opc' services with individual settings, both initially disabled.
- Updated ports for the 'api' service to 4841 while keeping the 'opc' service at 4840.
This commit is contained in:
vitor-aignosi
2025-07-17 10:52:33 -03:00
parent c18d6e5142
commit d1215344b8

View File

@@ -111,11 +111,21 @@ tolerations: []
affinity: {} affinity: {}
service: services:
enabled: true api:
type: ClusterIP enabled: false
port: 4840 type: ClusterIP
targetPort: 4840 port: 4841
targetPort: 4841
name: api
opc:
enabled: false
type: ClusterIP
port: 4840
targetPort: 4840
name: server
# Configuração do ServiceMonitor para o Prometheus Operator # Configuração do ServiceMonitor para o Prometheus Operator
# ref: https://github.com/prometheus-operator/prometheus-operator # ref: https://github.com/prometheus-operator/prometheus-operator