mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-06 14:04:17 -04:00
cli: add doc comments for helm
This commit is contained in:
parent
ac127db79e
commit
3cef9ee74d
3 changed files with 21 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue