-
Notifications
You must be signed in to change notification settings - Fork 21
OLS-3515: Use Konflux :main tag for Otel and adapter, and fix OTEL config #414
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -39,8 +39,8 @@ Options: | |
| --operator-image=IMAGE Agentic operator image (default: Konflux :main) | ||
| --sandbox-image=IMAGE Sandbox image (default: Konflux :main) | ||
| --console-image=IMAGE Console plugin image (default: Konflux :main) | ||
| --alerts-adapter-image=IMAGE Alerts adapter image (default: resolved from Quay) | ||
| --otel-image=IMAGE OTEL collector image (default: resolved from Quay) | ||
| --alerts-adapter-image=IMAGE Alerts adapter image (default: Konflux :main) | ||
| --otel-image=IMAGE OTEL collector image (default: Konflux :main) | ||
| --postgres Deploy Postgres backend for OTEL audit logs | ||
| -h, --help Show this help and exit | ||
| EOF | ||
|
|
@@ -76,11 +76,8 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | |
| step "1/7 Checking prerequisites" | ||
|
|
||
| command -v oc >/dev/null 2>&1 || fail "oc CLI not found. Install it first." | ||
| command -v curl >/dev/null 2>&1 || fail "curl not found. Required for image resolution from Quay." | ||
| command -v python3 >/dev/null 2>&1 || fail "python3 not found. Required for image resolution from Quay." | ||
| if [ "${WITH_POSTGRES}" = "1" ]; then | ||
| command -v openssl >/dev/null 2>&1 || fail "openssl not found. Required for Postgres password generation." | ||
| fi | ||
| command -v python3 >/dev/null 2>&1 || fail "python3 not found. Required by deploy scripts." | ||
| command -v openssl >/dev/null 2>&1 || fail "openssl not found. Required by deploy scripts." | ||
|
Comment on lines
+79
to
+80
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🩺 Stability & Availability | 🟡 Minor | ⚡ Quick win 🧩 Analysis chain🏁 Script executed: #!/usr/bin/env bash
set -euo pipefail
rg -n -P '(^|[^[:alnum:]_])(curl|openssl)([^[:alnum:]_]|$)|--postgres' \
hack/quickstart --glob '*.sh'Repository: openshift/lightspeed-agentic-operator Length of output: 1295 🏁 Script executed: #!/usr/bin/env bash
set -euo pipefail
printf '--- install.sh outline ---\n'
ast-grep outline hack/quickstart/install.sh --view expanded || true
printf '\n--- install.sh relevant lines ---\n'
sed -n '1,140p' hack/quickstart/install.sh
printf '\n--- deploy scripts ---\n'
for f in hack/quickstart/deploy-otel.sh hack/quickstart/deploy-postgres.sh; do
printf '\n### %s\n' "$f"
sed -n '1,120p' "$f"
done
printf '\n--- curl/openssl occurrences under hack/quickstart ---\n'
rg -n --word-regexp 'curl|openssl' hack/quickstart --glob '*.sh' || trueRepository: openshift/lightspeed-agentic-operator Length of output: 266 🏁 Script executed: #!/usr/bin/env bash
set -euo pipefail
printf '%s\n' '--- install.sh outline ---'
ast-grep outline hack/quickstart/install.sh --view expanded || true
printf '%s\n' ''
printf '%s\n' '--- install.sh relevant lines ---'
sed -n '1,140p' hack/quickstart/install.sh
printf '%s\n' ''
printf '%s\n' '--- deploy scripts ---'
for f in hack/quickstart/deploy-otel.sh hack/quickstart/deploy-postgres.sh; do
printf '%s\n' ""
printf '%s\n' "### $f"
sed -n '1,120p' "$f"
done
printf '%s\n' ''
printf '%s\n' '--- curl/openssl occurrences under hack/quickstart ---'
rg -n --word-regexp 'curl|openssl' hack/quickstart --glob '*.sh' || trueRepository: openshift/lightspeed-agentic-operator Length of output: 13197 Make the Top-level
🤖 Prompt for AI Agents |
||
| info "Required CLI tools found" | ||
|
|
||
| for script in deploy-otel.sh deploy-alerts-adapter.sh deploy-configmap.sh deploy-operator.sh deploy-console.sh; do | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.