Gitlab runner doesn`t work in kubernetes cluster

I`ve installed Gitlab runner in Kubernetes cluster via Helm chart.
My valuesz.yml:
image:
registry: registry.gitlab.com
image: gitlab-org/gitlab-runner

gitlabUrl: https://gitlab.com

rbac:
create: true
rules:

  • resources: [“configmaps”, “pods”, “pods/attach”, “secrets”, “services”]
    verbs: [“get”, “list”, “watch”, “create”, “patch”, “update”, “delete”]
  • apiGroups: [“rbac.authorization.k8s.io/v1”]
    resources: [“pods/exec”]
    verbs: [“create”, “patch”, “delete”]

podSecurityContext:
runAsUser: 100

fsGroup: 65533

So, I get the error “WARNING: Error streaming logs gitlab-runner/runner-ra2tf3j9n-project-47241071-concurrent-0-0yk1z8wi/helper:/logs-47241071-4806682416/output.log: command terminated with exit code 1.”

Can someone help with this issue?