Unverified Commit 0d0d8b22 authored by Kevin Di Lallo's avatar Kevin Di Lallo Committed by GitHub
Browse files

Merge pull request #4 from pastorsx/sp_dev_metricEngine_sp25

Metrics Engine Implementation
parents c2c1f0fb 169f08c7
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -53,6 +53,14 @@ repo:
        - -mod=vendor
      codecov: true
      lint: true
    meep-metrics-engine:
      src: go-apps/meep-metrics-engine
      bin: bin/meep-metrics-engine
      chart: charts/meep-metrics-engine
      build-flags:
        - -mod=vendor
      codecov: true
      lint: true
    meep-tc-engine:
      src: go-apps/meep-tc-engine
      bin: bin/meep-tc-engine
+1 −0
Original line number Diff line number Diff line
@@ -100,6 +100,7 @@ spec:
                  name: {{ template "couchdb.fullname" . }}
                  key: adminPassword
{{- end }}
      terminationGracePeriodSeconds: 5
{{- if .Values.nodeSelector }}
      nodeSelector:
{{ toYaml .Values.nodeSelector | indent 8 }}
+1 −0
Original line number Diff line number Diff line
@@ -186,6 +186,7 @@ spec:
              name: tls-cert
              readOnly: true
{{- end }}
      terminationGracePeriodSeconds: 5
{{- if .Values.nodeSelector }}
      nodeSelector:
{{ toYaml .Values.nodeSelector | indent 8 }}
+1 −0
Original line number Diff line number Diff line
@@ -136,6 +136,7 @@ spec:
          subPath: elasticsearch.keystore
          readOnly: true
{{- end }}
      terminationGracePeriodSeconds: 5
{{- if .Values.image.pullSecrets }}
      imagePullSecrets:
      {{- range $pullSecret := .Values.image.pullSecrets }}
+1 −0
Original line number Diff line number Diff line
@@ -172,6 +172,7 @@ spec:
{{- with .Values.extraContainers }}
{{ tpl . $ | indent 6 }}
{{- end }}
      terminationGracePeriodSeconds: 5
    {{- if .Values.image.pullSecrets }}
      imagePullSecrets:
{{ toYaml .Values.image.pullSecrets | indent 8 }}
Loading