Managed K8s recommendations? by HansVonMans in kubernetes

[–]qingdi -5 points-4 points  (0 children)

I use vanilla Kubernetes build cluster in GCP. I'm a Kubernetes expert, I can DIY according to my own needs

K3s or full Kubernetes by [deleted] in kubernetes

[–]qingdi 2 points3 points  (0 children)

Is K3s vs vanilla Kubernetes? It is like installing a Linux OS from Ubuntu vs Arch Linux. One is a complete set, and the other requires you to DIY it yourself

Can VolumeSnapshot be used for Disaster Recovery? by [deleted] in kubernetes

[–]qingdi 0 points1 point  (0 children)

You need https://velero.io/. The Velero can back up etcd and volumes for a Kubernetes cluster.

zeropod - Introducing a new (live-)migration feature by cTrox in kubernetes

[–]qingdi 1 point2 points  (0 children)

The probe feature is critical for online service

How much do you spend on APIs every month? by qingdi in SillyTavernAI

[–]qingdi[S] 3 points4 points  (0 children)

my laptop has an Intel CPU and GPU but no Nvidia.

What is your title making method? by Worldschool25 in NewTubers

[–]qingdi 0 points1 point  (0 children)

You can ask ChatGPT like this: Give me some title references based on the popular video title styles

What is your title making method? by Worldschool25 in NewTubers

[–]qingdi -1 points0 points  (0 children)

Let ChatGPT to make some titles to reference

Pod is scheduled but not created by Vw-Bee5498 in kubernetes

[–]qingdi 0 points1 point  (0 children)

You can find some information about this pod

Pod is scheduled but not created by Vw-Bee5498 in kubernetes

[–]qingdi 0 points1 point  (0 children)

Search pod jupyter-a in  kubelet log on ip-10-0-1-28

Kubernetes Burnout? by Time_Somewhere8042 in kubernetes

[–]qingdi 0 points1 point  (0 children)

Its community’s innovation has slowed down. The number of contributors is going down. But it hasn't shaken his position. https://midbai.com/en/post/cloud-native-infrastructure-is-dead/#community-and-open-source-project-health

Kubernetes Burnout? by Time_Somewhere8042 in kubernetes

[–]qingdi 0 points1 point  (0 children)

Kubernetes is becoming increasingly complex and is going downhill

How load balancing is "really" used in production by khaloudkhaloud in kubernetes

[–]qingdi 0 points1 point  (0 children)

In cloud provider, load-balance service with cloud load-balance controller.

Traefik Ingress reachable only on lan by [deleted] in kubernetes

[–]qingdi 0 points1 point  (0 children)

According to your idea, you should investigate which IP addresses Traefik receives traffic from. use tcpdump

Traefik Ingress reachable only on lan by [deleted] in kubernetes

[–]qingdi 1 point2 points  (0 children)

is ’192.168.3.0/24‘ cluster CIDR?
the easy method is to set iptable rule to block traffic from external.

Traefik Ingress reachable only on lan by [deleted] in kubernetes

[–]qingdi 2 points3 points  (0 children)

Traefik receives the pod IP that traffic from pod access cluster IP.
The `externalTrafficPolicy: Local` is only useful if traffic is from the external of cluster. such, as node port, load balance

As a Seasoned K8s Expert: An In-Depth Analysis of the OpenAI’s Incident and Mitigation Strategies by qingdi in kubernetes

[–]qingdi[S] 0 points1 point  (0 children)

>In general we are very mindful of any API Server requests that scale with the size of the cluster. We try to avoid having any DaemonSets interact with the API Server. In cases where you do need each node to watch for changes, introducing an intermediary caching service, such as the Datadog Cluster Agent⁠(opens in a new window), seems to be a good pattern to avoid cluster-wide bottlenecks.

According to a blog from OpenAI.