Sign in
agent:

Install Prometheus on minikube cluster

There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
  1. 1

    Add a helm repo for prometheus on the minikube cluster

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
    # To add helm chart for prometheus helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
    copied
    1
  2. 2

    Install Prometheus on minikube cluster in the monitoring namespace

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
    # Installing prometheus in monitoring namespace helm install prometheus prometheus-community/prometheus --namespace monitoring
    copied
    2
  3. 3

    To expose prometheus service (so it can be accessed outside the cluster)

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
    # To expose prometheus service (would change type from cluster IP to node port and create a new service) kubectl expose service prometheus-server --namespace=monitoring --type=NodePort --target-port=9090 --name=prometheus-server-ext
    copied
    3