Kubernetes: health checks with Liveness, Readiness, and Startup probes

The three kinds of probe: Liveness, Readiness, and Startup probes

Kubernetes (since version 1.16) has three types of probe, which are used for three different purposes:

  • Liveness probe. This is for detecting whether the application process has crashed/deadlocked. If a liveness probe fails, Kubernetes will stop the pod, and create a new one.
  • Readiness probe. This is for detecting whether the application is ready to handle requests. If a readiness probe fails, Kubernetes will leave the pod running, but won't send any requests to the pod.
  • Startup probe. This is used when the container starts up, to indicate that it's ready. Once the startup probe succeeds, Kubernetes switches to using the liveness probe to determine if the application is alive. This probe was introduced in Kubernetes version 1.16.

Source: Andrew Lock

OSI Layers

Tổng hợp danh sách những sự vụ xóa data/database nổi tiếng

Với các doanh nghiệp (và ngay cả cá nhân mỗi người) dữ liệu là tài sản quý giá cần phải bảo vệ kỹ càng, thông thường sẽ có ít nhất 3 mức độ sao lưu để phòng ngừa rủi ro, thế nhưng, thực tế vẫn có những trường hợp dở khóc dở cười, thậm chí nó còn xảy ra ở những doanh nghiệp lớn, nơi có hệ thống IT được đầu tư hoàn chỉnh, chặt chẽ.

[TIP] Cách đơn giản để tạo XML Xpath chính xác trong Odoo cùng PyCharm IDE

Khi cần điều chỉnh thuộc tính của 1 field trong view đã có sẵn, ta cần dùng xpath để chọn đối tượng cần chỉnh sửa.

Đối với form đơn giản, ví dụ:

<record id="some_view_id" model="ir.ui.view">
  <field name="name">demo.view.form</field>
  <field name="model">demo.model</field>
  <field name="arch" type="xml">
    <form>
          <sheet>
              <group>
                     <field name="user_id"/>
                     <field name="demo_field"/>
                </group>
          </sheet>
        </form>
</record>

gunicorn vs uvicorn notes

TLTR: gunicorn for WSGI app (like Flask), uvicorn for ASGI app (like FastAPI)

Tài liệu Viettel Data Center và Cloud Infrastructure (DCCI) Summit Light 2023

Tài liệu hội thảo ngày 22/06/2023 tại HCM

[Ubuntu] Add or remove a systemctl (systemd) service

An example to add or remove a service on system with systemd