github.com/kotalco/kotal@v0.3.0/config/samples/ethereum/ethereum_v1alpha1_goerli_geth_node.yaml (about) 1 # WARNING: DON'T use the following secrets in production 2 apiVersion: v1 3 kind: Secret 4 metadata: 5 name: goerli-geth-nodekey 6 stringData: 7 key: 5df5eff7ef9e4e82739b68a34c6b23608d79ee8daf3b598a01ffb0dd7aa3a2fd 8 --- 9 apiVersion: v1 10 kind: Secret 11 metadata: 12 name: jwt-secret 13 stringData: 14 secret: fbe0c28a10274b27babf3c51e88a7435318e25fad4de877e5a63a67d0d65fdbb 15 --- 16 apiVersion: ethereum.kotal.io/v1alpha1 17 kind: Node 18 metadata: 19 name: goerli-geth-node 20 spec: 21 network: goerli 22 client: geth 23 nodePrivateKeySecretName: goerli-geth-nodekey 24 rpc: true 25 engine: true 26 jwtSecretName: jwt-secret 27 rpcPort: 8599 28 corsDomains: 29 - example.kotal.io 30 rpcAPI: 31 - web3 32 - net 33 - eth 34 graphql: true 35 graphqlPort: 8777 36 resources: 37 cpu: "1" 38 cpuLimit: "1" 39 memory: "1Gi" 40 memoryLimit: "2Gi"