From 5de5270b7346a6b4a3c69fbea3aa56116f158547 Mon Sep 17 00:00:00 2001 From: Eric Meehan Date: Wed, 23 Jul 2025 08:55:16 -0400 Subject: [PATCH] Added tolerations for GPU worker --- tasks/main.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/tasks/main.yml b/tasks/main.yml index fee573d..cb51f12 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -45,6 +45,24 @@ activeRecordEncryptionPrimaryKey: "{{ mastodon_active_record_encryption_primary_key }}" useSecureWebSocket: true s3AliasHost: minio.eom.dev/mastodon + web: + tolerations: + - key: specialResources + operator: Equal + value: GPU + effect: NoSchedule + sidekiq: + tolerations: + - key: specialResources + operator: Equal + value: GPU + effect: NoSchedule + streaming: + tolerations: + - key: specialResources + operator: Equal + value: GPU + effect: NoSchedule extraConfig: LDAP_ENABLED: "true" LDAP_HOST: openldap.openldap.svc.cluster.local