@@ -211,15 +211,15 @@ mindwm_app = ArgoCdOrder.make({
211
211
namespace = config.monitoring.namespace
212
212
name = config.monitoring.promtail.release_name
213
213
chart = charts.promtail
214
- version = "6.16.6"
214
+ version = config.monitoring.promtail.chart_version
215
215
values = {
216
216
config.clients = [{
217
217
url = "http://${config.monitoring.loki.release_name}.${config.monitoring.namespace}:3100/loki/api/v1/push"
218
218
tenant_id = 1
219
219
}]
220
220
}
221
221
})
222
-
222
+
223
223
224
224
225
225
argocdSchema.argoHelmRelease({
@@ -478,8 +478,8 @@ mindwm_app = ArgoCdOrder.make({
478
478
]
479
479
}]
480
480
}
481
- }
482
- istio_virtual_service.VirtualService {
481
+ }
482
+ istio_virtual_service.VirtualService {
483
483
metadata.name = config.monitoring.grafana.virtual_service
484
484
metadata.namespace = config.monitoring.namespace
485
485
metadata.annotations = {
@@ -490,7 +490,7 @@ mindwm_app = ArgoCdOrder.make({
490
490
gateways = [ config.monitoring.gateway_name ]
491
491
http = [{
492
492
match = [{ uri.prefix = "/", port = 80}]
493
- route = [{
493
+ route = [{
494
494
destination.host = config.monitoring.grafana.destination()
495
495
destination.port.number = 80 # TODO(@metacoma) hardcode
496
496
}]
@@ -500,7 +500,7 @@ mindwm_app = ArgoCdOrder.make({
500
500
}
501
501
502
502
503
- istio_virtual_service.VirtualService {
503
+ istio_virtual_service.VirtualService {
504
504
metadata.name = config.monitoring.loki.virtual_service
505
505
metadata.namespace = config.monitoring.namespace
506
506
metadata.annotations = {
@@ -511,7 +511,7 @@ mindwm_app = ArgoCdOrder.make({
511
511
gateways = [ config.monitoring.gateway_name ]
512
512
http = [{
513
513
match = [{ uri.prefix = "/", port = 80}]
514
- route = [{
514
+ route = [{
515
515
destination.host = config.monitoring.loki.destination()
516
516
destination.port.number = 80 # TODO(@metacoma) hardcode
517
517
}]
@@ -551,7 +551,7 @@ mindwm_app = ArgoCdOrder.make({
551
551
gateways = [ config.monitoring.gateway_name ]
552
552
http = [{
553
553
match = [{ uri.prefix = "/", port = 80}]
554
- route = [{
554
+ route = [{
555
555
destination.host = config.monitoring.victoria_metrics.destination()
556
556
destination.port.number = 8429 # TODO(@metacoma) hardcode
557
557
}]
@@ -580,7 +580,7 @@ mindwm_app = ArgoCdOrder.make({
580
580
]
581
581
}]
582
582
}
583
- }
583
+ }
584
584
585
585
istio_virtual_service.VirtualService {
586
586
metadata.name = config.argocd.virtual_service
@@ -593,7 +593,7 @@ mindwm_app = ArgoCdOrder.make({
593
593
gateways = [ config.argocd.gateway_name ]
594
594
http = [{
595
595
match = [{ uri.prefix = "/", port = 80}]
596
- route = [{
596
+ route = [{
597
597
destination.host = config.argocd.destination()
598
598
destination.port.number = 38080 # TODO(@metacoma) hardcode
599
599
}]
@@ -608,5 +608,3 @@ mindwm_app = ArgoCdOrder.make({
608
608
manifests.yaml_stream([
609
609
mindwm_app
610
610
])
611
-
612
-
0 commit comments