From ece52c463c945a7dc29fc5abda26693d4910dd7b Mon Sep 17 00:00:00 2001 From: Khue Doan Date: Mon, 15 Feb 2021 12:10:02 +0700 Subject: [PATCH] Remove platform layer --- Makefile | 6 +----- README.md | 3 +-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 76253a24..e0b02c27 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .POSIX: -all: metal infra platform apps +all: metal infra apps .PHONY: metal metal: @@ -10,10 +10,6 @@ metal: infra: make -C infra -.PHONY: platform -platform: - make -C platform - .PHONY: apps apps: make -C apps diff --git a/README.md b/README.md index 7e65649d..47bbf57d 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,7 @@ | Layer | Name | Description | Provisioner | |-------|------------------------|--------------------------------------------------------------|---------------------| | 0 | [metal](./metal) | Bare metal OS installation, LXD, Terraform state backend,... | Ansible, PXE server | -| 1 | [infra](./infra) | Kubernetes clusters | Terraform | -| 2 | [platform](./platform) | Vault, Git, Argo,... | Helm | +| 1 | [infra](./infra) | Kubernetes clusters, shared apps (Git, Vault, Argo...) | Terraform, Helm | | 3 | [apps](./apps) | | Argo | ## Usage