{"id":26642807,"url":"https://github.com/whiteducksoftware/cilium-next-level-k8s-networking","last_synced_at":"2026-02-17T05:02:18.671Z","repository":{"id":181622065,"uuid":"667003554","full_name":"whiteducksoftware/cilium-next-level-k8s-networking","owner":"whiteducksoftware","description":"This repository contains the material for our Next-level Kubernetes networking ​with Cilium talk.","archived":false,"fork":false,"pushed_at":"2023-11-15T11:06:54.000Z","size":7189,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-08T12:50:52.261Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HCL","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/whiteducksoftware.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":"2023-07-16T10:15:14.000Z","updated_at":"2023-09-11T15:59:32.000Z","dependencies_parsed_at":"2025-03-24T19:44:42.814Z","dependency_job_id":null,"html_url":"https://github.com/whiteducksoftware/cilium-next-level-k8s-networking","commit_stats":null,"previous_names":["whiteducksoftware/cilium-next-level-k8s-networking"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/whiteducksoftware/cilium-next-level-k8s-networking","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whiteducksoftware%2Fcilium-next-level-k8s-networking","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whiteducksoftware%2Fcilium-next-level-k8s-networking/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whiteducksoftware%2Fcilium-next-level-k8s-networking/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whiteducksoftware%2Fcilium-next-level-k8s-networking/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/whiteducksoftware","download_url":"https://codeload.github.com/whiteducksoftware/cilium-next-level-k8s-networking/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whiteducksoftware%2Fcilium-next-level-k8s-networking/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29534460,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T05:00:25.817Z","status":"ssl_error","status_checked_at":"2026-02-17T04:57:16.126Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":"2025-03-24T19:28:03.594Z","updated_at":"2026-02-17T05:02:18.655Z","avatar_url":"https://github.com/whiteducksoftware.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cilium Next Level K8s Networking\n\nThis repository contains the material for our Next-level Kubernetes networking ​with Cilium talk.\n\n## Prerequisites\n\n```shell\n# Create 2 AKS clusters with no CNI (BYOCNI)\ncd ./src\n\n# Login to Azure\naz login\naz account set --subscription \u003cSUBSCRIPTION_ID\u003e\n\n# Execute Terraform\nterraform init\nterraform apply -auto-approve\n\n# Install Cilium on AKS with BYOCNI\n# Connect to cluster 01\naz aks get-credentials --resource-group rg-cilium-demo --name aks-cilium-demo-01\n\n# Install Gateway API CRDs\nkubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.0.0/standard-install.yaml\nkubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/main/config/crd/experimental/gateway.networking.k8s.io_tlsroutes.yaml\n\n# Install Cert-Manager\nhelm upgrade \\\n  --install cert-manager jetstack/cert-manager \\\n  --namespace cert-manager \\\n  --create-namespace \\\n  --set \"extraArgs={--feature-gates=ExperimentalGatewayAPISupport=true}\" \\\n  --set installCRDs=true\n\n# Install Cilium on cluster 01\ncilium install \\\n    --datapath-mode aks-byocni \\\n    --set azure.resourceGroup=\"rg-cilium-demo\" \\\n    --set cluster.id=1 \\\n    --set cluster.name=aks-cilium-demo-01 \\\n    --set ipam.operator.clusterPoolIPv4PodCIDRList='{10.10.0.0/16}' \\\n    --set hubble.relay.enabled=true \\\n    --set hubble.ui.enabled=true \\\n    --set kubeProxyReplacement=strict \\\n    --set gatewayAPI.enabled=true\n\n# Connect to cluster 02\naz aks get-credentials --resource-group rg-cilium-demo --name aks-cilium-demo-02\n\n# Install Cilium on cluster 02\ncilium install \\\n    --datapath-mode aks-byocni \\\n    --set azure.resourceGroup=\"rg-cilium-demo\" \\\n    --set cluster.id=2 \\\n    --set cluster.name=aks-cilium-demo-02 \\\n    --set ipam.operator.clusterPoolIPv4PodCIDRList='{10.20.0.0/16}' \\\n    --set hubble.relay.enabled=true \\\n    --set hubble.ui.enabled=true \\\n    --set kubeProxyReplacement=strict\n\n# Enable Cluster Mesh on each cluster\ncilium clustermesh enable\ncilium clustermesh status\n\n# Connect the clusters, only one direction is required\n# From cluster 01 to cluster 02 for example\ncilium clustermesh connect --destination-context aks-cilium-demo-02\n```\n\n## KCD Munich 2023\n\n### Slides\n\nThe slides are available [here](demos/kcd_munich/h/next-level-k8s-networking-with-cilium.pdf).\n\n### Demo: Hubble in action\n\nFind all details [here](demos/kcd_munich/hubble/README.md).\n\n### Demo: Canary Rollout with Cilium\n\nFind all details [here](demos/kcd_munich/servicemesh/README.md).\n\n## ContainerDays 2023\n\n### Slides\n\nThe slides are available [here](demos/containerdays/cds23-next-level-k8s-networking-with-cilium.pdf).\n\n### Demo: Cilium Identity \u0026 Hubble\n\nFind all details [here](demos/containerdays/identity/README.md).\n\n### Demo: Cluster Mesh\n\nFind all details [here](demos/containerdays/clustermesh/README.md).\n\n### Demo: Service Mesh\n\nFind all details [here](demos/containerdays/servicemesh/README.md).\n\n## Continous Lifecycle / Container Conf 2023\n\n### Slides\n\nThe slides are available [here](demos/containerconf/containerconf-next-level-k8s-networking-with-cilium.pdf).\n\n### Demo: Cilium Identity \u0026 Hubble\n\nFind all details [here](demos/containerconf/identity/README.md).\n\n### Demo: Cluster Mesh\n\nFind all details [here](demos/containerconf/clustermesh/README.md).\n\n### Demo: Service Mesh\n\nFind all details [here](demos/containerconf/servicemesh/README.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhiteducksoftware%2Fcilium-next-level-k8s-networking","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwhiteducksoftware%2Fcilium-next-level-k8s-networking","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhiteducksoftware%2Fcilium-next-level-k8s-networking/lists"}