본문 바로가기

전체 글53

DevOps What Is CI/CD CI/CDCI/CD stands for Continuous Integration and Continuous Delivery or Continuous DeploymentIt is a software development practice that uses methodologies and tools to deliver code faster and more reliablyCI Continuous IntegrationContinuous Integration is the practice of regularly integrating code written by developers into a shared repository and automatically building and testing itThe main go.. 2026. 9. 12.
Let's systematically manage the Helm chart versions deployed via ArgoCD using the Renovate bot. ArgoCD, which currently holds a significant share of deployment tools, is widely favored as a deployment tool for implementing gitOps patterns using manifest repositories. A core deployment pattern involves deploying Helm charts via ArgoCD.Many open-source operations tools also use Helm charts for installation, including Karpenter, Prometheus, Ingress-nginx, and numerous others. However, systema.. 2026. 2. 7.
Deploying a Docker container from your own environment (Ubuntu) on Lambda 1. Arbitrary base images are not compatible with Lambda. To be compatible with Lambda, you must implement the Lambda runtime API.You must implement it yourself by referencing the documentation at https://docs.aws.amazon.com/ko_kr/lambda/latest/dg/runtimes-api.html, but it's overly complex, and documentation lacking examples saps any motivation to implement it. 2. Therefore, AWS provides default .. 2026. 1. 10.
Kaniko: Building Images in Kubernetes Without Docker During CI processes or various other workflows, it's common to build images using `docker build` inside pod containers within a Kubernetes cluster.However, using Docker to build images inside pods is not the recommended approach for several reasons. There is a recommended alternative to Docker, which is Kaniko, a tool we'll introduce shortly.Before diving in, let's briefly cover the basic commun.. 2026. 1. 1.
Systematically manage Helm chart versions deployed via ArgoCD using the Renovate bot ArgoCD, which currently holds a significant share of deployment tools, is widely favored as a deployment tool for implementing gitOps patterns using manifest repositories. A core deployment pattern involves deploying Helm charts via ArgoCD.Many open-source operations tools also use Helm charts for installation, including Karpenter, Prometheus, Ingress-nginx, and numerous others. However, systema.. 2025. 12. 25.
ACM Exportable Public Certificate Feature SSL/TLS certificates, considered the core of web security, have become an essential element for nearly all HTTPS sites.Certificates encrypt communication between servers and clients, verify identities, and ensure data integrity.AWS provides AWS Certificate Manager (ACM), a service that automates the issuance, renewal, and management of these certificates. It's a particularly powerful tool becaus.. 2025. 12. 18.