feat(argo-cd): Add params to override Certificate duration and renewBefore (#1209)
* feat(argo-cd): New params to override Certificate duration and renewBefore Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * chore(argo-cd): Clarify existing certificate params Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
parent
d542b1e426
commit
3befa82210
4 changed files with 27 additions and 16 deletions
|
|
@ -402,11 +402,13 @@ NAME: my-release
|
|||
| server.autoscaling.targetCPUUtilizationPercentage | int | `50` | Average CPU utilization percentage for the Argo CD server [HPA] |
|
||||
| server.autoscaling.targetMemoryUtilizationPercentage | int | `50` | Average memory utilization percentage for the Argo CD server [HPA] |
|
||||
| server.certificate.additionalHosts | list | `[]` | Certificate manager additional hosts |
|
||||
| server.certificate.domain | string | `"argocd.example.com"` | Certificate manager domain |
|
||||
| server.certificate.enabled | bool | `false` | Enables a certificate manager certificate |
|
||||
| server.certificate.issuer.kind | string | `nil` | Certificate manager issuer |
|
||||
| server.certificate.issuer.name | string | `nil` | Certificate manager name |
|
||||
| server.certificate.secretName | string | `"argocd-server-tls"` | Certificate manager secret name |
|
||||
| server.certificate.domain | string | `"argocd.example.com"` | Certificate primary domain (commonName) |
|
||||
| server.certificate.duration | string | `""` | The requested 'duration' (i.e. lifetime) of the Certificate. Value must be in units accepted by Go time.ParseDuration |
|
||||
| server.certificate.enabled | bool | `false` | Deploy a Certificate resource (requires cert-manager) |
|
||||
| server.certificate.issuer.kind | string | `""` | Certificate issuer kind. Either `Issuer` or `ClusterIssuer` |
|
||||
| server.certificate.issuer.name | string | `""` | Certificate isser name. Eg. `letsencrypt` |
|
||||
| server.certificate.renewBefore | string | `""` | How long before the currently issued certificate's expiry cert-manager should renew the certificate. Value must be in units accepted by Go time.ParseDuration |
|
||||
| server.certificate.secretName | string | `"argocd-server-tls"` | The name of the Secret that will be automatically created and managed by this Certificate resource |
|
||||
| server.clusterAdminAccess.enabled | bool | `true` | Enable RBAC for local cluster deployments |
|
||||
| server.config | object | See [values.yaml] | [General Argo CD configuration] |
|
||||
| server.configAnnotations | object | `{}` | Annotations to be added to Argo CD ConfigMap |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue