Skip to content

Instantly share code, notes, and snippets.

View jazeem-azeez's full-sized avatar
🎯
Focusing

Jackie jazeem-azeez

🎯
Focusing
View GitHub Profile
@jazeem-azeez
jazeem-azeez / eks_best_practice.md
Created August 18, 2022 22:26 — forked from ejlp12/eks_best_practice.md
EKS Best Practice

Please check https://aws.github.io/aws-eks-best-practices/ for more comprehensive EKS best practice!

Architecture

  • Think about multi-tenancy, isolation for different environment or different workload
    • Isolation at account level using AWS organization
    • Isolation at the network layer ie. different VPC & different cluster
    • Use different Nodes Group (Node pool) for different purpose/category e.g. create dedicated node groups for Operational tools such as CI/CD tool, Monitoring tool, Centralize logging system.
    • Separate namespace for different workload

Reliability | Principles

Keybase proof

I hereby claim:

  • I am jazeem-azeez on github.
  • I am jazeem10 (https://keybase.io/jazeem10) on keybase.
  • I have a public key ASC0HlmeHLY0IQoNtZeBqmQS_UHrCItgmF7oLH5mhetyQAo

To claim this, I am signing this object:

@jazeem-azeez
jazeem-azeez / inheritance.cs
Created August 22, 2019 08:40
sample inheritance scenario
using System;
namespace ConsoleApp1
{
internal class Program
{
private static void Main(string[] args)
{
abc a1 = new abc();
a1.display();