Skip to content

Instantly share code, notes, and snippets.

@suhas86
Created June 28, 2020 09:37
Show Gist options
  • Save suhas86/53479f6667bcf6c9c3f5ea3fe0ffc1be to your computer and use it in GitHub Desktop.
Save suhas86/53479f6667bcf6c9c3f5ea3fe0ffc1be to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: auth-mongo-depl
spec:
replicas: 1
selector:
matchLabels:
app: auth-mongo
template:
metadata:
labels:
app: auth-mongo
spec:
containers:
- name: auth-mongo
image: mongo
volumes:
- name: mongodb-storage
persistentVolumeClaim:
claimName: mongodb-pv-claim
---
apiVersion: v1
kind: Service
metadata:
name: auth-mongo-srv
spec:
selector:
app: auth-mongo
ports:
- name: db
protocol: TCP
port: 27017
targetPort: 27017
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: mongodb-pv-claim
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 5Gi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment