From 8f56a7e2a7b03db6060e1d25cab0de35ba41b2be Mon Sep 17 00:00:00 2001 From: Davide Oddone Date: Fri, 18 Oct 2024 16:53:49 +0200 Subject: [PATCH] Fixed linter errors --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 5118029..a8fc950 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@ [![Super-Linter](https://github.com/doddophonique/tah-deploy/actions/workflows/super-linter.yml/badge.svg)](https://github.com/marketplace/actions/super-linter) ## Usage From the `terraform/` folder: -``` -$ terraform init -$ terraform plan -$ terraform apply +```shell +terraform init +terraform plan +terraform apply ``` ## Decisions and goals @@ -25,10 +25,10 @@ The Terraform script roughly follows these steps: 3. Create the `kiratech-test` namespace; 4. Run the CIS Kubernetes benchmark; 5. Copy the helm folder to the master node and install helm. -### Next steps +### Next steps The script currently lacks: - - [ ] Capability of deploying an Helm application; - - [ ] Usage of Terraform outputs to populate Ansible files; +- [ ] Capability of deploying an Helm application; +- [ ] Usage of Terraform outputs to populate Ansible files; ### CIS Kubernetes Benchmark The CIS Benchamrk is one of (if not the) most popular benchmarks publicly available, and also has a simple way to implement it in a deployment pipeline using the [kube-bench](https://github.com/aquasecurity/kube-bench) implementation.