You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# If you would like to use the built in OpenTelemetry SDK uncomment and set the following configuration
249
269
# otel.sdk.disabled=false
250
270
# otel.java.global-autoconfigure.enabled=true
@@ -396,8 +416,10 @@ config:
396
416
enabled: false
397
417
redis:
398
418
# enable or disable redis integration
399
-
# please uncomment the 3 redis properties in config.systemProperties
419
+
# please uncomment the 5 redis properties in config.systemProperties
420
+
# view more configurable system properties here - https://techdocs.broadcom.com/us/en/ca-enterprise-software/layer7-api-management/api-gateway/congw11-1/policy-assertions/assertion-palette/service-availability-assertions/key-value-storage-assertions.html#_c8b71b7b-dd84-4ee6-9771-d0bc262c36e9_sys_prop_configs
400
421
# Redis client properties for configuring Redis Standalone or Redis Sentinel connections
422
+
# This configuration is parsed into redis.default in sharedstate_client.yaml
401
423
enabled: false
402
424
# We recommend using an existing secret for Redis configuration in production environments
403
425
# for separation of concerns and to better secure Redis client property secrets.
@@ -406,6 +428,8 @@ config:
406
428
# To configure the Redis client directly in this values file uncomment and/or set the following client properties
407
429
groupName: l7GW
408
430
commandTimeout: 5000
431
+
connectTimeout: 10000
432
+
testOnStart: false
409
433
# The Gateway supports Redis master auth only.
410
434
# If trying out auth using the subChart redis.auth.enabled should be true, and redis.auth.sentinel should be false (default)
411
435
# If redis.auth.sentinel is enabled in the redis subChart or on your External Redis Sentinel Deployment, the Gateway will fail to start.
@@ -423,9 +447,12 @@ config:
423
447
masterSet: mymaster
424
448
# If the subChart is not enabled sentinel nodes need to be set
425
449
nodes:
426
-
- <host>:<port>
427
-
- <host>:<port>
428
-
- <host>:<port>
450
+
- host: <host>
451
+
port: <port>
452
+
- host: <host>
453
+
port: <port>
454
+
- host: <host>
455
+
port: <port>
429
456
standalone: {}
430
457
# host: redis-standalone
431
458
# port: 6379
@@ -445,7 +472,43 @@ config:
445
472
# changes will be required
446
473
# Using Redis as a subChart is not recommended in production, please use your own Redis for this integration.
447
474
enabled: false
448
-
475
+
additionalProviders: []
476
+
# - name: myRegionalRedisInstance1
477
+
# redis:
478
+
# tls:
479
+
# existingSecret: myRegionalRedisCertSecret1
480
+
# key: redis.crt
481
+
# # path must match ssl.cert in your provider config
482
+
# path: myRegionalRedisCert.crt
483
+
# config: {}
484
+
# config:
485
+
# regional:
486
+
# type: sentinel
487
+
# keyPrefixGroupName: test
488
+
# username: abc
489
+
# password: "def"
490
+
# commandTimeout: 5000
491
+
# connectTimeout: 10000
492
+
# testOnStart: false
493
+
# ssl:
494
+
# enabled: true
495
+
# cert: myRegionalRedisCert.crt
496
+
# verifyPeer: false
497
+
# sentinel:
498
+
# master: mymaster
499
+
# nodes:
500
+
# - host: 127.0.0.1
501
+
# port: 26379
502
+
# - host: 192.168.0.1
503
+
# port: 26379
504
+
505
+
# In Gateway v11.1.1 shared state providers like redis (redis only currently) can be configured in a yaml file.
506
+
sharedStateClient:
507
+
enabled: true
508
+
# If you are using an existingConfigSecret for more than one shared state client that requires a tls cert, please use the customConfig section to mount
0 commit comments