Add directory structure

This commit is contained in:
AlfonsoRBJ 2018-12-21 16:42:36 +01:00
parent c61b55700b
commit 0e37545537

View File

@ -11,6 +11,55 @@ Deploy a Wazuh cluster with a basic Elastic stack on Kubernetes .
The *instructions.md* file describes how to deploy Wazuh on Kubernetes.
## Directory structure
├── wazuh-kubernetes
│ ├── base
│ │ ├── aws-gp2-storage-class.yaml
│ │ ├── wazuh-ns.yaml
│ ├── elastic_stack
│ │ ├── elasticsearch
│ │ │ ├── cluster
│ │ │ │ ├── elasticsearch-api-svc.yaml
│ │ │ │ ├── elasticsearch-data-sts.yaml
│ │ │ │ ├── elasticsearch-master-sts.yaml
│ │ │
│ │ │ ├── single-node
│ │ │ │ ├── elasticsearch-api-svc.yaml
│ │ │ │ ├── elasticsearch-sts.yaml
│ │ │
│ │ │ ├── elasticsearch-svc.yaml
│ │
│ │ ├── kibana
│ │ │ ├── kibana-deploy.yaml
│ │ │ ├── kibana-svc.yaml
│ │ │ ├── nginx-deploy.yaml
│ │ │ ├── nginx-svc.yaml
│ │
│ │ ├── logstash
│ │ │ ├── logstash-deploy.yaml
│ │ │ ├── logstash-svc.yaml
│ ├── wazuh_managers
│ │ ├── wazuh-cluster-svc.yaml
│ │ ├── wazuh-master-conf.yaml
│ │ ├── wazuh-master-sts.yaml
│ │ ├── wazuh-master-svc.yaml
│ │ ├── wazuh-worker-0-conf.yaml
│ │ ├── wazuh-worker-0-sts.yaml
│ │ ├── wazuh-worker-1-conf.yaml
│ │ ├── wazuh-worker-1-sts.yaml
│ │ ├── wazuh-workers-svc.yaml
│ │
│ ├── README.md
│ ├── VERSION
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── cleanup.md
│ ├── instructions.md
│ ├── upgrade.md
## Branches
* `master` branch contains the latest code, be aware of possible bugs on this branch.