github.com/smartcontractkit/chainlink-testing-framework/libs@v0.0.0-20240227141906-ec710b4eb1a3/charts/chainlink/values.yaml (about)

     1  chainlink:
     2    image:
     3      image: public.ecr.aws/chainlink/chainlink
     4      version: 2.5.0
     5    web_port: 6688
     6    p2p_port: 6690
     7    resources:
     8      requests:
     9        cpu: 350m
    10        memory: 1024Mi
    11      limits:
    12        cpu: 350m
    13        memory: 1024Mi
    14  db:
    15    image:
    16      image: postgres
    17      version: 11.15
    18    stateful: true
    19    capacity: 1Gi
    20    resources:
    21      requests:
    22        cpu: 250m
    23        memory: 256Mi
    24      limits:
    25        cpu: 250m
    26        memory: 256Mi
    27    postgresUser: postgres
    28    postgresPassword: verylongdatabasepassword
    29    postgresDatabase: chainlink
    30    pgArgs:
    31      - '-c'
    32      - 'shared_preload_libraries=pg_stat_statements'
    33      - '-c'
    34      - 'pg_stat_statements.track=all'
    35    additionalArgs:
    36      - '-c'
    37      - 'shared_buffers=128MB'
    38      - '-c'
    39      - 'effective_cache_size=4096MB'
    40      - '-c'
    41      - 'work_mem=4MB'
    42  
    43  replicas: 1
    44  nodes:
    45    - name: node-1
    46      db:
    47        image:
    48          image: postgres
    49          version: 13.12
    50  
    51  prometheus: false
    52  
    53  toml: ''
    54  secretsToml: ''
    55  
    56  env:
    57    CL_DEV: 'false'
    58  
    59  podAnnotations: {}
    60  
    61  nodeSelector: {}
    62  
    63  tolerations: []
    64  
    65  affinity: {}