Update custom-values.yaml to deploy proxy using host port

This commit is contained in:
wbsong111
2025-02-18 14:38:28 +09:00
parent ae2d98a0ea
commit 15681e6d52
2 changed files with 36 additions and 0 deletions
+24
View File
@@ -199,3 +199,27 @@ postgresql:
password: password
```
### 7) proxy 서비스
#### 7.1) Loadbalancer 사용
- ingress 서비스를 proxy가 사용하는 service의 타입을 LoadBalancer로 배포하여 서비스를 제공한다.
``` yaml
proxy:
enabled: true
type: LoadBalancer
ingress:
enable: false
```
#### 7.2) host port 사용
- ingress 서비스를 위해 proxy의 80, 443을 worker node의 80, 443과 바인드하여 서비스를 제공한다.
``` yaml
proxy:
enabled: true
type: ClusterIP
ingress:
enable: false
http:
hostPort: 80
tls:
hostPort: 443
```