Skip to content

Instantly share code, notes, and snippets.

@fabricioveronez
Created October 4, 2020 00:29
Show Gist options
  • Save fabricioveronez/517794be2bfa8a9053ceea72cc728c75 to your computer and use it in GitHub Desktop.
Save fabricioveronez/517794be2bfa8a9053ceea72cc728c75 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: deploy-mongodb
spec:
replicas: 1
selector:
matchLabels:
app: mongodb
template:
metadata:
labels:
app: mongodb
spec:
containers:
- name: monbodb
image: mongo:4.2.8
ports:
- containerPort: 27017
env:
- name: MONGO_INITDB_ROOT_USERNAME
value: mongouser
- name: MONGO_INITDB_ROOT_PASSWORD
value: mongopwd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment