mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-23 16:37:28 +00:00
52 lines
2.1 KiB
Bash
52 lines
2.1 KiB
Bash
#!/bin/bash
|
|
# Script to install prometheus-community/kube-prometheus-stack using Helm
|
|
|
|
# Exit immediately if a command exits with a non-zero status
|
|
set -e
|
|
|
|
# Add the Prometheus community Helm repository if it doesn't exist
|
|
if ! helm repo list | grep -q "prometheus-community"; then
|
|
echo "Adding prometheus-community Helm repository..."
|
|
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
|
|
fi
|
|
|
|
# Update Helm repositories
|
|
echo "Updating Helm repositories..."
|
|
helm repo update
|
|
|
|
# Create namespace for monitoring if it doesn't exist
|
|
if ! kubectl get namespace monitoring &> /dev/null; then
|
|
echo "Creating monitoring namespace..."
|
|
kubectl create namespace monitoring
|
|
fi
|
|
|
|
# Install kube-prometheus-stack
|
|
echo "Installing kube-prometheus-stack..."
|
|
helm install prometheus prometheus-community/kube-prometheus-stack \
|
|
--namespace monitoring \
|
|
--set grafana.enabled=true \
|
|
--set prometheus.enabled=true \
|
|
--set alertmanager.enabled=true \
|
|
--set prometheus.service.type=ClusterIP \
|
|
--set grafana.service.type=ClusterIP \
|
|
--set alertmanager.service.type=ClusterIP \
|
|
--set prometheus.prometheusSpec.serviceMonitorSelectorNilUsesHelmValues=false \
|
|
--set prometheus.prometheusSpec.podMonitorSelectorNilUsesHelmValues=false
|
|
|
|
echo "kube-prometheus-stack has been installed successfully!"
|
|
echo "To access Grafana UI, run: kubectl port-forward svc/kube-prometheus-stack-1754164871-grafana 31509:80 -n prometheus"
|
|
echo "Default Grafana credentials - Username: admin, Password: prom-operator"
|
|
# 1. Add the official chart repo and update your cache
|
|
helm repo add jaegertracing https://jaegertracing.github.io/helm-charts
|
|
helm repo update
|
|
|
|
# 2. (Optional) Create a namespace for observability tools
|
|
kubectl create namespace observability
|
|
|
|
# 3. Install Cert-Manager once per cluster (operator webhooks need it)
|
|
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.0/cert-manager.yaml
|
|
|
|
# 4. Install the operator
|
|
helm install jaeger-operator jaegertracing/jaeger-operator \
|
|
--namespace observability \
|
|
--set rbac.clusterRole=true # watch the whole cluster
|