Skip to content
Closed
Show file tree
Hide file tree
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: 2 additions & 0 deletions internal/embed/infrastructure/values/monitoring.yaml.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ prometheus:
prometheusOperator:
admissionWebhooks:
enabled: false # Disable webhook pre-install hooks (avoids timeout on fresh k3s)
tls:
enabled: false # Disable TLS secret volume mount (no admission webhook = no cert needed)

grafana:
enabled: false # Enable when we want UI access
Expand Down
6 changes: 3 additions & 3 deletions obolup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ NC='\033[0m' # No Color
# Development mode detection
if [[ "${OBOL_DEVELOPMENT:-false}" == "true" ]]; then
# Get script directory for development mode
# Use parameter expansion with default to handle curl | bash case
if [[ -n "${BASH_SOURCE[0]:-}" ]]; then
# Use -f to check for a real file, not /dev/fd/* from process substitution
if [[ -n "${BASH_SOURCE[0]:-}" && -f "${BASH_SOURCE[0]}" ]]; then
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
else
# Fallback to current directory if BASH_SOURCE not available
# Fallback to current directory for curl | bash or bash <(...) cases
SCRIPT_DIR="$(pwd)"
fi
WORKSPACE_DIR="$SCRIPT_DIR/.workspace"
Expand Down
Loading