Skip to content

Commit

Permalink
Create pi-network-deployment.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Aug 3, 2024
1 parent 7c70705 commit 0bc34ac
Showing 1 changed file with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: pi-network
spec:
replicas: 3
selector:
matchLabels:
app: pi-network
template:
metadata:
labels:
app: pi-network
spec:
containers:
- name: pi-network
image: <your-pi-network-image>
ports:
- containerPort: 8080
env:
- name: NODE_ENV
value: production
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 200m
memory: 256Mi

0 comments on commit 0bc34ac

Please sign in to comment.