Skip to content

Commit 376c6bd

Browse files
author
Aleksandr Orekhov
committed
Ge read of last tarantool tails
1 parent 60be29d commit 376c6bd

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

internal/ingress/controller/config/config.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -703,16 +703,16 @@ type Configuration struct {
703703
WallarmUpstreamService string `json:"wallarm-upstream-service"`
704704

705705
// The number of reconnection attempts to Wstore upstream.
706-
// https://docs.wallarm.com/en/admin-en/configure-parameters-en.html#wallarmtarantoolconnectattempts
706+
// https://docs.wallarm.com/en/admin-en/configure-parameters-en.html#wallarmwstoreconnectattempts
707707
WallarmUpstreamConnectAttempts int `json:"wallarm-upstream-connect-attempts"`
708708

709709
// Wallarm prometheus metrics port
710710
// By default 18080
711711
WallarmMetricsPort int `json:"wallarm-metrics-port"`
712712

713-
// A delay in reconnecting to Tarantool after a number of failed attempts exceeds
713+
// A delay in reconnecting to wStore after a number of failed attempts exceeds
714714
// the threshold value set in WallarmUpstreamConnectAttempts
715-
// https://docs.wallarm.com/en/admin-en/configure-parameters-en.html#wallarmtarantoolconnectinterval
715+
// https://docs.wallarm.com/en/admin-en/configure-parameters-en.html#wallarmwstoreconnectinterval
716716
WallarmUpstreamReconnectInterval string `json:"wallarm-upstream-reconnect-interval"`
717717

718718
// The time limit of a single request processing in milliseconds

rootfs/etc/nginx/template/nginx.tmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -557,12 +557,12 @@ http {
557557
{{ end }}
558558

559559
{{ if $cfg.EnableWallarm }}
560-
upstream wallarm_tarantool {
560+
upstream wallarm_wstore {
561561
server {{ $cfg.WallarmUpstreamService }}:3313 max_fails=0 fail_timeout=0 max_conns=16;
562562
keepalive 16;
563563
keepalive_requests 100;
564564
}
565-
wallarm_tarantool_upstream wallarm_tarantool;
565+
wallarm_wstore_upstream wallarm_wstore;
566566
{{ end }}
567567

568568
upstream upstream_balancer {

test/smoke/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ This document describes how to run smoke tests against wallarm-ingress installat
33
Routines described in the document create local test environment and run smoke tests by performing the following actions:
44
* Build ingress controller image
55
* Create local Kubernetes cluster using kind
6-
* Download helper images: ruby, python, collectd and tarantool
6+
* Download helper images: ruby, python, collectd and wstore
77
* Download image with pytest and smoke tests
88
* Deploy Helm chart
99
* Deploy test workload with Httpbin

0 commit comments

Comments
 (0)