helm install prometheus

Jmnote (토론 | 기여)님의 2023년 5월 23일 (화) 19:00 판 (→‎개요)

1 개요

helm install prometheus
  • namespace: default
  • release_name: prometheus
testuser@localhost:~$ helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
"prometheus-community" has been added to your repositories
testuser@localhost:~$ helm repo update
Hang tight while we grab the latest from your chart repositories...
...Successfully got an update from the "prometheus-community" chart repository
Update Complete. ⎈Happy Helming!⎈
testuser@localhost:~$ helm install prometheus prometheus-community/prometheus
NAME: prometheus
LAST DEPLOYED: Tue May 23 09:52:06 2023
NAMESPACE: default
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
The Prometheus server can be accessed via port 80 on the following DNS name from within your cluster:
prometheus-server.default.svc.cluster.local
...
testuser@cloudshell:~$ helm list
NAME            NAMESPACE       REVISION        UPDATED                                 STATUS          CHART                   APP VERSION
prometheus      default         1               2023-05-23 09:52:06.308796414 +0000 UTC deployed        prometheus-22.6.2       v2.44.0
testuser@cloudshell:~$ kubectl get pod -l helm.sh/chart=prometheus-22.6.2
NAME                                 READY   STATUS    RESTARTS   AGE
prometheus-server-7cb5489967-4cqz4   2/2     Running   0          3m18s
testuser@cloudshell:~$ kubectl get all,pvc,serviceaccount,clusterrole,clusterrolebinding -A -l helm.sh/chart=prometheus-22.6.2
NAMESPACE   NAME                                     READY   STATUS    RESTARTS   AGE
default     pod/prometheus-server-7cb5489967-4cqz4   2/2     Running   0          7m47s

NAMESPACE   NAME                        TYPE        CLUSTER-IP   EXTERNAL-IP   PORT(S)   AGE
default     service/prometheus-server   ClusterIP   10.0.5.175   <none>        80/TCP    7m47s

NAMESPACE   NAME                                READY   UP-TO-DATE   AVAILABLE   AGE
default     deployment.apps/prometheus-server   1/1     1            1           7m47s

NAMESPACE   NAME                                           DESIRED   CURRENT   READY   AGE
default     replicaset.apps/prometheus-server-7cb5489967   1         1         1       7m47s

NAMESPACE   NAME                                      STATUS   VOLUME                                     CAPACITY   ACCESS MODES   STORAGECLASS   AGE
default     persistentvolumeclaim/prometheus-server   Bound    pvc-6bef185d-b2c7-41f3-999f-cc2c9c1c7631   8Gi        RWO            pd-standard    7m48s

NAMESPACE   NAME                               SECRETS   AGE
default     serviceaccount/prometheus-server   1         7m48s

NAMESPACE   NAME                                                      CREATED AT
            clusterrole.rbac.authorization.k8s.io/prometheus-server   2023-05-23T09:52:10Z

NAMESPACE   NAME                                                             ROLE                            AGE
            clusterrolebinding.rbac.authorization.k8s.io/prometheus-server   ClusterRole/prometheus-server   7m47s

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}