github.com/kotalco/kotal@v0.3.0/config/samples/ethereum/ethereum_v1alpha1_poa_besu_node.yaml (about)

     1  # WARNING: DON'T use the following secrets in production
     2  apiVersion: v1
     3  kind: Secret
     4  metadata:
     5    name: poa-besu-nodekey
     6  stringData:
     7    key: "7fb5b8b783a35f3fafbd8e36582ec5eec507e509a6077aa6c84a48afd4d4cf06"
     8  ---
     9  apiVersion: ethereum.kotal.io/v1alpha1
    10  kind: Node
    11  metadata:
    12    name: poa-besu-node
    13  spec:
    14    ########### Genesis block spec ###########
    15    genesis:
    16      chainId: 20189
    17      networkId: 20189
    18      clique:
    19        blockPeriod: 15
    20        epochLength: 100
    21        signers:
    22          - "0xcF2C3fB8F36A863FD1A8c72E2473f81744B4CA6C"
    23          - "0x1990E5760d9f8Ae0ec55dF8B0819C77e59846Ff2"
    24          - "0xB87c1c66b36D98D1A74a9875EbA12c001e0bcEda"
    25      forks:
    26        homestead: 0
    27        eip150: 0
    28        eip155: 0
    29        eip158: 0
    30        byzantium: 0
    31        constantinople: 0
    32        petersburg: 0
    33        istanbul: 0
    34        muirglacier: 0
    35        berlin: 0
    36        london: 0
    37        arrowGlacier: 0
    38      coinbase: "0x071E2c1067c24607fF00cEEBbe83a38063BDEDd8"
    39      difficulty: "0xfff"
    40      gasLimit: "0x47b760"
    41      nonce: "0x0"
    42      timestamp: "0x0"
    43      accounts:
    44        - address: "0x48c5F25a884116d58A6287B72C9b069F936C9489"
    45          balance: "0xffffffffffffffffffff"
    46    ########### node spec ###########
    47    client: besu
    48    rpc: true
    49    nodePrivateKeySecretName: poa-besu-nodekey
    50    rpcPort: 8599
    51    corsDomains:
    52      - all
    53    hosts:
    54      - all
    55    rpcAPI:
    56      - web3
    57      - net
    58      - eth
    59      - clique
    60    resources:
    61      cpu: "1"
    62      cpuLimit: "1"
    63      memory: "1Gi"
    64      memoryLimit: "2Gi"