Skip to content

Commit

Permalink
[digitalocean deploy] specific node version
Browse files Browse the repository at this point in the history
  • Loading branch information
welbon committed Jul 9, 2024
1 parent e8cd562 commit a38e963
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions kube/starcoin-explorer-deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: react-app-deployment
spec:
replicas: 1
selector:
matchLabels:
app: react-app
template:
metadata:
labels:
app: react-app
spec:
containers:
- name: react-app
image: starcoin_explorer:v1.9.10
ports:
- containerPort: 3007
---
apiVersion: v1
kind: Service
metadata:
name: react-app-service
spec:
type: LoadBalancer
ports:
- port: 3007
selector:
app: react-app

0 comments on commit a38e963

Please sign in to comment.