commit 5f1e7cb34b963a90286e871f01c80b5e4ef2d75f Author: eding Date: Sat Jul 18 21:58:30 2026 +0200 feat: add manifests template 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