Loading docs/architecture.md +9 −4 Original line number Diff line number Diff line Loading @@ -13,10 +13,15 @@ ansible/ ├── group_vars/ │ └── all.yml # Global variables ├── playbooks/ │ ├── 01-deploy-kind-cluster.yml # Create Kind cluster │ ├── 02-install-dependencies.yml # Install Prometheus, NFD │ ├── 03-deploy-i2edge.yml # Deploy i2edge │ └── 99-undeploy-kind-cluster.yml # Delete cluster │ ├── infrastructure/ │ │ ├── kind-cluster/ │ │ │ ├── deploy.yml # Create Kind cluster │ │ │ └── undeploy.yml # Delete cluster │ │ ├── install-prometheus.yml # Install Prometheus │ │ └── install-node-feature-discovery.yml # Install NFD │ ├── tools/ │ │ └── i2edge/ │ │ └── deploy.yml # Deploy i2edge └── roles/ ├── helm/ # Helm installation ├── i2edge/ # i2edge deployment Loading Loading
docs/architecture.md +9 −4 Original line number Diff line number Diff line Loading @@ -13,10 +13,15 @@ ansible/ ├── group_vars/ │ └── all.yml # Global variables ├── playbooks/ │ ├── 01-deploy-kind-cluster.yml # Create Kind cluster │ ├── 02-install-dependencies.yml # Install Prometheus, NFD │ ├── 03-deploy-i2edge.yml # Deploy i2edge │ └── 99-undeploy-kind-cluster.yml # Delete cluster │ ├── infrastructure/ │ │ ├── kind-cluster/ │ │ │ ├── deploy.yml # Create Kind cluster │ │ │ └── undeploy.yml # Delete cluster │ │ ├── install-prometheus.yml # Install Prometheus │ │ └── install-node-feature-discovery.yml # Install NFD │ ├── tools/ │ │ └── i2edge/ │ │ └── deploy.yml # Deploy i2edge └── roles/ ├── helm/ # Helm installation ├── i2edge/ # i2edge deployment Loading