File tree 5 files changed +12
-9
lines changed
config/charts/body-based-routing 5 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -40,12 +40,14 @@ The following table list the configurable parameters of the chart.
40
40
| ---------------------------------------------| ----------------------------------------------------------------------------------------------------|
41
41
| ` bbr.name ` | Name for the deployment and service. |
42
42
| ` bbr.replicas ` | Number of replicas for the deployment. Defaults to ` 1 ` . |
43
+ | ` bbr.port ` | Port serving ext_proc. Defaults to ` 9004 ` . |
44
+ | ` bbr.healthCheckPort ` | Port for health checks. Defaults to ` 9005 ` . |
43
45
| ` bbr.image.name ` | Name of the container image used. |
44
46
| ` bbr.image.hub ` | Registry URL where the image is hosted. |
45
47
| ` bbr.image.tag ` | Image tag. |
46
48
| ` bbr.image.pullPolicy ` | Image pull policy for the container. Possible values: ` Always ` , ` IfNotPresent ` , or ` Never ` . Defaults to ` Always ` . |
47
49
| ` provider.name ` | Name of the Inference Gateway implementation being used. Possible values: ` istio ` , ` gke ` . Defaults to ` none ` . |
48
- | ` inference-gateway.name ` | The name of the Gateway. Defaults to ` inference-gateway ` . |
50
+ | ` inference-gateway.name ` | The name of the Gateway. Defaults to ` inference-gateway ` . |
49
51
50
52
## Notes
51
53
Original file line number Diff line number Diff line change 22
22
- " -v"
23
23
- " 3"
24
24
ports :
25
- - containerPort : 9004
25
+ - containerPort : {{ .Values.bbr.port }}
26
26
# health check
27
- - containerPort : 9005
27
+ - containerPort : {{ .Values.bbr.healthCheckPort }}
28
28
---
29
29
apiVersion : v1
30
30
kind : Service
36
36
app : {{ .Values.bbr.name }}
37
37
ports :
38
38
- protocol : TCP
39
- port : 9004
40
- targetPort : 9004
39
+ port : {{ .Values.bbr.port }}
40
+ targetPort : {{ .Values.bbr.port }}
41
41
appProtocol : HTTP2
42
42
type : ClusterIP
Original file line number Diff line number Diff line change 25
25
group : " "
26
26
kind : Service
27
27
name : {{ .Values.bbr.name }}
28
- port : 9004
28
+ port : {{ .Values.bbr.port }}
29
29
---
30
30
apiVersion : networking.gke.io/v1
31
31
kind : HealthCheckPolicy
40
40
type : " GRPC"
41
41
grpcHealthCheck :
42
42
portSpecification : " USE_FIXED_PORT"
43
- port : 9005
43
+ port : {{ .Values.bbr.healthCheckPort }}
44
44
targetRef :
45
45
group : " "
46
46
kind : Service
Original file line number Diff line number Diff line change 31
31
response_trailer_mode : " SKIP"
32
32
grpc_service :
33
33
envoy_grpc :
34
- cluster_name : outbound|9004 ||{{ .Values.bbr.name }}.default.svc.cluster.local
34
+ cluster_name : outbound|{{ .Values.bbr.port }} ||{{ .Values.bbr.name }}.default.svc.cluster.local
35
35
---
36
36
apiVersion : networking.istio.io/v1
37
37
kind : DestinationRule
Original file line number Diff line number Diff line change 6
6
hub : us-central1-docker.pkg.dev/k8s-staging-images/gateway-api-inference-extension
7
7
tag : main
8
8
pullPolicy : Always
9
- extProcPort : 9002
9
+ port : 9004
10
+ healthCheckPort : 9005
10
11
11
12
provider :
12
13
name : none
You can’t perform that action at this time.
0 commit comments