From fa63c5b7edc04bd1722eadc3a12e8c20482ef72d Mon Sep 17 00:00:00 2001 From: Tomas Touceda Date: Wed, 31 Aug 2022 11:25:35 -0300 Subject: [PATCH] Update docs for ease of use and send alerts to help-p1 (#7477) --- infrastructure/sandbox/Monitoring/main.tf | 2 +- infrastructure/sandbox/readme.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/infrastructure/sandbox/Monitoring/main.tf b/infrastructure/sandbox/Monitoring/main.tf index cb29525b8b..f9e18677ee 100644 --- a/infrastructure/sandbox/Monitoring/main.tf +++ b/infrastructure/sandbox/Monitoring/main.tf @@ -24,7 +24,7 @@ module "notify_slack" { sns_topic_name = var.prefix slack_webhook_url = var.slack_webhook - slack_channel = "#g-infrastructure" + slack_channel = "#help-p1" slack_username = "monitoring" } diff --git a/infrastructure/sandbox/readme.md b/infrastructure/sandbox/readme.md index e911d22949..318d01e19c 100644 --- a/infrastructure/sandbox/readme.md +++ b/infrastructure/sandbox/readme.md @@ -103,8 +103,8 @@ Examples: aws eks update-kubeconfig --region us-east-2 --name sandbox-prod # List pods (We currently use the default namespace) kubectl get pods # Search in there which one it is. There will be 2 instances + a migrations one -# Obtain Logs. You can also use `--previous` to obtain logs from a previous pod crash if desired. -kubectl logs +# Obtain Logs from all pods for the release. You can also use `--previous` to obtain logs from a previous pod crash if desired. +kubectl logs -l release= ``` We do not use eksctl since we use terraform managed resources.