File tree 3 files changed +13
-2
lines changed
3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ maintainers:
5
5
6
6
name : Elegant Themes
7
7
name : cloud-screenshot
8
- version : 1.0.6
8
+ version : 1.0.7
Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ kind: ServiceMonitor
17
17
metadata :
18
18
name : cloud-screenshot
19
19
namespace : dc-screenshot
20
+ labels :
21
+ app : cloud-screenshot
20
22
spec :
21
23
selector :
22
24
matchLabels :
Original file line number Diff line number Diff line change 39
39
listen 80;
40
40
server_name _;
41
41
42
- return 301 http://cloud-screenshot.dc-screenshot.svc.cluster.local$request_uri;
42
+ # Redirect all requests to the domain
43
+ location / {
44
+ return 301 http://cloud-screenshot.dc-screenshot.svc.cluster.local$request_uri;
45
+ }
46
+
47
+ # Handle liveness probe
48
+ location /healthz {
49
+ access_log off;
50
+ return 200;
51
+ }
43
52
}
44
53
45
54
server {
You can’t perform that action at this time.
0 commit comments