33 lines
732 B
YAML
33 lines
732 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: mongo-express
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: mongo-express
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: mongo-express
|
|
spec:
|
|
containers:
|
|
- name: mongo-express
|
|
image: mongo-express:latest
|
|
ports:
|
|
- containerPort: 8081
|
|
env:
|
|
- name: ME_CONFIG_BASICAUTH_USERNAME
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: mongo-secret
|
|
key: mongo-username
|
|
- name: ME_CONFIG_BASICAUTH_PASSWORD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: mongo-secret
|
|
key: mongo-password
|
|
imagePullSecrets:
|
|
- name: my-registry-key
|