29 lines
609 B
YAML
29 lines
609 B
YAML
# oc-catalog-deployment.yml
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: oc-catalog
|
|
labels:
|
|
app: oc-catalog
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: oc-catalog
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: oc-catalog
|
|
spec:
|
|
containers:
|
|
- name: oc-catalog
|
|
image: registry.dev.svc.cluster.local:5000/oc-catalog:latest
|
|
ports:
|
|
- containerPort: 8080
|
|
env:
|
|
- name: MONGO_DATABASE
|
|
value: "DC_myDC"
|
|
- name: MONGO_URI
|
|
value: "mongodb://mongo:27017"
|
|
imagePullSecrets:
|
|
- name: regcred |