Skip to content

Commit 61bbeed

Browse files
author
Roman Zavodskikh
committed
Update fabric-gateway-controller
Changelog: + Create ControllerRevision if stackVersion is set + Added some follow-up small enhancenents Signed-off-by: Roman Zavodskikh <[email protected]>
1 parent 7a5c836 commit 61bbeed

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

cluster/config-defaults.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,7 @@ fabric_gateway_controller_enabled: "true"
337337
fabric_gateway_controller_cpu: "50m"
338338
fabric_gateway_controller_memory: "150Mi"
339339
fabric_gateway_controller_allow_all_filters: "false"
340+
fabric_gateway_controller_enable_versioning: "false"
340341
fabric_gateway_controller_ssl_policy: ""
341342
fabric_gateway_controller_log_level: "INFO"
342343

cluster/manifests/fabric-gateway/deployment.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# {{ $version := "master-263" }}
1+
# {{ $version := "master-265" }}
22
apiVersion: apps/v1
33
kind: Deployment
44
metadata:
@@ -47,6 +47,9 @@ spec:
4747
{{ if eq .Cluster.ConfigItems.fabric_gateway_controller_allow_all_filters "true" }}
4848
- -allow-all-filters=true
4949
{{ end }}
50+
{{ if eq .Cluster.ConfigItems.fabric_gateway_controller_enable_versioning "true" }}
51+
- -enable-versioning
52+
{{ end }}
5053
resources:
5154
requests:
5255
cpu: {{ .Cluster.ConfigItems.fabric_gateway_controller_cpu }}

0 commit comments

Comments
 (0)