Skip to content

Commit

Permalink
fix: add missing exporter netpols (#142)
Browse files Browse the repository at this point in the history
## Description

#141
  • Loading branch information
zachariahmiller committed Jun 5, 2024
1 parent 66bb3ba commit 9b5a258
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions chart/templates/uds-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,32 @@ spec:
{{- end }}
description: "Sidekiq Postgres"

- direction: Egress
selector:
app: gitlab-exporter
{{- if .Values.redis.internal }}
remoteNamespace: {{ .Values.redis.namespace | quote }}
remoteSelector:
{{ .Values.redis.selector | toYaml | nindent 10 }}
port: {{ .Values.redis.port }}
{{- else }}
remoteGenerated: Anywhere
{{- end }}
description: "Exporter Redis"

- direction: Egress
selector:
app: gitlab-exporter
{{- if .Values.postgres.internal }}
remoteNamespace: {{ .Values.postgres.namespace | quote }}
remoteSelector:
{{ .Values.postgres.selector | toYaml | nindent 10 }}
port: {{ .Values.postgres.port }}
{{- else }}
remoteGenerated: Anywhere
{{- end }}
description: "Exporter Postgres"

# Migrations Netpols
- direction: Egress
selector:
Expand Down

0 comments on commit 9b5a258

Please sign in to comment.