diff --git a/.k8s/deployment.yaml b/.k8s/deployment.yaml new file mode 100644 index 0000000..a231a4c --- /dev/null +++ b/.k8s/deployment.yaml @@ -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 \ No newline at end of file