From 5f1e7cb34b963a90286e871f01c80b5e4ef2d75f Mon Sep 17 00:00:00 2001 From: eding Date: Sat, 18 Jul 2026 21:58:30 +0200 Subject: [PATCH] feat: add manifests template --- README.md | 3 +++ apps/previews/.gitkeep | 0 apps/production/.gitkeep | 0 apps/staging/.gitkeep | 0 namespaces/kustomization.yaml | 5 +++++ namespaces/production.yaml | 4 ++++ namespaces/staging.yaml | 4 ++++ 7 files changed, 16 insertions(+) create mode 100644 README.md create mode 100644 apps/previews/.gitkeep create mode 100644 apps/production/.gitkeep create mode 100644 apps/staging/.gitkeep create mode 100644 namespaces/kustomization.yaml create mode 100644 namespaces/production.yaml create mode 100644 namespaces/staging.yaml diff --git a/README.md b/README.md new file mode 100644 index 0000000..5aa3696 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# cicd-deployment-manifests-template + +Application manifests template for Maidn. diff --git a/apps/previews/.gitkeep b/apps/previews/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/apps/production/.gitkeep b/apps/production/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/apps/staging/.gitkeep b/apps/staging/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/namespaces/kustomization.yaml b/namespaces/kustomization.yaml new file mode 100644 index 0000000..829dedd --- /dev/null +++ b/namespaces/kustomization.yaml @@ -0,0 +1,5 @@ +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +resources: + - staging.yaml + - production.yaml diff --git a/namespaces/production.yaml b/namespaces/production.yaml new file mode 100644 index 0000000..67d15e1 --- /dev/null +++ b/namespaces/production.yaml @@ -0,0 +1,4 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: production diff --git a/namespaces/staging.yaml b/namespaces/staging.yaml new file mode 100644 index 0000000..ee38adf --- /dev/null +++ b/namespaces/staging.yaml @@ -0,0 +1,4 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: staging