dir changes

This commit is contained in:
Siddharth Barahalikar
2022-06-08 18:57:31 +05:30
parent a17f4c11e3
commit fbd89df61a
9 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: geocentric-model
spec:
selector:
matchLabels:
app: geocentric-model
replicas: 1
template:
metadata:
labels:
app: geocentric-model
spec:
containers:
- name: geocentric-model
image: siddharth67/geocentric-model:earth

View File

@@ -0,0 +1,12 @@
apiVersion: v1
kind: Service
metadata:
name: geocentric-model-svc
spec:
ports:
- port: 3000
protocol: TCP
targetPort: 3000
selector:
app: geocentric-model
type: NodePort