-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
158 lines (139 loc) · 2.89 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
mariadb:
enabled: true
architecture: "standalone"
auth:
username: "misp"
rootPassword: "misp"
database: "misp"
password: "password"
replicationPassword: "password"
passwordUpdateJob:
enabled: true
redis:
architecture: "standalone"
enabled: true
auth:
enabled: false
mysql:
enabled: false
architecture: "standalone"
port: 3306
auth:
username: "misp"
database: "misp"
rootPassword: "password"
password: "password"
replicationPassword: "password"
passwordUpdateJob:
enabled: true
services:
misp:
port: 8080
target_port: 80
type: ClusterIP
misp_modules:
port: 80
target_port: 6666
type: ClusterIP
# - type: ClusterIP
# port: 8080
# - type: ClusterIP
# port: 50000
base_url: http://misp.192.168.39.47.nip.io
ingress:
enabled: true
className: ""
annotations: {}
hosts:
- host: misp
domain: 192.168.39.47.nip.io
paths:
- path: /
pathType: Prefix
# tls:
#- secretName: chart-example-tls
#hosts:
#- chart-example.local
volumeMounts:
- mountPath: /var/www/MISP/app/tmp/logs
name: misp-logs
- mountPath: /var/www/MISP/app/files/certs
name: misp-certs
- mountPath: /var/www/MISP/app/attachments
name: misp-attachments
- mountPath: /var/www/MISP/app/files/img/orgs
name: misp-img-orgs
- mountPath: /var/www/MISP/app/files/img/custom
name: misp-img-custom
- mountPath: /var/www/MISP/.gnupg
name: misp-gnupg
volumes:
- name: misp-logs
persistentVolumeClaim:
claimName: misp-logs
- name: misp-certs
persistentVolumeClaim:
claimName: misp-certs
- name: misp-attachments
persistentVolumeClaim:
claimName: misp-attachments
- name: misp-img-orgs
persistentVolumeClaim:
claimName: misp-img-orgs
- name: misp-img-custom
persistentVolumeClaim:
claimName: misp-img-custom
- name: misp-gnupg
persistentVolumeClaim:
claimName: misp-gnupg
replicaCount: 1
misp:
image:
repository: ghcr.io/nukib/misp
pullPolicy: IfNotPresent
tag: "latest"
misp_modules:
image:
repository: ghcr.io/nukib/misp-modules
pullPolicy: IfNotPresent
tag: "latest"
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
serviceAccount:
create: true
automount: true
annotations: {}
name: ""
podAnnotations: {}
podLabels: {}
podSecurityContext: {}
securityContext: {}
nodeSelector: {}
tolerations: []
affinity: {}
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 100
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
resources: {}
livenessProbe:
misp:
httpGet:
path: /
port: 80
misp_modules:
httpGet:
path: /modules
port: 6666
readinessProbe:
misp:
httpGet:
path: /
port: 80
misp_modules:
httpGet:
path: /modules
port: 6666