render values by tpl function

Signed-off-by: Boris Komraz <bkomraz1@gmail.com>
This commit is contained in:
Boris Komraz 2023-10-27 23:46:46 +03:00
parent fde9cf7c7f
commit c59ac6dedb
No known key found for this signature in database
2 changed files with 5 additions and 20 deletions

View file

@ -719,10 +719,10 @@ NAME: my-release
| server.image.repository | string | `""` (defaults to global.image.repository) | Repository to use for the Argo CD server | | server.image.repository | string | `""` (defaults to global.image.repository) | Repository to use for the Argo CD server |
| server.image.tag | string | `""` (defaults to global.image.tag) | Tag to use for the Argo CD server | | server.image.tag | string | `""` (defaults to global.image.tag) | Tag to use for the Argo CD server |
| server.imagePullSecrets | list | `[]` (defaults to global.imagePullSecrets) | Secrets with credentials to pull images from a private registry | | server.imagePullSecrets | list | `[]` (defaults to global.imagePullSecrets) | Secrets with credentials to pull images from a private registry |
| server.ingress.annotations | object | `{}` | Additional ingress annotations | | server.ingress.annotations | object | `{}` | Additional ingress annotations Annotation values may [reference other values] |
| server.ingress.enabled | bool | `false` | Enable an ingress resource for the Argo CD server | | server.ingress.enabled | bool | `false` | Enable an ingress resource for the Argo CD server |
| server.ingress.extraPaths | list | `[]` | Additional ingress paths | | server.ingress.extraPaths | list | `[]` | Additional ingress paths |
| server.ingress.hosts | list | `[]` | List of ingress hosts | | server.ingress.hosts | list | `[]` | List of ingress hosts Hosts value may [reference other values] |
| server.ingress.https | bool | `false` | Uses `server.service.servicePortHttps` instead `server.service.servicePortHttp` | | server.ingress.https | bool | `false` | Uses `server.service.servicePortHttps` instead `server.service.servicePortHttp` |
| server.ingress.ingressClassName | string | `""` | Defines which ingress controller will implement the resource | | server.ingress.ingressClassName | string | `""` | Defines which ingress controller will implement the resource |
| server.ingress.labels | object | `{}` | Additional ingress labels | | server.ingress.labels | object | `{}` | Additional ingress labels |

View file

@ -1898,7 +1898,7 @@ server:
# -- Enable an ingress resource for the Argo CD server # -- Enable an ingress resource for the Argo CD server
enabled: false enabled: false
# -- Additional ingress annotations # -- Additional ingress annotations
## Annotation values may reference other values by {{ .Values.otherValue }} (be sure protect by quotation marks) # Annotation values may [reference other values]
annotations: {} annotations: {}
# -- Additional ingress labels # -- Additional ingress labels
labels: {} labels: {}
@ -1906,25 +1906,10 @@ server:
ingressClassName: "" ingressClassName: ""
# -- List of ingress hosts # -- List of ingress hosts
# Hosts value may [reference other values]
## Argo Ingress. ## Argo Ingress.
## Hostnames must be provided if Ingress is enabled. ## Hostnames must be provided if Ingress is enabled.
## Secrets must be manually created in the namespace ## Secrets must be manually created in the namespace
##
## Hosts value may reference other values.
## For example in case of multiple environments you can use the same argocd values when environment specific
## values are defined in separate environment file that is used by multiple helm charts
##
## # env-values.yaml
## global:
## dnsDomain: .my.domain.com
##
## # values.yaml
## hosts:
## - "argocd {{ .Values.global.dnsDomain }}" # be sure protect by quotation marks
##
## helm install my-release argo/argo-cd -f global/env/configuration/env1-values.yaml
##
hosts: [] hosts: []
# - argocd.example.com # - argocd.example.com
@ -1960,7 +1945,7 @@ server:
# -- Setup up gRPC ingress to work with an AWS ALB # -- Setup up gRPC ingress to work with an AWS ALB
isAWSALB: false isAWSALB: false
# -- Additional ingress annotations for dedicated [gRPC-ingress] # -- Additional ingress annotations for dedicated [gRPC-ingress]
## Annotations values may reference other values by {{ .Values.otherValue }} (be sure protect by quotation marks) ## Annotations values may [reference other values]
annotations: {} annotations: {}
# -- Additional ingress labels for dedicated [gRPC-ingress] # -- Additional ingress labels for dedicated [gRPC-ingress]
labels: {} labels: {}