github.com/kotalco/kotal@v0.3.0/apis/chainlink/v1alpha1/defaults.go (about) 1 package v1alpha1 2 3 const ( 4 // DefaltReplicas is the default replicas 5 DefaltReplicas uint = 1 6 // DefaultAPIPort is the default API and GUI port 7 DefaultAPIPort uint = 6688 8 // DefaultTLSPort is the default tls port 9 DefaultTLSPort uint = 6689 10 // DefaultP2PPort is the default p2p port 11 DefaultP2PPort uint = 30303 12 ) 13 14 var ( 15 // DefaultCorsDomains is the default cors domains from which to accept requests 16 DefaultCorsDomains = []string{"*"} 17 ) 18 19 const ( 20 // DefaultChainlinkImage is the default chainlink client image 21 DefaultChainlinkImage = "kotalco/chainlink:v2.9.1" 22 ) 23 24 // Resources 25 const ( 26 // DefaultNodeCPURequest is the cpu requested by chainlink node 27 DefaultNodeCPURequest = "2" 28 // DefaultNodeCPULimit is the cpu limit for chainlink node 29 DefaultNodeCPULimit = "4" 30 31 // DefaultNodeMemoryRequest is the memory requested by chainlink node 32 DefaultNodeMemoryRequest = "2Gi" 33 // DefaultNodeMemoryLimit is the memory limit for chainlink node 34 DefaultNodeMemoryLimit = "4Gi" 35 36 // DefaultNodeStorageRequest is the Storage requested by chainlink node 37 DefaultNodeStorageRequest = "20Gi" 38 )