From 44fa18d346e23846e982a896271ae1a2eb456ed7 Mon Sep 17 00:00:00 2001 From: Tuan-Dat Tran Date: Mon, 23 Feb 2026 23:20:05 +0100 Subject: [PATCH] feat(helm): add chart structure and metadata --- helm/cv-app/.helmignore | 17 +++++++++++++++++ helm/cv-app/Chart.yaml | 9 +++++++++ 2 files changed, 26 insertions(+) create mode 100644 helm/cv-app/.helmignore create mode 100644 helm/cv-app/Chart.yaml diff --git a/helm/cv-app/.helmignore b/helm/cv-app/.helmignore new file mode 100644 index 0000000..d5f130b --- /dev/null +++ b/helm/cv-app/.helmignore @@ -0,0 +1,17 @@ +# Patterns to ignore when building packages. +.git/ +.github/ +.vscode/ +.idea/ + +# Test files +*_test.go +tests/ + +# Documentation +*.md +!README.md +docs/ + +# CI/CD +.github/ diff --git a/helm/cv-app/Chart.yaml b/helm/cv-app/Chart.yaml new file mode 100644 index 0000000..efe1386 --- /dev/null +++ b/helm/cv-app/Chart.yaml @@ -0,0 +1,9 @@ +apiVersion: v2 +name: cv-app +description: A Helm chart for CV application +type: application +version: 0.1.0 +appVersion: "1.0.0" +maintainers: + - name: Tuan-Dat Tran + email: tuan-dat.tran@tudattr.dev