You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/agent-control/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,8 +74,6 @@ agent-control-deployment:
74
74
| agent-control-deployment | object | See `values.yaml` | Values for the agent-control-deployment chart. Ref.: https://github.com/newrelic/helm-charts/blob/master/charts/agent-control-deployment/values.yaml |
75
75
| agent-control-deployment.chartRepositoryUrl | string | `"https://helm-charts.newrelic.com"` | The repository URL from where the `agent-control-deployment` chart will be installed. |
76
76
| agent-control-deployment.enabled | bool | `true` | Enable the installation of the Agent Control. |
77
-
| agent-control-deployment.toolkitImage | object | `{"pullPolicy":"IfNotPresent","pullSecrets":[],"registry":null,"repository":"newrelic/newrelic-agent-control-cli","tag":"nightly"}` | The image that contains the necessary tools to install and uninstall Agent Control. |
78
-
| agent-control-deployment.toolkitImage.pullSecrets | list | `[]` | The secrets that are needed to pull images from a custom registry. |
79
77
| flux2 | object | See `values.yaml` | Values for the Flux chart. Ref.: https://github.com/fluxcd-community/helm-charts/blob/flux2-2.10.2/charts/flux2/values.yaml |
80
78
| flux2.clusterDomain | string | `"cluster.local"` | This is the domain name of the cluster. |
81
79
| flux2.enabled | bool | `true` | Enable or disable FluxCD installation. New Relic' Agent Control need Flux to work, but the user can use an already existing Flux deployment. With that use case, the use can disable Flux and use this chart to only install the CRs to deploy the Agent Control. |
@@ -86,6 +84,8 @@ agent-control-deployment:
86
84
| flux2.watchAllNamespaces | bool | `false` | As we are using Flux as a tool from the agent control to release new workloads, we do not want Flux to listen to all CRs created on the whole cluster. If the user does not want to use Flux and is only using it because of the agent control, this is the way to go so the cluster has deployed all operators needed by the agent control. But if the user want to use Flux for other purposes besides the agent control, this toggle can be used to allow Flux to work on the whole cluster. |
87
85
| fullnameOverride | string | `""` | Override the full name of the release |
88
86
| nameOverride | string | `""` | Override the name of the chart |
87
+
| toolkitImage | object | `{"pullPolicy":"IfNotPresent","pullSecrets":[],"registry":null,"repository":"newrelic/newrelic-agent-control-cli","tag":"nightly"}` | The image that contains the necessary tools to install and uninstall Agent Control. |
88
+
| toolkitImage.pullSecrets | list | `[]` | The secrets that are needed to pull images from a custom registry. |
Copy file name to clipboardExpand all lines: charts/agent-control/values.yaml
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,16 @@ nameOverride: ""
3
3
# -- Override the full name of the release
4
4
fullnameOverride: ""
5
5
6
+
# -- The image that contains the necessary tools to install and uninstall Agent Control.
7
+
toolkitImage:
8
+
registry:
9
+
repository: newrelic/newrelic-agent-control-cli
10
+
# @default It defaults to `appVersion` in `Chart.yaml`.
11
+
tag: nightly
12
+
pullPolicy: IfNotPresent
13
+
# -- The secrets that are needed to pull images from a custom registry.
14
+
pullSecrets: []
15
+
6
16
# -- Values for the agent-control-deployment chart. Ref.: https://github.com/newrelic/helm-charts/blob/master/charts/agent-control-deployment/values.yaml
7
17
# @default -- See `values.yaml`
8
18
agent-control-deployment:
@@ -12,16 +22,6 @@ agent-control-deployment:
12
22
# -- The repository URL from where the `agent-control-deployment` chart will be installed.
0 commit comments