GitLab Runner Operator - Not support inclusion of toleration and affinity configurations directly within the Runner kind

Proposal

I would like to see support for directly specifying toleration and affinity configurations within GitLab Runner Operator. For Example: apiVersion: apps.gitlab.com/v1beta2 kind: Runner metadata: name: dev spec: gitlabUrl: https://gitlab.example.com token: gitlab-runner-secret # Name of the secret containing the Runner token tolerations: # Assuming tolerations support is added - key: "example-key" operator: "Equal" value: "example-value" effect: "NoSchedule" affinity: # Assuming affinity support is added nodeAffinity: # Example node affinity requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - key: "disktype" operator: "In" values: - "ssd"