Skip to content

Commit 81fbda1

Browse files
committed
Resolved merge conflicts
2 parents 3ce4e7b + 9a78705 commit 81fbda1

File tree

79 files changed

+2149
-650
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+2149
-650
lines changed

cwf/gateway/go.sum

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ github.com/facebookincubator/ent v0.0.0-20191128071424-29c7b0a0d805 h1:Gqrw3IfjW
7474
github.com/facebookincubator/ent v0.0.0-20191128071424-29c7b0a0d805/go.mod h1:3CGvz1m+D78JUti7JFkY6AkKj88McWuT80UcamLqEJQ=
7575
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
7676
github.com/fiorix/go-diameter/v4 v4.0.1-0.20200102140015-a6c006d17e34/go.mod h1:Qx/+pf+c9sBUHWq1d7EH3bkdwN8U0mUpdy9BieDw6UQ=
77+
github.com/fiorix/go-diameter/v4 v4.0.1/go.mod h1:Qx/+pf+c9sBUHWq1d7EH3bkdwN8U0mUpdy9BieDw6UQ=
7778
github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g=
7879
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
7980
github.com/getsentry/raven-go v0.1.0/go.mod h1:KungGk8q33+aIAZUIVWZDr2OfAEBsO49PX4NzFV5kcQ=

docs/readmes/orc8r/deploy_build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ When this job finishes, upload these images to your image registry:
2222

2323
```bash
2424
export MAGMA_TAG=v1.0.0
25-
for image in proxy controller prometheus-cache config-manager grafana
25+
for image in proxy controller prometheus-cache alertmanager-configurer prometheus-configurer grafana
2626
do
2727
../../../orc8r/tools/docker/publish.sh -r REGISTRY -i ${image} -v ${MAGMA_TAG}
2828
done

docs/readmes/orc8r/deploy_install.md

Lines changed: 23 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ prometheusPushAddresses:
172172
- "http://orc8r-prometheus-cache:9091/metrics"
173173
174174
alertmanagerApiURL: "http://orc8r-alertmanager:9093/api/v2/alerts"
175-
prometheusConfigServiceURL: "http://orc8r-config-manager:9100"
176-
alertmanagerConfigServiceURL: "http://orc8r-config-manager:9101"
175+
prometheusConfigServiceURL: "http://orc8r-prometheus-configurer:9100"
176+
alertmanagerConfigServiceURL: "http://orc8r-alertmanager-configurer:9101"
177177
```
178178

179179
## Initial Helm Deploy
@@ -265,10 +265,18 @@ metrics:
265265
nodeSelector:
266266
worker-type: metrics
267267
268-
configmanager:
268+
alertmanagerConfigurer:
269269
create: true
270270
image:
271-
repository: YOUR-DOCKER-REGISTRY/config-manager
271+
repository: YOUR-DOCKER-REGISTRY/alertmanager-configurer
272+
tag: YOUR-CONTAINER-TAG
273+
nodeSelector:
274+
worker-type: metrics
275+
276+
prometheusConfigurer:
277+
create: true
278+
image:
279+
repository: YOUR-DOCKER-REGISTRY/prometheus-configurer
272280
tag: YOUR-CONTAINER-TAG
273281
nodeSelector:
274282
worker-type: metrics
@@ -350,16 +358,17 @@ First, find a `orc8r-controller-` pod in k8s:
350358
```bash
351359
$ kubectl -n magma get pods
352360

353-
NAME READY STATUS RESTARTS AGE
354-
orc8r-configmanager-896d784bc-chqr7 1/1 Running 0 X
355-
orc8r-controller-7757567bf5-cm4wn 1/1 Running 0 X
356-
orc8r-controller-7757567bf5-jshpv 1/1 Running 0 X
357-
orc8r-alertmanager-c8dc7cdb5-crzpl 1/1 Running 0 X
358-
orc8r-grafana-6446b97885-ck6g8 1/1 Running 0 X
359-
orc8r-prometheus-6c67bcc9d8-6lx22 1/1 Running 0 X
360-
orc8r-prometheus-cache-6bf7648446-9t9hx 1/1 Running 0 X
361-
orc8r-proxy-57cf989fcc-cg54z 1/1 Running 0 X
362-
orc8r-proxy-57cf989fcc-xn2cw 1/1 Running 0 X
361+
NAME READY STATUS RESTARTS AGE
362+
orc8r-alertmanager-configurer-c8dc7cdb5-crzpl 1/1 Running 0 X
363+
orc8r-controller-7757567bf5-cm4wn 1/1 Running 0 X
364+
orc8r-controller-7757567bf5-jshpv 1/1 Running 0 X
365+
orc8r-alertmanager-c8dc7cdb5-crzpl 1/1 Running 0 X
366+
orc8r-grafana-6446b97885-ck6g8 1/1 Running 0 X
367+
orc8r-prometheus-6c67bcc9d8-6lx22 1/1 Running 0 X
368+
orc8r-prometheus-cache-6bf7648446-9t9hx 1/1 Running 0 X
369+
orc8r-prometheus-configurer-896d784bc-chqr7 1/1 Running 0 X
370+
orc8r-proxy-57cf989fcc-cg54z 1/1 Running 0 X
371+
orc8r-proxy-57cf989fcc-xn2cw 1/1 Running 0 X
363372
```
364373

365374
Then:

feg/gateway/go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
module magma/feg/gateway
88

99
replace (
10+
github.com/fiorix/go-diameter/v4 => github.com/emakeev/go-diameter/v4 v4.0.2
11+
1012
magma/feg/cloud/go => ../../feg/cloud/go
1113
magma/feg/cloud/go/protos => ../../feg/cloud/go/protos
1214

@@ -16,7 +18,7 @@ replace (
1618
)
1719

1820
require (
19-
github.com/fiorix/go-diameter/v4 v4.0.1-0.20200102140015-a6c006d17e34
21+
github.com/fiorix/go-diameter/v4 v4.0.1
2022
github.com/go-redis/redis v6.14.1+incompatible
2123
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
2224
github.com/golang/protobuf v1.3.2

0 commit comments

Comments
 (0)