github.com/kotalco/kotal@v0.3.0/config/samples/ethereum/ethereum_v1alpha1_poa_besu_node_no_genesis.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: 608e9b6f67c65e47531e08e8e501386dfae63a540fa3c48802c8aad854510b4e
     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: 11
    18      clique:
    19        blockPeriod: 15
    20        epochLength: 100
    21        signers:
    22          - "0xd2c21213027cbf4d46c16b55fa98e5252b048706"
    23      accounts:
    24        - address: "0x48c5F25a884116d58A6287B72C9b069F936C9489"
    25          balance: "0xffffffffffffffffffff"
    26    ########### network nodes spec ###########
    27    client: besu
    28    rpc: true
    29    nodePrivateKeySecretName: poa-besu-nodekey
    30    rpcPort: 8599
    31    corsDomains:
    32      - all
    33    hosts:
    34      - all
    35    rpcAPI:
    36      - web3
    37      - net
    38      - eth
    39      - clique
    40    resources:
    41      cpu: "1"
    42      cpuLimit: "1"
    43      memory: "1Gi"
    44      memoryLimit: "2Gi"