From 20094b44312ec7edcf3a968f6f6cf7d535a79659 Mon Sep 17 00:00:00 2001 From: Rebecca Valente Date: Tue, 23 Sep 2025 10:49:42 -0300 Subject: [PATCH] (1.0.1) devops: move helm chart from charts/ to repo root; path-only renames for chart.yaml, values.yaml, templates, and .helmignore with no content changes --- charts/.helmignore => .helmignore | 0 charts/Chart.yaml => Chart.yaml | 0 {charts/templates => templates}/_helpers.tpl | 0 {charts/templates => templates}/deployment.yaml | 0 {charts/templates => templates}/ingress.yaml | 0 {charts/templates => templates}/postgresql-statefulset.yaml | 0 {charts/templates => templates}/pvc.yaml | 0 {charts/templates => templates}/secret.yaml | 0 {charts/templates => templates}/service.yaml | 0 charts/values.yaml => values.yaml | 0 10 files changed, 0 insertions(+), 0 deletions(-) rename charts/.helmignore => .helmignore (100%) rename charts/Chart.yaml => Chart.yaml (100%) rename {charts/templates => templates}/_helpers.tpl (100%) rename {charts/templates => templates}/deployment.yaml (100%) rename {charts/templates => templates}/ingress.yaml (100%) rename {charts/templates => templates}/postgresql-statefulset.yaml (100%) rename {charts/templates => templates}/pvc.yaml (100%) rename {charts/templates => templates}/secret.yaml (100%) rename {charts/templates => templates}/service.yaml (100%) rename charts/values.yaml => values.yaml (100%) diff --git a/charts/.helmignore b/.helmignore similarity index 100% rename from charts/.helmignore rename to .helmignore diff --git a/charts/Chart.yaml b/Chart.yaml similarity index 100% rename from charts/Chart.yaml rename to Chart.yaml diff --git a/charts/templates/_helpers.tpl b/templates/_helpers.tpl similarity index 100% rename from charts/templates/_helpers.tpl rename to templates/_helpers.tpl diff --git a/charts/templates/deployment.yaml b/templates/deployment.yaml similarity index 100% rename from charts/templates/deployment.yaml rename to templates/deployment.yaml diff --git a/charts/templates/ingress.yaml b/templates/ingress.yaml similarity index 100% rename from charts/templates/ingress.yaml rename to templates/ingress.yaml diff --git a/charts/templates/postgresql-statefulset.yaml b/templates/postgresql-statefulset.yaml similarity index 100% rename from charts/templates/postgresql-statefulset.yaml rename to templates/postgresql-statefulset.yaml diff --git a/charts/templates/pvc.yaml b/templates/pvc.yaml similarity index 100% rename from charts/templates/pvc.yaml rename to templates/pvc.yaml diff --git a/charts/templates/secret.yaml b/templates/secret.yaml similarity index 100% rename from charts/templates/secret.yaml rename to templates/secret.yaml diff --git a/charts/templates/service.yaml b/templates/service.yaml similarity index 100% rename from charts/templates/service.yaml rename to templates/service.yaml diff --git a/charts/values.yaml b/values.yaml similarity index 100% rename from charts/values.yaml rename to values.yaml