chore: Add Kubernetes resources for API and client deployments, services, and ingress

This commit is contained in:
2024-08-11 22:17:25 +08:00
parent 69ab87e4ed
commit 1f0b71fab1
8 changed files with 121 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: client-deployment
spec:
replicas: 1
selector:
matchLabels:
component: client
template:
metadata:
labels:
component: client
spec:
containers:
- name: client
image: uxioandrade/tutorial-client
ports:
- containerPort: 3000