diff --git a/README.md b/README.md index d7ecab6..14e5276 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ This project demonstrates a GitOps-style Continuous Integration (CI) pipeline for a **Spring Boot + PostgreSQL** application, leveraging: - • **Kustomize and Helm** for Kubernetes manifests management - • **GitHub Actions** for building, testing, tagging, and pushing images - • **DockerHub** as the image registry + • Kustomize and Helm for Kubernetes manifests management + • GitHub Actions for building, testing, tagging, and pushing images + • DockerHub as the image registry The current focus is **CI only** — with clear automation of image updates through Git. **ArgoCD-based Continuous Deployment (CD)** will be implemented in the next stage. --- @@ -87,6 +87,7 @@ This project demonstrates a GitOps-style Continuous Integration (CI) pipeline fo ## Docker Image - Docker image is built from `/app` and pushed to DockerHub. +- multi-stage build for efficient image size. - Image tag is dynamically generated in CI. --- @@ -113,5 +114,20 @@ This project demonstrates a GitOps-style Continuous Integration (CI) pipeline fo --- +## Output screenshots +GitHub Actions CI Output +![alt text](/snapshots/image-2.png) + +kubectl Get Pods +![alt text](/snapshots/image-1.png) + +kubectl Describe Secret (from ESO) +![alt text](/snapshots/image.png) + +Git Push to Auto Branch +![alt text](/snapshots/image-3.png) + +DockerHUb +![alt text](/snapshots/image-4.png) \ No newline at end of file diff --git a/snapshots/image-1.png b/snapshots/image-1.png new file mode 100644 index 0000000..af364fe Binary files /dev/null and b/snapshots/image-1.png differ diff --git a/snapshots/image-2.png b/snapshots/image-2.png new file mode 100644 index 0000000..e37903a Binary files /dev/null and b/snapshots/image-2.png differ diff --git a/snapshots/image-3.png b/snapshots/image-3.png new file mode 100644 index 0000000..f312fd6 Binary files /dev/null and b/snapshots/image-3.png differ diff --git a/snapshots/image-4.png b/snapshots/image-4.png new file mode 100644 index 0000000..bb3960b Binary files /dev/null and b/snapshots/image-4.png differ diff --git a/snapshots/image.png b/snapshots/image.png new file mode 100644 index 0000000..0f35078 Binary files /dev/null and b/snapshots/image.png differ