Skip to content

Latest commit

 

History

History
53 lines (37 loc) · 2.4 KB

File metadata and controls

53 lines (37 loc) · 2.4 KB

Final Project Extension Ideas

DevSecOps

Embed DevSecOps tool to the CI/CD pipeline:

  • safety to scan vulnerabilities in Python packages.
  • Bandit to find security issues in your Python code.
  • Pre-commit to enforce some policy before committing a new code.
  • Black as a linting tool.
  • Chef InSpec to apply security and compliance policies.

Jenkins

  • Implement load testing in the PR testing pipeline.
  • Create a Jenkins shared library.
  • Send email notifications to users

AWS

  • Implement basic user auth with Cognito
  • Protect your service using WAF or Shield.
  • Any other shiny service that interesting you...

K8S

  • Deploy some interesting Helm Chart in the cluster (Jenkins, RabbitMQ - as an alternative to SQS, OpenVPN client/server).
  • Write your app YAMLs as Helm Chart.
  • Run some CronJob in the cluster.
  • Use ArgoCD to deploy your app.
  • Implement some interesting ArgoWF.
  • Experimenting with Calico to implement network security in the cluster.
  • Experimenting with Istio to implement a service mesh.
  • Expose your app through a secured HTTPS.
  • Implement Pod identity in EKS instead using the EC2 IAM role.

Terraform

  • Provision the app infrastructure as a code.
  • Built a dedicated "IaaC" pipeline in Jenkins

Ansible

Monitoring

  • Deploy Prometheus in K8S.
  • Enable backup/restore to from ElasticSearch to S3.
  • Build some Kibana dashboard
  • Improve the logs stream from the k8s cluster to Elasticsearch
  • Create some alerts in Grafana (e.g. high CPU rate, container restarts many times etc...)