# Focus/conference manager. Talks to prosody as a component, signs # users into rooms, picks JVBs from the brewery for video routing. apiVersion: apps/v1 kind: Deployment metadata: name: jicofo namespace: jitsi spec: replicas: 1 strategy: type: Recreate selector: matchLabels: { app: jicofo } template: metadata: labels: { app: jicofo } spec: containers: - name: jicofo image: jitsi/jicofo:stable envFrom: - configMapRef: { name: jitsi-config } - secretRef: { name: jitsi-secrets } resources: requests: { cpu: 50m, memory: 256Mi } limits: { cpu: 500m, memory: 1Gi }