Gilab cache URL ignored

Hi,

I have a Gitlab install done with Helm but the cache is not working in CI with kubernetes executor. The cache URL is ignored like it’s not given to runners:

Creating cache gemfile…
bundle_gems: found 15242 matching files
No URL provided, cache will be not uploaded to shared cache server. Cache will be stored only locally.

I have this in the runner config.toml:

[runners.cache]
Type = “s3”
Path = “gitlab-runner”
Shared = true
[runners.cache.s3]
ServerAddress = “minio.xxx.xx”
BucketName = “runner-cache”
BucketLocation = “us-east-1”

Also, if I look at the runner pod I see that the env variables are defined properly:

kubectl describe pod -n gitlab gitlab-gitlab-runner-5564f76bc7-pj9fg
Environment:

CACHE_TYPE: s3
CACHE_PATH: gitlab-runner
CACHE_SHARED: true
CACHE_S3_SERVER_ADDRESS: minio.xxx.xx
CACHE_S3_BUCKET_NAME: runner-cache
CACHE_S3_BUCKET_LOCATION: us-east-1

Note: It might be related to the domain name, the initial installation was on different domain name and I changed it afterwards via the helm parameter “global.hosts.domain=xxx.xx”

Anyone has an idea?
Thanks