From a4c2de36ce6ed619347b93bcb2563c8a35ef010c Mon Sep 17 00:00:00 2001 From: Christophe Vandeplas Date: Sat, 21 Mar 2020 07:35:38 +0100 Subject: [PATCH] new: [doc] k8s and ansible readme --- ansible/README.md | 10 ++++++++++ k8s.yaml | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 ansible/README.md create mode 100644 k8s.yaml diff --git a/ansible/README.md b/ansible/README.md new file mode 100644 index 0000000..71f7731 --- /dev/null +++ b/ansible/README.md @@ -0,0 +1,10 @@ +This folder is meant to contain ansible automation scripts to install the MISP-maltego server. +Users normally do not need to use this, except if you're using a private transform server. + + +Paired Configurations: +- in Maltego > Export Config, and select +-- Entities > MISP +-- Icons > MISP + intelligence icons +-- Machines +Save as "paired_config.mtz", upload on TDS diff --git a/k8s.yaml b/k8s.yaml new file mode 100644 index 0000000..d203cea --- /dev/null +++ b/k8s.yaml @@ -0,0 +1,43 @@ +--- +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