cli: add doc comments for helm

This commit is contained in:
Otto Bittner 2023-03-03 12:43:33 +01:00
parent ac127db79e
commit 3cef9ee74d
3 changed files with 21 additions and 1 deletions

View file

@ -6,6 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only
package helm
// Values for the Cilium Helm releases for AWS.
var awsVals = map[string]any{
"endpointRoutes": map[string]any{
"enabled": true,
@ -44,6 +45,7 @@ var awsVals = map[string]any{
"kubeProxyReplacementHealthzBindAddr": "0.0.0.0:10256",
}
// Values for the Cilium Helm releases for Azure.
var azureVals = map[string]any{
"endpointRoutes": map[string]any{
"enabled": true,
@ -84,6 +86,7 @@ var azureVals = map[string]any{
"kubeProxyReplacementHealthzBindAddr": "0.0.0.0:10256",
}
// Values for the Cilium Helm releases for GCP.
var gcpVals = map[string]any{
"endpointRoutes": map[string]any{
"enabled": true,