matching prod to staging

This commit is contained in:
Seth Call 2026-01-08 04:55:26 -06:00
parent 77bbf20032
commit 18654515db
4 changed files with 28 additions and 2 deletions

View File

@ -1,3 +1,3 @@
domain: "video.jamkazam.com" domain: "video.jamkazam.com"
# The version of the coturn-dns image in GCR # The version of the coturn-dns image in GCR
coturn_dns_image_tag: 1.0.9 coturn_dns_image_tag: 1.0.11

View File

@ -11,4 +11,12 @@ patchesJson6902:
group: apps group: apps
version: v1 version: v1
kind: Deployment kind: Deployment
name: external-dns name: external-dns
patches:
- target:
kind: Deployment
patch: |-
- op: add
path: /spec/template/spec/nodeSelector
value:
workload: infra

View File

@ -5,6 +5,17 @@ rbac:
kube-prometheus-stack: kube-prometheus-stack:
prometheus:
prometheusSpec:
nodeSelector:
workload: infra
grafana:
nodeSelector:
workload: infra
alertmanager:
alertmanagerSpec:
nodeSelector:
workload: infra
crds: crds:
enabled: false enabled: false

View File

@ -15,3 +15,10 @@ mediasoup:
sessionHealthCheckInterval: 60000 sessionHealthCheckInterval: 60000
sessionOverGracePeriod: 300000 sessionOverGracePeriod: 300000
nodeSelector:
workload: media
tolerations:
- key: "dedicated"
operator: "Equal"
value: "media"
effect: "NoSchedule"