Customize installation defaults¶
This topic introduces how to customize the default configurations when installing NebulaGraph Operator.
Customizable parameters¶
When executing the helm install [NAME] [CHART] [flags]
command to install a chart, you can specify the chart configuration. For more information, see Customizing the Chart Before Installing.
You can view the configurable options in the nebula-operator chart configuration file. Alternatively, you can view the configurable options through the command helm show values nebula-operator/nebula-operator
, as shown below.
[root@master ~]$ helm show values nebula-operator/nebula-operator
image:
nebulaOperator:
image: vesoft/nebula-operator:v1.7.3
imagePullPolicy: Always
imagePullSecrets: [ ]
kubernetesClusterDomain: ""
controllerManager:
create: true
replicas: 2
env: [ ]
resources:
limits:
cpu: 200m
memory: 200Mi
requests:
cpu: 100m
memory: 100Mi
admissionWebhook:
create: false
# The TCP port the Webhook server binds to. (default 9443)
webhookBindPort: 9443
scheduler:
create: true
schedulerName: nebula-scheduler
replicas: 2
env: [ ]
resources:
limits:
cpu: 200m
memory: 200Mi
requests:
cpu: 100m
memory: 100Mi
verbosity: 0
plugins:
enabled: ["NodeZone"]
disabled: []
...
Part of the above parameters are described as follows:
Parameter | Default value | Description |
---|---|---|
image.nebulaOperator.image |
vesoft/nebula-operator:v1.7.3 |
The image of NebulaGraph Operator, version of which is 1.7.3. |
image.nebulaOperator.imagePullPolicy |
IfNotPresent |
The image pull policy in Kubernetes. |
imagePullSecrets |
- | The image pull secret in Kubernetes. For example imagePullSecrets[0].name="vesoft" . |
kubernetesClusterDomain |
cluster.local |
The cluster domain. |
controllerManager.create |
true |
Whether to enable the controller-manager component. |
controllerManager.replicas |
2 |
The number of controller-manager replicas. |
admissionWebhook.create |
false |
Whether to enable Admission Webhook. This option is disabled. To enable it, set the value to true and you will need to install cert-manager. For details, see Enable admission control. |
shceduler.create |
true |
Whether to enable Scheduler. |
shceduler.schedulerName |
nebula-scheduler |
The name of the scheduler customized by NebulaGraph Operator. It is used to evenly distribute Storage Pods across different zones which are only available in the Enterprise Edition. |
shceduler.replicas |
2 |
The number of nebula-scheduler replicas. |
Example¶
The following example shows how to enable AdmissionWebhook when you install NebulaGraph Operator (AdmissionWebhook is disabled by default):
helm install nebula-operator nebula-operator/nebula-operator --namespace=<nebula-operator-system> --set admissionWebhook.create=true
Check whether the specified configuration of NebulaGraph Operator is installed successfully:
helm get values nebula-operator -n <nebula-operator-system>
Example output:
USER-SUPPLIED VALUES:
admissionWebhook:
create: true
For more information about helm install
, see Helm Install.