Add initial Kubernetes deployment setup with GitHub Actions workflow, Dockerfile, and necessary Kubernetes manifests

This commit is contained in:
2025-10-01 13:51:33 +08:00
parent 24154f42d4
commit 00c02e8393
8 changed files with 471 additions and 0 deletions

17
k8s/service.yaml Normal file
View File

@@ -0,0 +1,17 @@
apiVersion: v1
kind: Service
metadata:
name: www-cialloo-com-service
namespace: www-cialloo-com-{{ENVIRONMENT}}
labels:
app: www-cialloo-com
environment: {{ENVIRONMENT}}
spec:
type: ClusterIP
ports:
- port: 80
targetPort: 80
protocol: TCP
selector:
app: www-cialloo-com
environment: {{ENVIRONMENT}}