کانال انجمن کلاد و دوآپس تبریز – Telegram
کانال انجمن کلاد و دوآپس تبریز
262 subscribers
116 photos
5 videos
57 files
551 links
کانال انجمن کلاد، دوآپس و مهندسی اتکاپذیری سیستم تبریز، نشر اطلاعیه رویداد ها و همایش های حوزه کلاد و دوآپس تبریز
لینک گروه

https://news.1rj.ru/str/devops_tabriz_group

admin
@arsalanses
Download Telegram
type load balancer architecture
👍1
kubectl run -i --tty busybox --image=nicolaka/netshoot:1.0.0 --restart=Never -- bash
search <namespace>.svc.cluster.local svc.cluster.local cluster.local
options ndots:5


curl foo-service.default.svc.cluster.local
Top 6 Load Balancing Algorithms.
👍2
MySQL High Availability and Disaster Recovery
Helm Chart Commands Cheatsheet
Separation of Concerns (SoC)
a design principle that manages complexity by partitioning the software system so that each partition is responsible for a separate concern, minimizing the overlap of concerns as much as possible.
https://en.wikipedia.org/wiki/Separation_of_concerns
👍2
🔹 ClusterIP: The default service type that exposes the service on an internal cluster IP address, making it reachable only from within the cluster.

🔹 NodePort: Exposes the service on each node's IP address at a static port (the NodePort). The service becomes accessible externally at <NodeIP>:<NodePort>.

🔹 LoadBalancer: Exposes the service externally using a cloud provider’s load balancer.

🔹 ExternalName: Maps the service to a DNS name, commonly used to represent an external resource like a database inside the Kubernetes cluster.
👍1