24 lines
774 B
YAML
24 lines
774 B
YAML
---
|
|
apiVersion: v1
|
|
data:
|
|
DATAHUB_HOST: alameda-datahub.{{ .Release.Namespace }}.svc
|
|
DATAHUB_PORT: "50050"
|
|
FEDEMETER_FILTER_TABLE: no_filter
|
|
FEDEMETER_INFLUXDB_HOST: fedemeter-influxdb.{{ .Release.Namespace }}.svc
|
|
FEDEMETER_INFLUXDB_PORT: "8086"
|
|
FEDEMETER_WORKER_NODE_LOWER_LIMIT: "1"
|
|
kind: ConfigMap
|
|
metadata:
|
|
annotations:
|
|
{{- if .Values.global.commonAnnotations }}
|
|
{{- include "render-value" ( dict "value" .Values.global.commonAnnotations "context" .) | nindent 4 }}
|
|
{{- end }}
|
|
labels:
|
|
{{- if .Values.global.commonLabels }}
|
|
{{- include "render-value" ( dict "value" .Values.global.commonLabels "context" .) | nindent 4 }}
|
|
{{- end }}
|
|
app.kubernetes.io/part-of: federatorai
|
|
app: alameda
|
|
name: fedemeter-config
|
|
namespace: {{ .Release.Namespace }}
|