Add Kubernetes deployment, service, ingress, and namespace configurations

This commit is contained in:
2025-10-02 14:20:05 +08:00
parent cf8ebd01d3
commit a258431020
5 changed files with 381 additions and 0 deletions

10
script/k8s/namespace.yaml Normal file
View File

@@ -0,0 +1,10 @@
# Kubernetes Namespace Configuration
# A namespace provides a scope for names and is used to divide cluster resources
apiVersion: v1
kind: Namespace
metadata:
# Name of the namespace where your application will be deployed
name: ${KUBERNETES_NAMESPACE}
labels:
name: ${KUBERNETES_NAMESPACE}