...
1#!/usr/bin/env bash
2
3set -e
4
5SCRIPT_DIR="$(dirname "${BASH_SOURCE[0]}")"
6# shellcheck disable=SC1091
7if ! source "${SCRIPT_DIR}/common.sh"; then
8 echo "Error: failed to source common.sh"
9 exit 1
10fi
11
12echo -e "${MAG}Using env:${NC}"
13env | grep -E "CLUSTER_|GCP"
14
15verify_environment
16
17lift apply config/pallets/o11y/fluentbit-restrictions
18
19echo -e "Check logs for this cluster at:\n${GREEN}https://console.cloud.google.com/logs/query;query=labels.cluster_edge_id%3D${CLUSTER_UUID};duration=PT1H?project=ret-edge-dev1-foreman${NC}"
View as plain text