Update custom-values.yaml to deploy proxy using host port
This commit is contained in:
@@ -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
|
||||
```
|
||||
@@ -23,6 +23,18 @@ proxy:
|
||||
ingress:
|
||||
enable: false
|
||||
|
||||
## Host Port 배포 예시 추가
|
||||
# proxy:
|
||||
# enabled: true
|
||||
# type: ClusterIP
|
||||
# ingress:
|
||||
# enable: false
|
||||
# http:
|
||||
# hostPort: 80
|
||||
# tls:
|
||||
# hostPort: 443
|
||||
|
||||
|
||||
# Kong admin API 서비스 설정
|
||||
admin:
|
||||
annotations:
|
||||
|
||||
Reference in New Issue
Block a user