feat: add explicit namespace resource to production Kubernetes overlay

- Add namespace.yaml to production overlay resources
- Ensure proper namespace creation in production deployments
- Improve Kubernetes resource management and isolation
This commit is contained in:
William Valentin
2025-09-08 09:44:15 -07:00
parent 7ab6d0a486
commit 54a0a77ed5
2 changed files with 10 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ metadata:
# Reference the base configuration # Reference the base configuration
resources: resources:
- ../../base - ../../base
- namespace.yaml
# Override namespace for production # Override namespace for production
namespace: rxminder-prod namespace: rxminder-prod

View File

@@ -0,0 +1,9 @@
apiVersion: v1
kind: Namespace
metadata:
name: rxminder-prod
labels:
app: rxminder
environment: production
tier: prod
version: v1.0.0