├── README.md ├── beginner └── README.md ├── bgp ├── Makefile ├── README.md ├── cilium-bgp-peering-policies.yaml ├── cluster.yaml ├── public-pool.yaml └── topo.yaml ├── bookinfo ├── READMe.md └── kustomize │ ├── kustomization.yaml │ └── resources │ ├── namespace.yaml │ └── service.yaml ├── mesh ├── Makefile ├── README.md ├── cluster1-bgp-config.yaml ├── cluster1-public-pool.yaml ├── cluster1.yaml ├── cluster2-bgp-config.yaml ├── cluster2-public-pool.yaml ├── cluster2.yaml ├── peering-policy.yaml ├── test-app │ ├── cluster1-app.yaml │ ├── cluster2-app.yaml │ └── global-service.yaml └── topo.yaml └── pictures ├── cilium-bgp-lab.jpg ├── cinstall.jpg ├── cstatus-hubble.jpg ├── cstatus.jpg ├── editor-cilium-io-1.png ├── editor-cilium-io-2.png ├── editor-cilium-io-3.png ├── editor-cilium-io-4.png ├── kgetnodes.jpg ├── make-menu.jpg └── mesh-topo.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/README.md -------------------------------------------------------------------------------- /beginner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/beginner/README.md -------------------------------------------------------------------------------- /bgp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/bgp/Makefile -------------------------------------------------------------------------------- /bgp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/bgp/README.md -------------------------------------------------------------------------------- /bgp/cilium-bgp-peering-policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/bgp/cilium-bgp-peering-policies.yaml -------------------------------------------------------------------------------- /bgp/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/bgp/cluster.yaml -------------------------------------------------------------------------------- /bgp/public-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/bgp/public-pool.yaml -------------------------------------------------------------------------------- /bgp/topo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/bgp/topo.yaml -------------------------------------------------------------------------------- /bookinfo/READMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/bookinfo/READMe.md -------------------------------------------------------------------------------- /bookinfo/kustomize/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/bookinfo/kustomize/kustomization.yaml -------------------------------------------------------------------------------- /bookinfo/kustomize/resources/namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: v1 3 | kind: Namespace 4 | metadata: 5 | name: bookinfo 6 | -------------------------------------------------------------------------------- /bookinfo/kustomize/resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/bookinfo/kustomize/resources/service.yaml -------------------------------------------------------------------------------- /mesh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/mesh/Makefile -------------------------------------------------------------------------------- /mesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/mesh/README.md -------------------------------------------------------------------------------- /mesh/cluster1-bgp-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/mesh/cluster1-bgp-config.yaml -------------------------------------------------------------------------------- /mesh/cluster1-public-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/mesh/cluster1-public-pool.yaml -------------------------------------------------------------------------------- /mesh/cluster1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/mesh/cluster1.yaml -------------------------------------------------------------------------------- /mesh/cluster2-bgp-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/mesh/cluster2-bgp-config.yaml -------------------------------------------------------------------------------- /mesh/cluster2-public-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/mesh/cluster2-public-pool.yaml -------------------------------------------------------------------------------- /mesh/cluster2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/mesh/cluster2.yaml -------------------------------------------------------------------------------- /mesh/peering-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/mesh/peering-policy.yaml -------------------------------------------------------------------------------- /mesh/test-app/cluster1-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/mesh/test-app/cluster1-app.yaml -------------------------------------------------------------------------------- /mesh/test-app/cluster2-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/mesh/test-app/cluster2-app.yaml -------------------------------------------------------------------------------- /mesh/test-app/global-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/mesh/test-app/global-service.yaml -------------------------------------------------------------------------------- /mesh/topo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/mesh/topo.yaml -------------------------------------------------------------------------------- /pictures/cilium-bgp-lab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/pictures/cilium-bgp-lab.jpg -------------------------------------------------------------------------------- /pictures/cinstall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/pictures/cinstall.jpg -------------------------------------------------------------------------------- /pictures/cstatus-hubble.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/pictures/cstatus-hubble.jpg -------------------------------------------------------------------------------- /pictures/cstatus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/pictures/cstatus.jpg -------------------------------------------------------------------------------- /pictures/editor-cilium-io-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/pictures/editor-cilium-io-1.png -------------------------------------------------------------------------------- /pictures/editor-cilium-io-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/pictures/editor-cilium-io-2.png -------------------------------------------------------------------------------- /pictures/editor-cilium-io-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/pictures/editor-cilium-io-3.png -------------------------------------------------------------------------------- /pictures/editor-cilium-io-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/pictures/editor-cilium-io-4.png -------------------------------------------------------------------------------- /pictures/kgetnodes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/pictures/kgetnodes.jpg -------------------------------------------------------------------------------- /pictures/make-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/pictures/make-menu.jpg -------------------------------------------------------------------------------- /pictures/mesh-topo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredan/ciliumlabs/HEAD/pictures/mesh-topo.png --------------------------------------------------------------------------------