Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix path to file in prometheus-release; #2113

Merged
merged 1 commit into from
Sep 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/infrastructure/scripts/deploy-prometheus.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
uaa_ssl_cert_file="${UAA_SSL_CERT_FILE:-$(mktemp)}"
uaa_ssl_key_file="${UAA_SSL_KEY_FILE:-$(mktemp)}"
slack_channel="${SLACK_CHANNEL:-cf-dev-autoscaler-alerts}"
slack_webhook="${SLACK_WEBHOOK}"

Check warning on line 16 in ci/infrastructure/scripts/deploy-prometheus.sh

View workflow job for this annotation

GitHub Actions / reviewdog

[shellcheck] reported by reviewdog 🐶 Possible misspelling: SLACK_WEBHOOK may not be assigned. Did you mean slack_webhook? [SC2153](https://github.com/koalaman/shellcheck/wiki/SC2153) Raw Output: ./ci/infrastructure/scripts/deploy-prometheus.sh:16:16:info:Possible misspelling: SLACK_WEBHOOK may not be assigned. Did you mean slack_webhook? [SC2153](https://github.com/koalaman/shellcheck/wiki/SC2153)
prometheus_dir="${PROMETHEUS_DIR:-$(realpath -e ${root_dir}/../prometheus-boshrelease)}"
deployment_manifest=${DEPLOYMENT_MANIFEST:-"${prometheus_dir}/manifests/prometheus.yml"}
prometheus_ops="${prometheus_dir}/manifests/operators"
Expand All @@ -23,7 +23,7 @@
${prometheus_ops}/monitor-cf.yml\
${prometheus_ops}/enable-cf-route-registrar.yml\
${prometheus_ops}/enable-grafana-uaa.yml\
${prometheus_ops}/enable-cf-loggregator-v2.yml\
${prometheus_ops}/deprecated/enable-cf-loggregator-v2.yml\
${prometheus_ops}/monitor-bosh-director.yml\
${prometheus_ops}/alertmanager-slack-receiver.yml\
${ci_dir}/operations/prometheus-customize-alerts.yml\
Expand Down
Loading