SIENTIAPDE-1017

Enhance OPC ingestor with Redis authentication and update Helm chart configurations. Improve README for clarity on Docker and Kubernetes setup.
This commit is contained in:
vitor-aignosi
2025-04-25 13:26:42 -03:00
parent da079c6320
commit 9eb483ee92
15 changed files with 522 additions and 27 deletions

View File

@@ -0,0 +1,14 @@
{{- if .Values.service.enabled }}
apiVersion: v1
kind: Service
metadata:
name: "{{ .Values.nameOverride }}-service"
namespace: "{{ .Values.namespace }}"
spec:
selector:
app: "{{ .Values.nameOverride }}"
ports:
- port: {{ .Values.service.port | int }}
targetPort: {{ .Values.service.targetPort | int }}
type: "{{ .Values.service.type }}"
{{- end }}