Update docs for ease of use and send alerts to help-p1 (#7477)

This commit is contained in:
Tomas Touceda 2022-08-31 11:25:35 -03:00 committed by GitHub
parent 43785428fb
commit fa63c5b7ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -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"
}

View file

@ -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 <id for the pod here>
# 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=<instance id>
```
We do not use eksctl since we use terraform managed resources.