browsertrix/chart/templates/mongo.yaml
Ilya Kreymer bf79959a5a refactoring to use statefulsets + job (#245)
- use statefulsets instead of deployments for mongo, redis, signer
- use k8s job + statefulset for running crawls
- use separate statefulset for crawl (scaled) and single-replica redis stateful set
- move crawl job update login to crawl_updater
- remove shared redis chart

package refactor:
- move to shared code to 'btrixcloud'
- move k8s to 'btrixcloud.k8s'
- move docker to 'btrixcloud.docker'
2022-06-05 10:37:17 -07:00

134 lines
2.7 KiB
YAML

# mongo secrets used with backend and with local mongo, if any
---
apiVersion: v1
kind: Secret
metadata:
name: mongo-auth
namespace: {{ .Values.crawler_namespace }}
type: Opaque
stringData:
MONGO_INITDB_ROOT_USERNAME: {{ .Values.mongo_auth.username | quote }}
MONGO_INITDB_ROOT_PASSWORD: {{ .Values.mongo_auth.password | quote }}
MONGO_HOST: {{ .Values.mongo_host }}
---
apiVersion: v1
kind: Secret
metadata:
name: mongo-auth
namespace: {{ .Release.Namespace }}
type: Opaque
stringData:
MONGO_INITDB_ROOT_USERNAME: {{ .Values.mongo_auth.username | quote }}
MONGO_INITDB_ROOT_PASSWORD: {{ .Values.mongo_auth.password | quote }}
MONGO_HOST: {{ .Values.mongo_host }}
{{- if .Values.mongo_local }}
---
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: local-mongo
namespace: {{ .Release.Namespace }}
spec:
selector:
matchLabels:
app: local-mongo
serviceName: local-mongo
replicas: {{ .Values.api_num_replicas }}
podManagementPolicy: Parallel
volumeClaimTemplates:
- metadata:
name: data-db
annotations:
helm.sh/resource-policy: keep
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 2Gi
{{- if .Values.volume_storage_class }}
storageClassName: {{ .Values.volume_storage_class }}
{{- end }}
template:
metadata:
labels:
app: local-mongo
spec:
{{- if .Values.main_node_type }}
nodeSelector:
nodeType: {{ .Values.main_node_type }}
{{- end }}
containers:
- name: mongo
image: {{ .Values.mongo_image }}
{{- if .Values.mongo_run_repair }}
command: ["mongod", "--repair"]
{{- end }}
imagePullPolicy: {{ .Values.mongo_pull_policy }}
envFrom:
- secretRef:
name: mongo-auth
volumeMounts:
- name: data-db
mountPath: /data/db
subPath: mongo
resources:
limits:
cpu: {{ .Values.mongo_limits_cpu }}
memory: {{ .Values.mongo_limits_memory }}
requests:
cpu: {{ .Values.mongo_requests_cpu }}
memory: {{ .Values.mongo_requests_memory }}
readinessProbe:
exec:
command:
- mongo
- --eval
- db.adminCommand('ping')
---
apiVersion: v1
kind: Service
metadata:
namespace: {{ .Release.Namespace }}
name: local-mongo
labels:
app: local-mongo
spec:
#type: ClusterIP
clusterIP: None
selector:
app: local-mongo
ports:
- protocol: TCP
port: 27017
targetPort: 27017
name: mongo
{{- end }}