Why am I being asked to provide my card details?

I am new ot render and I have my yaml file as this:

services:
  - type: web
    name: web
    env: docker
    region: frankfurt
    plan: free
    branch: master
    dockerCommand: ./docker/web_entrypoint.sh
    dockerfilePath: ./docker/production.Dockerfile
    numInstances: 1
    healthCheckPath: /admin/login/
    envVars:
      - fromGroup: app-settings
      - key: CELERY_BROKER_URL
        fromService:
          type: redis
          name: redis
          property: connectionString
      - key: DATABASE_URL
        fromDatabase:
          name: postgres
          property: connectionString

  - type: worker
    name: celery
    env: docker
    region: frankfurt
    plan: free
    branch: master
    dockerCommand: ./docker/celery_entrypoint.sh
    dockerfilePath: ./docker/production.Dockerfile
    numInstances: 1
    envVars:
      - fromGroup: app-settings
      - key: CELERY_BROKER_URL
        fromService:
          type: redis
          name: redis
          property: connectionString
      - key: DATABASE_URL
        fromDatabase:
          name: postgres
          property: connectionString

  - type: worker
    name: beats
    env: docker
    region: frankfurt
    plan: free
    branch: master
    dockerCommand: ./docker/celery_entrypoint.sh
    dockerfilePath: ./docker/production.Dockerfile
    numInstances: 1
    envVars:
      - fromGroup: app-settings
      - key: CELERY_BROKER_URL
        fromService:
          type: redis
          name: redis
          property: connectionString
      - key: DATABASE_URL
        fromDatabase:
          name: postgres
          property: connectionString

  - type: redis
    region: frankfurt
    name: redis
    plan: free
    ipAllowList: []

databases:
  - name: postgres
    region: frankfurt
    plan: free
    postgresMajorVersion: 14


envVarGroups:
  - name: app-settings
    envVars:
      - key: test
        value: 1

When I try creating a new blueprint instance, I get a modal that asks for my credit card details. My intention is to use the free-tier of render for now as I evaluate it. Could someone help me understand why I need to provide my card details even for free plan and its implications? Thanks in advance!

According to this page: Free Instance Types | Render · Cloud Hosting for Developers background workers are not supported on free instances.

Hey,

Jorens’ answer is correct, Background Workers are not available on free instance types.

Jérémy.
Render Support, UTC+3

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.