-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
123 lines (111 loc) · 2.49 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
nginx_modsec:
image: ghcr.io/cyso/securely-nginx-container:main
config:
# See: https://github.com/coreruleset/modsecurity-docker/blob/master/README.md#modsecurity-env-variables
PARANOIA: "1"
# Private CIDRs, see https://en.wikipedia.org/wiki/Reserved_IP_addresses
SET_REAL_IP_FROM: 10.0.0.0/8,100.64.0.0/10,172.16.0.0/12,192.168.0.0/16,198.18.0.0/15
resources:
requests:
cpu: "200m"
memory: "200Mi"
limits:
memory: "2Gi"
livenessProbe:
exec:
command:
- curl
- http://127.0.0.1/metrics/nginx
periodSeconds: 3
startupProbe:
exec:
command:
- curl
- http://127.0.0.1/metrics/nginx
initialDelaySeconds: 8
periodSeconds: 5
extraVolumeMounts: []
lifecycle:
preStop:
exec:
command: ["/bin/sh", "-c", "sleep 10"]
securely_blocker:
enabled: true
image: registry.securely.ai/securely/common/blocker:latest
config:
GRPC_URL:
USERNAME:
PASSWORD:
resources:
requests:
cpu: "10m"
memory: "30Mi"
limits:
memory: "250Mi"
extraVolumeMounts: []
securely_secruleconfigurator:
enabled: false
image: registry.securely.ai/securely/common/secrule-configurator:latest
config:
GRPC_URL:
USERNAME:
PASSWORD:
resources:
requests:
cpu: "10m"
memory: "30Mi"
limits:
memory: "250Mi"
extraVolumeMounts: []
filebeat:
enabled: true
image: docker.elastic.co/beats/filebeat:7.17.16
config:
organization_name:
service_name:
logstash_hosts:
resources:
requests:
cpu: "50m"
memory: "120Mi"
limits:
memory: "500Mi"
extraVolumeMounts: []
replicas: 1
autoscaling:
# -- Create HorizontalPodAutoscaler object.
enabled: false
# minReplicas: 1
# maxReplicas: 10
# metrics:
# - type: Resource
# resource:
# name: cpu
# target:
# type: Utilization
# averageUtilization: 60
# - type: Resource
# resource:
# name: memory
# target:
# type: Utilization
# averageUtilization: 60
# behavior:
# scaleDown:
# stabilizationWindowSeconds: 300
# policies:
# - type: Pods
# value: 1
# periodSeconds: 60
imagePullSecrets: []
extraVolumes: []
tolerations: []
nodeSelector: {}
affinity: {}
topologySpreadConstraints:
- maxSkew: 1
topologyKey: kubernetes.io/hostname
whenUnsatisfiable: ScheduleAnyway
volumes:
securely_volume:
sizeLimit: 100Mi