mirror of
https://github.com/amkartashov/gf-k8s.git
synced 2026-01-10 17:39:43 +00:00
kube-state-metrics
This commit is contained in:
parent
cb95600c52
commit
ee9b3b8ed4
2 changed files with 34 additions and 0 deletions
|
|
@ -30,6 +30,8 @@ Applications & Projects
|
||||||
+------------------------------+----------------------------------------------------------------+-------------------------+
|
+------------------------------+----------------------------------------------------------------+-------------------------+
|
||||||
| Ingress-Nginx_ | `Ingress Controller`_ | |ingress-nginx_status| |
|
| Ingress-Nginx_ | `Ingress Controller`_ | |ingress-nginx_status| |
|
||||||
+------------------------------+----------------------------------------------------------------+-------------------------+
|
+------------------------------+----------------------------------------------------------------+-------------------------+
|
||||||
|
| Kube-State-Metrics_ | `Kubernetes Metrics`_ | |ksm_status| |
|
||||||
|
+------------------------------+----------------------------------------------------------------+-------------------------+
|
||||||
| Local-Path-Provisioner_ | `Rancher Local-Path`_ | |local-path_status| |
|
| Local-Path-Provisioner_ | `Rancher Local-Path`_ | |local-path_status| |
|
||||||
+------------------------------+----------------------------------------------------------------+-------------------------+
|
+------------------------------+----------------------------------------------------------------+-------------------------+
|
||||||
| Victoria-Metrics-Operator_ | `Victoria Metrics Operator`_ | |vm-op_status| |
|
| Victoria-Metrics-Operator_ | `Victoria Metrics Operator`_ | |vm-op_status| |
|
||||||
|
|
@ -72,6 +74,10 @@ Applications & Projects
|
||||||
.. _Ingress Controller: https://github.com/kubernetes/ingress-nginx
|
.. _Ingress Controller: https://github.com/kubernetes/ingress-nginx
|
||||||
.. |ingress-nginx_status| image:: https://argocd.ioot.xyz/api/badge?name=ingress-nginx&revision=true
|
.. |ingress-nginx_status| image:: https://argocd.ioot.xyz/api/badge?name=ingress-nginx&revision=true
|
||||||
|
|
||||||
|
.. _Kube-State-Metrics: https://argocd.ioot.xyz/applications/argocd/kube-state-metrics
|
||||||
|
.. _Kubernetes Metrics: https://github.com/kubernetes/kube-state-metrics
|
||||||
|
.. |ksm_status| image:: https://argocd.ioot.xyz/api/badge?name=kube-state-metrics&revision=true
|
||||||
|
|
||||||
.. _Grafana-Operator: https://argocd.ioot.xyz/applications/argocd/grafana-operator
|
.. _Grafana-Operator: https://argocd.ioot.xyz/applications/argocd/grafana-operator
|
||||||
.. _Grafana Operator: https://github.com/grafana-operator/grafana-operator
|
.. _Grafana Operator: https://github.com/grafana-operator/grafana-operator
|
||||||
.. |grafana-op_status| image:: https://argocd.ioot.xyz/api/badge?name=grafana-operator&revision=true
|
.. |grafana-op_status| image:: https://argocd.ioot.xyz/api/badge?name=grafana-operator&revision=true
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,28 @@
|
||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: Application
|
||||||
|
metadata:
|
||||||
|
name: kube-state-metrics
|
||||||
|
labels:
|
||||||
|
stack: observability
|
||||||
|
spec:
|
||||||
|
destination:
|
||||||
|
server: https://kubernetes.default.svc
|
||||||
|
namespace: kube-state-metrics
|
||||||
|
project: system
|
||||||
|
syncPolicy:
|
||||||
|
automated:
|
||||||
|
prune: true
|
||||||
|
selfHeal: true
|
||||||
|
syncOptions:
|
||||||
|
- CreateNamespace=true
|
||||||
|
sources:
|
||||||
|
- repoURL: https://prometheus-community.github.io/helm-charts
|
||||||
|
chart: kube-state-metrics
|
||||||
|
targetRevision: 5.13.0
|
||||||
|
helm:
|
||||||
|
values: |
|
||||||
|
# https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-state-metrics
|
||||||
|
prometheus:
|
||||||
|
monitor:
|
||||||
|
enabled: true
|
||||||
|
honorLabels: true
|
||||||
Loading…
Reference in a new issue