diff --git a/charts/argo-cd/CUSTOM-README.md b/charts/argo-cd/CUSTOM-README.md index 3b4667b..2414f88 100644 --- a/charts/argo-cd/CUSTOM-README.md +++ b/charts/argo-cd/CUSTOM-README.md @@ -14,13 +14,13 @@ annotations: cert-manager.io/cluster-issuer: "letsencrypt-prod" hosts: - - host: example.com + - host: argocd.example.com paths: - / tls: - - secretName: my-tls-secret + - secretName: ${TLS_NAME} hosts: - - example.com + - argocd.example.com ``` @@ -30,3 +30,14 @@ | Key | Type | Default | Description | |-----|------|---------|-------------| | global.domain | string | `"argocd.example.com"` | ArgoCD에서 사용할 호스트네임을 지정합니다.| + + +### ArgoCD Server Ingress +| server.ingress.annotations | object | `{}` | ingress의 annotations 설정합니다. | +| server.ingress.enabled | bool | `false` | Ingress의 사용여부를 결정합니다. | +| server.ingress.extraTls | list | `[]` | Ingress의 TLS를 설정합니다. | +| server.ingress.hostname | string | `""` (defaults to global.domain) | ArgoCD의 호스트네임을 설정합니다. | +| server.ingress.ingressClassName | string | `""` | Ingress 리소스를 구현할 컨트롤러를 정의합니다.| +| server.ingress.labels | object | `{}` | Ingress에 추가할 Label을 정의합니다. | +| server.ingress.path | string | `"/"` | The path to Argo CD server | +| server.ingress.pathType | string | `"Prefix"` | Ingress path type. One of `Exact`, `Prefix` or `ImplementationSpecific` |