environment test

This commit is contained in:
crusader 2023-02-02 10:12:49 +00:00
parent edaa39ed36
commit 4f6a1abb43

37
.k8s/deployment.yaml Normal file
View File

@ -0,0 +1,37 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: nodeapp-deployment
labels:
app: nodeapp
type: front-end
spec:
template:
metadata:
name: nodejsapp-pod
labels:
app: nodejsapp
type: front-end
spec:
containers:
- name: nodejsapp-erp
image: "bharathirajatut/erp:1.0"
replicas: 1
selector:
matchLabels:
type: front-end
---
apiVersion: v1
kind: Service
metadata:
name: nodejs-service
spec:
selector:
app: nodejsapp
type: LoadBalancer
ports:
- protocol: TCP
targetPort: 3000
port: 80
nodePort: 30000