feat(argocd-applicationset): Add ingress for webhook (#1059)

* feat(argocd-applicationset): Add service and ingress for webhook

Signed-off-by: Jos van Bakel <jos@codeaddict.org>

* Bump chart version

Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>

* Cleanup README

Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>

* Cleanup values.yaml

Signed-off-by: Jos van Bakel <jos@codeaddict.org>

* Add missing var 'kubeVersionOverride' to values and README

Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>

* Clarify changelog

Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>

Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
Jos van Bakel 2022-01-09 19:07:37 +01:00 committed by GitHub
parent e7a27468b2
commit 9bfd353b6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 182 additions and 4 deletions

View file

@ -57,6 +57,7 @@ kubectl apply -k https://github.com/argoproj-labs/applicationset.git/manifests/c
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| affinity | object | `{}` | [Assign custom affinity rules to the deployment](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/) |
| apiVersionOverrides.ingress | string | `""` | String to override apiVersion of ingresses rendered by this helm chart |
| args.argocdRepoServer | string | `"argocd-repo-server:8081"` | The default Argo CD repo server address |
| args.debug | bool | `false` | Print debug logs |
| args.dryRun | bool | `false` | Enable dry run mode |
@ -73,6 +74,7 @@ kubectl apply -k https://github.com/argoproj-labs/applicationset.git/manifests/c
| image.repository | string | `"quay.io/argoproj/argocd-applicationset"` | The image repository |
| image.tag | string | `""` | Overrides the image tag whose default is the chart appVersion. |
| imagePullSecrets | list | `[]` | If defined, uses a Secret to pull an image from a private Docker registry or repository. |
| kubeVersionOverride | string | `""` | Override the Kubernetes version, which is used to evaluate certain manifests |
| metrics.enabled | bool | `false` | Deploy metrics service |
| metrics.service.annotations | object | `{}` | Metrics service annotations |
| metrics.service.labels | object | `{}` | Metrics service labels |
@ -102,6 +104,15 @@ kubectl apply -k https://github.com/argoproj-labs/applicationset.git/manifests/c
| serviceAccount.create | bool | `true` | Specifies whether a service account should be created |
| serviceAccount.name | string | `""` | The name of the service account to use. If not set and create is true, a name is generated using the fullname template |
| tolerations | list | `[]` | [Tolerations for use with node taints](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/) |
| webhook.ingress.annotations | object | `{}` | Additional ingress annotations |
| webhook.ingress.enabled | bool | `false` | Enable an ingress resource for Webhooks |
| webhook.ingress.extraPaths | list | `[]` | Additional ingress paths |
| webhook.ingress.hosts | list | `[]` | List of ingress hosts |
| webhook.ingress.ingressClassName | string | `""` | Defines which ingress controller will implement the resource |
| webhook.ingress.labels | object | `{}` | Additional ingress labels |
| webhook.ingress.pathType | string | `"Prefix"` | Ingress path type. One of `Exact`, `Prefix` or `ImplementationSpecific` |
| webhook.ingress.paths | list | `["/api/webhook"]` | List of ingress paths |
| webhook.ingress.tls | list | `[]` | Ingress TLS configuration |
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Autogenerated from chart metadata using [helm-docs](https://github.com/norwoodj/helm-docs)