Skip to content

NimTechnology

Trình bày các công nghệ CLOUD một cách dễ hiểu.

  • Kubernetes & Container
    • Docker
    • Kubernetes
      • Ingress
      • Pod
    • Helm Chart
    • OAuth2 Proxy
    • Isito-EnvoyFilter
    • Apache Kafka
      • Kafka
      • Kafka Connect
      • Lenses
    • Vault
    • Longhorn – Storage
    • VictoriaMetrics
    • MetalLB
    • Kong Gateway
  • CI/CD
    • ArgoCD
    • ArgoWorkflows
    • Argo Events
    • Spinnaker
    • Jenkins
    • Harbor
    • TeamCity
    • Git
      • Bitbucket
  • Coding
    • DevSecOps
    • Terraform
      • GCP – Google Cloud
      • AWS – Amazon Web Service
      • Azure Cloud
    • Golang
    • Laravel
    • Python
    • Jquery & JavaScript
    • Selenium
  • Log, Monitor & Tracing
    • DataDog
    • Prometheus
    • Grafana
    • ELK
      • Kibana
      • Logstash
  • BareMetal
    • NextCloud
  • Toggle search form

Month: April 2023

[Golang] Writing a metrics exporter through Golang and Prometheus

Posted on April 30, 2023May 4, 2023 By nim No Comments on [Golang] Writing a metrics exporter through Golang and Prometheus
[Golang] Writing a metrics exporter through Golang and Prometheus

Ờ bài này mình muốn tìn hiểu làm sao có thể view page để expose các metrics theo ý mình và sử dụng cho prometheus Sau đây mình sẽ thực hiện write theo video. 1) Using Demo of Prometheus Client. Đầu tiên chúng ta sẽ expose default golang metrics. file: main.go Bạn start chúng lên….

Read More “[Golang] Writing a metrics exporter through Golang and Prometheus” »

Golang

[DevSecOps] Dependency Check Basics and Vulnerabilities

Posted on April 27, 2023September 12, 2023 By nim No Comments on [DevSecOps] Dependency Check Basics and Vulnerabilities
[DevSecOps] Dependency Check Basics and Vulnerabilities

NVD: National Vulnerability Database Imagine NVD as the ultimate library of computer vulnerabilities. It’s like Wikipedia, but for all the bad stuff that can happen to your computer. If a hacker finds a way to mess with a system, the NVD is where you’ll find all the deets. CVE: Common Vulnerabilities and Exposures CVE is…

Read More “[DevSecOps] Dependency Check Basics and Vulnerabilities” »

CI/CD, DevSecOps

[Kubernetes] Don’t believe kubectl top

Posted on April 26, 2023 By nim No Comments on [Kubernetes] Don’t believe kubectl top
[Kubernetes] Don’t believe kubectl top

Theo 1 bài viết trên mạng thì chúng ta có nên tin vào kubectl top hôm Và đây là 1 số tổng hợp của mình kubectl top vs top* kubectl top show CPU < 100%* top show load avg cho con node 64% CPU từ lệnh trên (hệ thống 4CPU) Đừng để bị lừa ;)) —Update…

Read More “[Kubernetes] Don’t believe kubectl top” »

Kubernetes

[Kubernetes] Discover Health Check on K8s

Posted on April 26, 2023October 18, 2023 By nim No Comments on [Kubernetes] Discover Health Check on K8s
[Kubernetes] Discover Health Check on K8s

Readiness Readiness configuration in Kubernetes is used to determine if a container within a pod is ready to accept traffic or serve requests. It ensures that a container is fully initialized and capable of handling requests before being exposed to any incoming traffic. This helps maintain the overall health and reliability of your application. Điều…

Read More “[Kubernetes] Discover Health Check on K8s” »

Kubernetes

[Fluent Bit / Datadog] How does Fluent bit collect logs and send them to multiple backend.

Posted on April 24, 2023April 25, 2023 By nim No Comments on [Fluent Bit / Datadog] How does Fluent bit collect logs and send them to multiple backend.
[Fluent Bit / Datadog] How does Fluent bit collect logs and send them to multiple backend.

1) look into Fluent Bit. Đầu tiên chúng ta tìm hiểu về fluent bit. Bạn có thể coi video này để hiểu một chút về fluent Bit. Fluent Bit được việt bằng C nên là nó rất nhẹ. 1.1) Fluent Bit’s configuration file trong 1 main configuration file thì gồm 1 sections. Chúng ta sẽ…

Read More “[Fluent Bit / Datadog] How does Fluent bit collect logs and send them to multiple backend.” »

Fluent

For the love of god, stop using CPU limits on Kubernetes

Posted on April 22, 2023 By nim No Comments on For the love of god, stop using CPU limits on Kubernetes
For the love of god, stop using CPU limits on Kubernetes

Best practices for CPU limits and requests on Kubernetes Lets summarize: Tim Hockin (one of the original Kubernetes maintainers at Google) has recommended the same for years. What about memory limits and requests? Everything in this post is about CPU and not memory. Memory is different because it is non-compressible – once you give memory you can’t…

Read More “For the love of god, stop using CPU limits on Kubernetes” »

Kubernetes

[RabbitMQ/AWS] Install RabbitMQ on AWS based on Amazon MQ.

Posted on April 22, 2023August 19, 2023 By nim No Comments on [RabbitMQ/AWS] Install RabbitMQ on AWS based on Amazon MQ.
[RabbitMQ/AWS] Install RabbitMQ on AWS based on Amazon MQ.

Refer tohttps://github.com/dasmeta/terraform-aws-rabbitmqhttps://github.com/vainkop/terraform-aws-rabbitmq 1) Create VPC Đầu tiên chúng ta cần tạo vpc: Ở đây mình sử dụng vpc module để create 1 public subnet và 1 private subnet 2) RabbitMQ on AWS Tạo rabbitmq Bạn sẽ cần tạo rabbitmq thông qua Resource: aws_mq_brokerhttps://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/mq_broker Và bạn có thể tạo security Group thông qua module:https://registry.terraform.io/modules/terraform-aws-modules/security-group/aws/latest Và sau…

Read More “[RabbitMQ/AWS] Install RabbitMQ on AWS based on Amazon MQ.” »

AWS - Amazon Web Service

[VScode] Details: libsecret-1.so.0: cannot open shared object file: No such file or director

Posted on April 21, 2023 By nim No Comments on [VScode] Details: libsecret-1.so.0: cannot open shared object file: No such file or director
[VScode] Details: libsecret-1.so.0: cannot open shared object file: No such file or director

Mình gặp lỗi: Lỗi này xảy ra khi bạn sử dụng Visual Studio Code Remote – SSH hoặc Visual Studio Code Remote – Containers để kết nối đến một hệ thống từ xa hoặc một container và không thể truy cập kho lưu trữ mật khẩu (credential store) của hệ điều hành. Để giải quyết…

Read More “[VScode] Details: libsecret-1.so.0: cannot open shared object file: No such file or director” »

Coding

[Terraform] DRY in Terraform Configurations With Dynamic Blocks

Posted on April 21, 2023April 21, 2023 By nim No Comments on [Terraform] DRY in Terraform Configurations With Dynamic Blocks
[Terraform] DRY in Terraform Configurations With Dynamic Blocks

Refer to: https://spacelift.io/blog/terraform-dynamic-blocks The Don’t Repeat Yourself (DRY) principle of software development states that code should be written once and not repeated. An important goal of the DRY principle is to improve the maintainability of code. See how you can keep your configuration DRY with Terragrunt on Spacelift. Some Terraform resources include repeatable nested blocks in their arguments….

Read More “[Terraform] DRY in Terraform Configurations With Dynamic Blocks” »

Terraform

[Argo-Workflows] Lesson23: Setup logging and artifact repository

Posted on April 17, 2023January 12, 2024 By nim No Comments on [Argo-Workflows] Lesson23: Setup logging and artifact repository
[Argo-Workflows] Lesson23: Setup logging and artifact repository

Nếu các bạn đã sử dụng các hệ thông CI như github action và bitbucket thì bạn sẽ để ý chúng ta sẽ của artifact để lưu các result trả về trong quá trình CI để làm report để download,… 1) Setup Artifact for Argo Workflow. 1.1) Install Minio. Nếu bạn sài AWS thì có…

Read More “[Argo-Workflows] Lesson23: Setup logging and artifact repository” »

ArgoWorkflows

Posts pagination

1 2 … 4 Next
Tham Gia Group DevOps nhé!
Để Nim có nhiều động lực ra nhiều bài viết.
Để nhận được những thông báo mới nhất.

Recent Posts

  • [Argo Workflow] Create an access token for Argo Workflows July 14, 2025
  • [Argo Workflow] SSO Authentication for Argo Workflows. July 14, 2025
  • [AWS/EKS] Cache Docker image to accelerate EKS container deployment. July 10, 2025
  • [Laravel] Laravel Helpful June 26, 2025
  • [VScode] Hướng dẫn điều chỉnh font cho terminal June 20, 2025

Archives

  • July 2025
  • June 2025
  • May 2025
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • August 2024
  • July 2024
  • June 2024
  • May 2024
  • April 2024
  • March 2024
  • February 2024
  • January 2024
  • December 2023
  • November 2023
  • October 2023
  • September 2023
  • August 2023
  • July 2023
  • June 2023
  • May 2023
  • April 2023
  • March 2023
  • February 2023
  • January 2023
  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • February 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021

Categories

  • BareMetal
    • NextCloud
  • CI/CD
    • Argo Events
    • ArgoCD
    • ArgoWorkflows
    • Git
      • Bitbucket
    • Harbor
    • Jenkins
    • Spinnaker
    • TeamCity
  • Coding
    • DevSecOps
    • Golang
    • Jquery & JavaScript
    • Laravel
    • NextJS 14 & ReactJS & Type Script
    • Python
    • Selenium
    • Terraform
      • AWS – Amazon Web Service
      • Azure Cloud
      • GCP – Google Cloud
  • Kubernetes & Container
    • Apache Kafka
      • Kafka
      • Kafka Connect
      • Lenses
    • Docker
    • Helm Chart
    • Isito-EnvoyFilter
    • Kong Gateway
    • Kubernetes
      • Ingress
      • Pod
    • Longhorn – Storage
    • MetalLB
    • OAuth2 Proxy
    • Vault
    • VictoriaMetrics
  • Log, Monitor & Tracing
    • DataDog
    • ELK
      • Kibana
      • Logstash
    • Fluent
    • Grafana
    • Prometheus
  • Uncategorized
  • Admin

Copyright © 2025 NimTechnology.