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
    • Isito-EnvoyFilter
    • Apache Kafka
      • Kafka
      • Kafka Connect
      • Lenses
    • Vault
    • Longhorn – Storage
    • VictoriaMetrics
    • MetalLB
    • Kong Gateway
  • CI/CD
    • ArgoCD
    • ArgoWorkflows
    • Spinnaker
    • Jenkins
    • Harbor
    • TeamCity
    • Git
      • Bitbucket
  • Coding
    • DevSecOps
    • Terraform
      • GCP – Google Cloud
      • AWS – Amazon Web Service
    • Golang
    • Laravel
    • Python
    • Jquery & JavaScript
    • Selenium
  • Log, Monitor & Tracing
    • DataDog
    • Prometheus
    • Grafana
    • ELK
      • Kibana
      • Logstash
  • BareMetal
    • NextCloud
  • Toggle search form

Author: nim

[Terraform / EKS] Build EKS and Karpenter by Terraform.

Posted on September 22, 2023 By nim No Comments on [Terraform / EKS] Build EKS and Karpenter by Terraform.
[Terraform / EKS] Build EKS and Karpenter by Terraform.

Thấy bài này hay nên mình lưu lại:https://itnext.io/terraform-building-eks-part-3-karpenter-installation-124b4ced729f

AWS - Amazon Web Service, Kubernetes

[EKS] Adjusting things to migrate EKS legacy to new versions.

Posted on September 19, 2023 By nim No Comments on [EKS] Adjusting things to migrate EKS legacy to new versions.
[EKS] Adjusting things to migrate EKS legacy to new versions.

Nếu anh em đã có provison eks windows trước đó thì anh có thể thấy 2 thành phần: vpc-admission-webhook and vpc-resource-controller trong eks cluster của anh em. Nhưng ở các version mới của eks từ 1.23 + thì aws ko còn sử dụng chúng nữahttps://docs.aws.amazon.com/eks/latest/userguide/windows-support.html#enable-windows-support Và chúng ta cần remove vpc-admission-webhook and vpc-resource-controller ra khỏi cluster nếu bạn đang…

Read More “[EKS] Adjusting things to migrate EKS legacy to new versions.” »

AWS - Amazon Web Service, Kubernetes

[Tetragon] Security Observability and Runtime Enforcement

Posted on September 17, 2023September 17, 2023 By nim No Comments on [Tetragon] Security Observability and Runtime Enforcement
[Tetragon] Security Observability and Runtime Enforcement

Tetragon is a flexible Kubernetes-aware security observability and runtime enforcement tool that applies policy and filtering directly with eBPF, allowing for reduced observation overhead, tracking of any process, and real-time enforcement of policies. https://isovalent.com/blog/post/can-i-use-tetragon-without-cilium-yes/

Kubernetes

[Docker] Setup Docker for Windows Containers (NO Docker Desktop Needed!)

Posted on September 15, 2023 By nim No Comments on [Docker] Setup Docker for Windows Containers (NO Docker Desktop Needed!)
[Docker] Setup Docker for Windows Containers (NO Docker Desktop Needed!)

Setting up Docker for Windows Containers manually is not really that hard to do. You can use Docker for Desktop, but if you don’t want to pay for a license, you can easily set up the Docker Daemon and CLI utilities to work with all your favorite development tools like Visual Studio or VS Code….

Read More “[Docker] Setup Docker for Windows Containers (NO Docker Desktop Needed!)” »

Docker

[Python] Python connects MongoDB

Posted on September 15, 2023 By nim No Comments on [Python] Python connects MongoDB
[Python] Python connects MongoDB

Đầu tiên là 1 vài lệnh ban đầu code: file requirements.txt

Python

[Prometheus] filter or allowlist metrics before sending to the remote storage via remote_write in Prometheus

Posted on September 14, 2023 By nim No Comments on [Prometheus] filter or allowlist metrics before sending to the remote storage via remote_write in Prometheus
[Prometheus] filter or allowlist metrics before sending to the remote storage via remote_write in Prometheus

There are a few options to filter or allowlist metrics before they are sent to the remote storage via remote_write in Prometheus: 1. Use metric relabeling You can configure relabelling rules on the remote_write config to filter or transform metrics before they are sent. For example: This would only keep metrics matching the regex ^my_metric_.*…

Read More “[Prometheus] filter or allowlist metrics before sending to the remote storage via remote_write in Prometheus” »

Prometheus

[DevSecOps] Mutation testing

Posted on September 11, 2023 By nim No Comments on [DevSecOps] Mutation testing
[DevSecOps] Mutation testing

Look into Mutation testing. Mutation testing is a type of software testing where certain statements in the source code are changed (or “mutated”) to determine if the test cases can detect the changes. The idea is to ensure that the test suite is robust and can catch defects in the code. Here’s a basic overview…

Read More “[DevSecOps] Mutation testing” »

DevSecOps

How to join labels of 2 different metrics on PromQL

Posted on September 8, 2023 By nim No Comments on How to join labels of 2 different metrics on PromQL
How to join labels of 2 different metrics on PromQL

Look into the situation Đầu tiên chúng ta có 2 metric labels như sau: Metrics and Labels: Look into kube_pod_container_info metrics. With kube_pod_container_info Look into windows_container_cpu_usage_seconds_kernelmode windows_container_cpu_usage_seconds_kernelmode thì có container_id, nhưng lại không có namespace, pod, container==> Bằng mắt: thì chúng ta không thể nào nhận biết được CPU usage này của container nào. Từ…

Read More “How to join labels of 2 different metrics on PromQL” »

Prometheus

[Python] Look into FastAPI to contribute backend by Python

Posted on September 3, 2023September 3, 2023 By nim No Comments on [Python] Look into FastAPI to contribute backend by Python
[Python] Look into FastAPI to contribute backend by Python

1) Define Function in Python. Sau đây chúng ta define 1 function trong python. Trong đoạn mã Python trên, hàm my_func có một đối số có tên là my_var có kiểu dữ liệu được ghi là str | None. Đây là kiểu gợi ý cho Python biết đối số my_var có thể là một chuỗi…

Read More “[Python] Look into FastAPI to contribute backend by Python” »

Python

[DevSecOps] Engines for Pentesters

Posted on September 2, 2023 By nim No Comments on [DevSecOps] Engines for Pentesters
[DevSecOps] Engines for Pentesters

“Which search engines do Pentesters use during the information gathering phase❓” Today I have a great resource suggestion where you can find the answer to this question❗️🌝 You should definitely add it to your bookmarks.🤞🏻🌸

DevSecOps

Posts navigation

1 2 … 64 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

  • [Terraform / EKS] Build EKS and Karpenter by Terraform. September 22, 2023
  • [EKS] Adjusting things to migrate EKS legacy to new versions. September 19, 2023
  • [Tetragon] Security Observability and Runtime Enforcement September 17, 2023
  • [Docker] Setup Docker for Windows Containers (NO Docker Desktop Needed!) September 15, 2023
  • [Python] Python connects MongoDB September 15, 2023

Archives

  • 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
    • ArgoCD
    • ArgoWorkflows
    • Git
      • Bitbucket
    • Harbor
    • Jenkins
    • Spinnaker
    • TeamCity
  • Coding
    • DevSecOps
    • Golang
    • Jquery & JavaScript
    • Laravel
    • Python
    • Selenium
    • Terraform
      • AWS – Amazon Web Service
      • GCP – Google Cloud
  • Kubernetes & Container
    • Apache Kafka
      • Kafka
      • Kafka Connect
      • Lenses
    • Docker
    • Helm Chart
    • Isito-EnvoyFilter
    • Kong Gateway
    • Kubernetes
      • Ingress
      • Pod
    • Longhorn – Storage
    • MetalLB
    • Vault
    • VictoriaMetrics
  • Log, Monitor & Tracing
    • DataDog
    • ELK
      • Kibana
      • Logstash
    • Fluent
    • Grafana
    • Prometheus
  • Uncategorized
  • Admin

Copyright © 2023 NimTechnology.