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

     1  geth:
     2    podSecurityContext:
     3      fsGroup: 999
     4    securityContext:
     5      capabilities:
     6        drop:
     7          - ALL
     8      readOnlyRootFilesystem: false
     9      runAsNonRoot: false
    10      runAsUser: 999
    11      runAsGroup: 999
    12    version: v1.12.0
    13    wsrpc-port: 8546
    14    httprpc-port: 8544
    15    networkId: 1337
    16    blocktime: 1
    17    resources:
    18      requests:
    19        cpu: 1
    20        memory: 1024Mi
    21      limits:
    22        cpu: 1
    23        memory: 1024Mi
    24  
    25  ingress:
    26    enabled: false
    27    annotations: {}
    28    ingressClassName: alb
    29    annotation_certificate_arn: ''
    30    annotation_group_name: ''
    31    hosts:
    32      - host: chainlink-geth-http.local
    33        http:
    34          paths:
    35            - path: /
    36              pathType: ImplementationSpecific
    37              backend:
    38                service:
    39                  name: geth
    40                  port:
    41                    number: 8544
    42      - host: chainlink-geth-ws.local
    43        http:
    44          paths:
    45            - path: /
    46              pathType: ImplementationSpecific
    47              backend:
    48                service:
    49                  name: geth
    50                  port:
    51                    number: 8546
    52  
    53  # monitoring.coreos.com/v1 PodMonitor for each node
    54  prometheusMonitor: false
    55  
    56  networkPolicy:
    57    ingress:
    58      # Should be a comma separated list of CIDR blocks. To include
    59      # AWS ALB private CIDRs and optionally other custom CIDRs.
    60      # Example format: 10.0.0.0/16,192.168.0.1/24
    61      allowCustomCidrs: '0.0.0.0/0'
    62  
    63  networkPolicies:
    64    enabled: true
    65  
    66  # Configure the default network policy.
    67  networkPolicyDefault:
    68    ingress:
    69      allowCustomCidrs: false
    70      # String of comma separated CIDRs
    71      customCidrs: null
    72      # Example:
    73      # customCidrs: '10.0.0.0/16,192.168.0.1/24'