{"id":20367056,"url":"https://github.com/tanalam2411/kubernetes","last_synced_at":"2025-09-04T02:43:01.479Z","repository":{"id":94329742,"uuid":"159600225","full_name":"tanalam2411/kubernetes","owner":"tanalam2411","description":"K8 Deep dive - Core Concepts, CRDs, Operators, Controllers, Openshift, kubebuilder, Coreos operator framework","archived":false,"fork":false,"pushed_at":"2023-05-01T20:52:43.000Z","size":102948,"stargazers_count":10,"open_issues_count":3,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-12T05:12:27.626Z","etag":null,"topics":["calico","controller","kubernetes","microservice","operators","prometheus","rbac"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tanalam2411.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-11-29T03:11:50.000Z","updated_at":"2023-03-28T07:43:14.000Z","dependencies_parsed_at":"2023-07-28T00:15:29.239Z","dependency_job_id":null,"html_url":"https://github.com/tanalam2411/kubernetes","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tanalam2411/kubernetes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tanalam2411%2Fkubernetes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tanalam2411%2Fkubernetes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tanalam2411%2Fkubernetes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tanalam2411%2Fkubernetes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tanalam2411","download_url":"https://codeload.github.com/tanalam2411/kubernetes/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tanalam2411%2Fkubernetes/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261065251,"owners_count":23104761,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["calico","controller","kubernetes","microservice","operators","prometheus","rbac"],"created_at":"2024-11-15T00:28:46.673Z","updated_at":"2025-06-21T05:02:21.811Z","avatar_url":"https://github.com/tanalam2411.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kubernetes\n\n**[Learn more on Wiki](https://github.com/tanalam2411/kubernetes/wiki)**\n\n\n\n\n**CRD's Controllers Operators**\n- https://github.com/kubernetes-sigs/kubebuilder\n- https://github.com/operator-framework/operator-sdk\n- https://github.com/alena1108/kubecon2018\n- https://github.com/kubernetes-sigs/apiserver-builder-alpha\n- https://github.com/kubernetes/sample-controller\n- https://github.com/stgarf/minecraft-operator-go\n- https://github.com/feloy/operator - https://medium.com/@feloy\n- Book - https://www.oreilly.com/library/view/programming-kubernetes\n- https://github.com/awslabs/aws-service-operator\n- https://github.com/kubernetes-sigs/controller-tools `controller-tools Project is a set of go libraries for building Controllers.`\n- https://github.com/GoogleCloudPlatform/metacontroller\n- https://github.com/kubernetes-csi/external-snapshotter `https://kubernetes.io/docs/concepts/storage/volume-snapshots/`\n- https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/\n- Stefan Schimanski\n- https://github.com/kubeless/kubeless `Kubernetes Native Serverless Framework`\n- https://github.com/aaronlevy/kube-controller-demo\n- ******https://github.com/operator-framework/awesome-operators******\n- https://www.dropbox.com/s/b74i7jslhz1u7l0/2018-08-01-GopherConUK-Using%20and%20extending%20the%20Kubernetes%20API%20programmatically.pdf?dl=0\n- https://github.com/openshift-talks/k8s-go `https://www.katacoda.com/mhausenblas/scenarios/k8s-go`\n- https://github.com/rook/rook/blob/master/cluster/examples/kubernetes/ceph/operator.yaml\n- https://github.com/oracle/mysql-operator/tree/master/mysql-operator\n- **https://github.com/banzaicloud/kafka-operator**\n\n_______________________________________________________________________________________________\n\n**Network Policy Recipes (Calico)**\n\n1) [DENY all traffic to an application](https://github.com/tanalam2411/kubernetes/wiki/NPRC---DENY-all-traffic-to-an-application)\n\n2) [LIMIT traffic to an application](https://github.com/tanalam2411/kubernetes/wiki/NPRC---LIMIT-traffic-to-an-application)\n\n3) [ALLOW all traffic to an application](https://github.com/tanalam2411/kubernetes/wiki/NPRC---Allow-all-traffic-to-an-application)\n\n4) [DENY all non whitelisted traffic to a namespace](https://github.com/tanalam2411/kubernetes/wiki/NPRC---Deny-all-non-whitelisted-traffic-to-a-namespace)\n\n5) [DENY all traffic from other namespaces](https://github.com/tanalam2411/kubernetes/wiki/NPRC-Deny-traffic-from-other-namespaces)\n\n6) [NPRC ALLOW traffic to an application from all namespaces](https://github.com/tanalam2411/kubernetes/wiki/NPRC-ALLOW-traffic-to-an-application-from-all-namespaces)\n\n7) [ALLOW all traffic from a Namespace](https://github.com/tanalam2411/kubernetes/wiki/NPRC-ALLOW-all-traffic-from-a-Namespace)\n\n\n\n\n\n______________________________________________________________________________________________\n**Must Read**\n1) [`Handling Client Requests Properly with Kubernetes`](https://freecontent.manning.com/handling-client-requests-properly-with-kubernetes/)\n2) Google - kubernetes api constructs\n_______________________________________________________________________________________________\nBlogs\n\n1) [Resource Quotas](https://github.com/tanalam2411/kubernetes/wiki/Blog-Resource-Quotas)\n2) [Service](https://github.com/tanalam2411/kubernetes/wiki/Blog-Service)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftanalam2411%2Fkubernetes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftanalam2411%2Fkubernetes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftanalam2411%2Fkubernetes/lists"}