Update CUSTOM-README.md

This commit is contained in:
우창호
2024-11-11 15:17:18 +09:00
committed by GitHub
parent ab7b433898
commit b68ad50b72
+14 -3
View File
@@ -14,13 +14,13 @@
annotations: annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod" cert-manager.io/cluster-issuer: "letsencrypt-prod"
hosts: hosts:
- host: example.com - host: argocd.example.com
paths: paths:
- / - /
tls: tls:
- secretName: my-tls-secret - secretName: ${TLS_NAME}
hosts: hosts:
- example.com - argocd.example.com
``` ```
@@ -30,3 +30,14 @@
| Key | Type | Default | Description | | Key | Type | Default | Description |
|-----|------|---------|-------------| |-----|------|---------|-------------|
| global.domain | string | `"argocd.example.com"` | ArgoCD에서 사용할 호스트네임을 지정합니다.| | 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` |