This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
система_kubernetes [2025/03/26 15:49] val [Deployment, Replica Sets, Pods] |
система_kubernetes [2025/03/31 13:51] (current) val [Metrics Server] |
||
---|---|---|---|
Line 522: | Line 522: | ||
$ ###kubectl run -ti --rm my-debian --image=debian --overrides='{"spec": { "nodeSelector": {"kubernetes.io/hostname": "kube4"}}}' | $ ###kubectl run -ti --rm my-debian --image=debian --overrides='{"spec": { "nodeSelector": {"kubernetes.io/hostname": "kube4"}}}' | ||
- | $ kubectl run my-debian --image=debian -- "sh" "-c" "while :;do echo -n rnd-value:;od -A n -t d -N 1 /dev/urandom;sleep 5; done" | + | $ kubectl run my-debian --image=debian -- "sleep" "60" |
$ kubectl get pods | $ kubectl get pods | ||
Line 582: | Line 582: | ||
image: debian | image: debian | ||
command: ["/bin/sh"] | command: ["/bin/sh"] | ||
- | args: ["-c", "while true; do echo hello; sleep 3;done"] | + | args: ["-c", "while :;do echo -n random-value:;od -A n -t d -N 1 /dev/urandom;sleep 5; done"] |
+ | resources: | ||
+ | requests: | ||
+ | memory: "64Mi" | ||
+ | cpu: "250m" | ||
+ | limits: | ||
+ | memory: "128Mi" | ||
+ | cpu: "500m" | ||
restartPolicy: Always | restartPolicy: Always | ||
</code><code> | </code><code> | ||
$ kubectl apply -f my-debian-deployment.yaml #--dry-run=client #-o yaml | $ kubectl apply -f my-debian-deployment.yaml #--dry-run=client #-o yaml | ||
+ | |||
+ | $ kubectl logs -l app=my-debian -f | ||
... | ... | ||
$ kubectl delete -f my-debian-deployment.yaml | $ kubectl delete -f my-debian-deployment.yaml | ||
Line 669: | Line 678: | ||
# port: 80 | # port: 80 | ||
# #scheme: HTTPS | # #scheme: HTTPS | ||
- | |||
- | # resources: | ||
- | # requests: | ||
- | # memory: "64Mi" | ||
- | # cpu: "250m" | ||
- | # limits: | ||
- | # memory: "128Mi" | ||
- | # cpu: "500m" | ||
- | |||
# volumeMounts: | # volumeMounts: | ||
Line 2129: | Line 2129: | ||
kube1# kubectl top pod #-n kube-system | kube1# kubectl top pod #-n kube-system | ||
- | kube1# kubectl top pod -A --sort-by=mem | + | kube1# kubectl top pod -A --sort-by=memory |
kube1# kubectl top node | kube1# kubectl top node | ||
</code> | </code> | ||
+ | ==== kube-state-metrics ==== | ||
+ | |||
+ | * [[https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-state-metrics]] | ||
+ | |||
+ | <code> | ||
+ | kube1# helm repo add prometheus-community https://prometheus-community.github.io/helm-charts | ||
+ | |||
+ | kube1# helm repo update | ||
+ | kube1# helm install kube-state-metrics prometheus-community/kube-state-metrics -n vm --create-namespace | ||
+ | |||
+ | kube1# curl kube-state-metrics.vm.svc.cluster.local:8080/metrics | ||
+ | </code> | ||
===== Отладка, troubleshooting ===== | ===== Отладка, troubleshooting ===== | ||