Compare commits

...

2 Commits

Author SHA1 Message Date
Christophe Vandeplas fce86f7a93
fix: [ansible] corrects path issue with munin folder 2021-11-11 07:01:33 +01:00
Christophe Vandeplas 329b46fa6c
Delete k8s.yaml 2021-11-11 06:58:05 +01:00
2 changed files with 2 additions and 45 deletions

View File

@ -21,7 +21,7 @@ server {
root /var/www/html;
server_name _;
location /munin {
location /munin/ {
alias /var/cache/munin/www/;
index index.html;
allow 127.0.0.1;
@ -38,4 +38,4 @@ server {
location @redirect {
return 302 https://github.com/MISP/MISP-maltego;
}
}
}

View File

@ -1,43 +0,0 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: misp-maltego
spec:
selector:
matchLabels:
app: misp-maltego
replicas: 1
template:
metadata:
labels:
app: misp-maltego
spec:
containers:
- name: misp-maltego
image: cvandeplas/misp-maltego
imagePullPolicy: Always
ports:
- name: listen-port
containerPort: 8080
resources:
requests:
cpu: 10m
memory: 4Gi
limits:
cpu: 1
memory: 4Gi
---
apiVersion: v1
kind: Service
metadata:
name: misp-maltego
annotations:
dev.okteto.com/auto-ingress: "true"
spec:
type: ClusterIP
ports:
- name: "misp-maltego"
port: 8080
selector:
app: misp-maltego