Skip to content

Commit

Permalink
fix: svc and deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kainlite committed Sep 25, 2024
1 parent 4d41d24 commit 6d3ad14
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
10 changes: 10 additions & 0 deletions manifests/app/03-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ spec:
name: web
port: 4000
targetPort: 4000
---
apiVersion: v1
kind: Service
metadata:
name: tr-metrics
namespace: tr
spec:
selector:
name: tr
ports:
- protocol: TCP
name: metrics
port: 9091
Expand Down
2 changes: 1 addition & 1 deletion manifests/monitoring/02-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ data:
scrape_configs:
- job_name: 'monitoring-job'
static_configs:
- targets: ['tr.tr.svc.cluster.local:9091']
- targets: ['tr-metrics.tr.svc.cluster.local:9091']
---
apiVersion: v1
kind: ConfigMap
Expand Down
5 changes: 0 additions & 5 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@ defmodule Tr.MixProject do
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
releases: [
tr: [
applications: [opentelemetry: :temporary]
]
]
]
end
Expand Down

0 comments on commit 6d3ad14

Please sign in to comment.