File tree 3 files changed +35
-1
lines changed
3 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 18
18
scgi_temp_path /tmp/scgi;
19
19
uwsgi_temp_path /tmp/uwsgi;
20
20
fastcgi_temp_path /tmp/fastcgi;
21
- proxy_cache_path /tmp keys_zone=my_zone:10m inactive=8h;
21
+ proxy_cache_path /tmp/proxy_cache keys_zone=my_zone:10m inactive=8h;
22
22
#HTTPMARKER
23
23
}
Original file line number Diff line number Diff line change @@ -628,6 +628,10 @@ def test_d_run_gefyra_bridge_with_deployment(self):
628
628
run (** run_params )
629
629
res = bridge (** self .default_bridge_params )
630
630
self .assertTrue (res )
631
+ self .assert_deployment_ready (
632
+ self .default_bridge_params ["namespace" ],
633
+ name = "hello-nginxdemo" ,
634
+ )
631
635
632
636
def test_e_run_gefyra_status_check_containers_and_bridge (self ):
633
637
_status = status (connection_name = CONNECTION_NAME )
Original file line number Diff line number Diff line change 33
33
image : nginxdemos/hello
34
34
ports :
35
35
- containerPort : 80
36
+ livenessProbe :
37
+ failureThreshold : 10
38
+ httpGet :
39
+ path : /alive
40
+ port : 80
41
+ scheme : HTTP
42
+ periodSeconds : 10
43
+ successThreshold : 1
44
+ timeoutSeconds : 5
45
+
46
+ readinessProbe :
47
+ failureThreshold : 3
48
+ httpGet :
49
+ path : /ready
50
+ port : 80
51
+ scheme : HTTP
52
+ initialDelaySeconds : 10
53
+ periodSeconds : 10
54
+ successThreshold : 1
55
+ timeoutSeconds : 5
56
+
57
+ startupProbe :
58
+ failureThreshold : 30
59
+ httpGet :
60
+ path : /startup
61
+ port : 80
62
+ scheme : HTTP
63
+ periodSeconds : 10
64
+ successThreshold : 1
65
+ timeoutSeconds : 1
36
66
---
37
67
apiVersion : networking.k8s.io/v1
38
68
kind : Ingress
You can’t perform that action at this time.
0 commit comments