loader-custom-values.yaml Parameter Description
The following table describes the parameters which can be
customized while updating the
loader-custom-values.yaml
file.
Table 6-1 loader-custom-values.yaml parameters
Parameter | Description | Default Value | Range or Possible Value |
---|---|---|---|
global.image.repository | Specifies the name of the docker registry that contains the cnc-nfdata-collector image. | - | - |
global.inputPath | Specifies the name of the k8s slave that contains the
exported-data/ directory.
Note: The path must
include |
/tmp | - |
global.slaveNodeName | Specifies the name of the k8s slave that stores the collected
data, for example, the exported-data/ directory.
To obtain
the name of the slave node or worker node, execute the |
- | - |
global.capacityStorage | Specifies the amount of space that is utilized by the collected data, for example, 2Gi, 200Mi, and so on. | 5Gi | - |
global.elasticSearchURL | Provides the URL for Elastic search. FQDN of Elastic search can
also be provided.
If Elastic search requires authentication, it can
be provided in the URL as:
|
- | - |
global.victoriaMetricsURL | Provides the URL for Victoria metrics. FQDN of Victoria metrics can also be provided. | - | - |
global.limit | Sets the number of documents that must be saved per request.
This parameter can be used to enhance the performance. The value is limited to available buffer. |
1000 | - |
global.nodeTLSRejectedUnauthorized | Enables or disables certificate verification. | true | true/false |
Sample custom file
global:
# Registry where cnc-nfdata-collector image present.
image:
repository: reg-1:5000
# path on slave node where exported-data folder is present. path including the exported-data directory
inputPath: /tmp/exported-data_2020-07-08_21:04:06
#Mention the URL of elasticSearch here.
elasticSearchURL: "https://elastic:76qt2b7rz87ms2cs6fmb2c4l@10.178.246.56:30731"
#Mention the URL of victoria here.
victoriaMetricsURL: "http://10.178.246.56:32001"
#Storage to be allocated to persistence
capacityStorage: 5Gi
#Name of the slave where fetched data has to be loaded
slaveNodeName: remote-setup-kamal
#To disable certificate verification
nodeTLSRejectedUnauthorized: "true"
#Maximum number of records to be transferred in a batch
limit: "1000"