{"id":39130131,"url":"https://github.com/shortthirdman/kyverno-gitops","last_synced_at":"2026-01-17T21:16:07.449Z","repository":{"id":322055013,"uuid":"1088055977","full_name":"shortthirdman/kyverno-gitops","owner":"shortthirdman","description":"Securing Kubernetes with Kyverno: Deployment with Helm and ArgoCD in EKS","archived":false,"fork":false,"pushed_at":"2025-11-02T09:28:55.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-02T11:28:04.362Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shortthirdman.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-02T07:58:03.000Z","updated_at":"2025-11-02T09:32:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/shortthirdman/kyverno-gitops","commit_stats":null,"previous_names":["shortthirdman/kyverno-gitops"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/shortthirdman/kyverno-gitops","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shortthirdman%2Fkyverno-gitops","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shortthirdman%2Fkyverno-gitops/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shortthirdman%2Fkyverno-gitops/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shortthirdman%2Fkyverno-gitops/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shortthirdman","download_url":"https://codeload.github.com/shortthirdman/kyverno-gitops/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shortthirdman%2Fkyverno-gitops/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28518617,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T18:55:29.170Z","status":"ssl_error","status_checked_at":"2026-01-17T18:55:03.375Z","response_time":85,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2026-01-17T21:16:06.653Z","updated_at":"2026-01-17T21:16:07.444Z","avatar_url":"https://github.com/shortthirdman.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# kyverno-gitops\n\n\u003e [Securing Kubernetes with Kyverno: Deployment with Helm and ArgoCD in EKS](https://aws.plainenglish.io/securing-kubernetes-with-kyverno-a-practical-guide-to-deployment-with-helm-and-argocd-in-eks-1fadded0a71d)\n\n\nDeploying Kyverno in [Amazon EKS]() using [Helm charts]() managed with [ArgoCD](), providing a *GitOps* approach to policy management.\n\n\n### Kyverno\n\nKyverno is a policy engine built specifically for Kubernetes. It allows cluster administrators to:\n\n- Validate resources against policies before they’re admitted to the cluster\n- Mutate resources to ensure they conform to organizational standards\n- Generate related resources automatically when certain resources are created\n- Clean up resources when their parents are deleted\n\n\n### Deployment Architecture\n\n1. **Helm** — To package and template the Kyverno installation\n2. **ArgoCD** — To sync configurations from Git and manage the deployment\n3. **EKS** — Our Kubernetes environment on AWS\n\n#### Deploying with ArgoCD\n\n-  Apply the ArgoCD application\n\n```shell\n$ kubectl apply -f applications/kyverno.yaml\n```\n\n- Check the status\n\n```shell\n$ argocd app get kyverno\n```\n\n#### Verifying the Installation\n\n- Check if Kyverno pods are running\n\n```shell\nkubectl get pods -n kyverno\n```\n\n- Verify the CRDs are installed\n\n```shell\nkubectl get crds | grep kyverno\n```\n\n#### Managing Policies with ArgoCD\n\n```shell\nkubectl apply -f applications/kyverno-policies.yaml\n```\n\n#### Testing the Policy\n\n```\ncat \u003c\u003cEOF | kubectl apply -f -\napiVersion: v1\nkind: Pod\nmetadata:\n  name: test-pod\nspec:\n  containers:\n  - name: nginx\n    image: nginx\nEOF\n```\n\n```\ncat \u003c\u003cEOF | kubectl apply -f -\napiVersion: v1\nkind: Pod\nmetadata:\n  name: test-pod\nspec:\n  containers:\n  - name: nginx\n    image: nginx\n    resources:\n      limits:\n        memory: \"256Mi\"\n        cpu: \"500m\"\nEOF\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshortthirdman%2Fkyverno-gitops","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshortthirdman%2Fkyverno-gitops","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshortthirdman%2Fkyverno-gitops/lists"}