Setting the file. One moment.
Chapter 20 · Azure Kubernetes App Deploy
Subchapter 20.19
templates/k8s/namespace.yaml
YAML15 lines734 B
# =============================================================================
# Kubernetes Namespace Template — AKS Deploy Skill
# =============================================================================
# Creates an isolated namespace for the application workload. Using a dedicated
# namespace (rather than "default") improves resource organization, access
# control, and makes cleanup easier (delete the namespace to remove everything).
#
# REPLACE: <namespace> — target namespace (e.g., myapp, production)
# =============================================================================
apiVersion: v1
kind: Namespace
metadata:
name: <namespace>
labels:
app.kubernetes.io/managed-by: azure-kubernetes-app-deploy