From 89f480e44c55bfcf98fba3c3c723a7c9bd003e86 Mon Sep 17 00:00:00 2001 From: samsep101 Date: Mon, 5 Jan 2026 13:37:38 +0500 Subject: [PATCH] Add Service and Ingress with TLS --- Dockerfile | 2 ++ config/nginx.conf | 0 public/index.html | 8 ++++++++ 3 files changed, 10 insertions(+) create mode 100644 Dockerfile create mode 100644 config/nginx.conf create mode 100644 public/index.html diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..666f298 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,2 @@ +FROM nginx:alpine +COPY public /usr/share/nginx/html \ No newline at end of file diff --git a/config/nginx.conf b/config/nginx.conf new file mode 100644 index 0000000..e69de29 diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..fae3f0c --- /dev/null +++ b/public/index.html @@ -0,0 +1,8 @@ + + +Hello World + +

🚀 Hello from GitOps!

+

Deployed via Argo CD. Commit SHA: {{ .Commit }}

+ + \ No newline at end of file