Skip to content

Commit

Permalink
test(mc): fix broken link to diagram and minor corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
SRodi committed Feb 11, 2025
1 parent 790938e commit df5fe1c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion test/multicloud/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ Resources documentation:
* [Kind](https://registry.terraform.io/providers/tehcyx/kind/latest/docs/resources/cluster)
* [Helm Release](https://registry.terraform.io/providers/hashicorp/helm/latest/docs/resources/release)
* [Kubernetes LB Service](https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs/resources/service)
* [Grafana Data Source](https://registry.terraform.io/providers/grafana/grafana/latest/docs/resources/data_source)

## Troubleshooting

Expand All @@ -139,4 +140,4 @@ tofu import module.gke.google_service_account.default projects/mc-retina/service

The [live/](./live/) directory contains the multi-cloud / multi-cluster stacks to deploy clusters, install Retina, install Prometheus, expose all Prometheus using load blanaces, and configure a Grafana Cloud instance to consume prometheus data sources to visualize multiple cluster in a single Grafana dashboard.

![Architecture Diagram](./diagrams/mc-diagram.svg)
![Architecture Diagram](./diagrams/diagram-mc.svg)
2 changes: 2 additions & 0 deletions test/multicloud/diagrams/diagram-mc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
Empty file.
2 changes: 1 addition & 1 deletion test/multicloud/live/retina-gke/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ locals {
prometheus_release_namespace = "kube-system"
prometheus_values = yamldecode(file("../../../../deploy/standard/prometheus/values.yaml"))

gke_firwall_rules = {
gke_firewall_rules = {
inbound = {
protocol = "tcp"
ports = ["9090"]
Expand Down
4 changes: 2 additions & 2 deletions test/multicloud/live/retina-gke/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ module "gke_firewall" {
depends_on = [module.gke]
source = "../../modules/gke-firewall"
prefix = local.prefix
inbound_firewall_rule = local.gke_firwall_rules.inbound
outbound_firewall_rule = local.gke_firwall_rules.outbound
inbound_firewall_rule = local.gke_firewall_rules.inbound
outbound_firewall_rule = local.gke_firewall_rules.outbound
}

module "grafana" {
Expand Down

0 comments on commit df5fe1c

Please sign in to comment.