├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── crio-fedora36.md ├── images ├── apiserver-etcd-trace-overview.png ├── apiserver-etcd-trace.png ├── crio-trace.png └── kubelet-cri-o-trace-overview.png ├── jaeger.yaml ├── kubeadm-setup.md └── manifests ├── etcd.yaml ├── kube-apiserver.yaml ├── kubelet-config.yaml └── otel-collector ├── configmap.yaml ├── crb.yaml ├── daemonset.yaml ├── kustomization.yaml ├── otel-col-deployment.yaml ├── otel-col-service.yaml ├── otel-ns.yaml └── serviceacct.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/README.md -------------------------------------------------------------------------------- /crio-fedora36.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/crio-fedora36.md -------------------------------------------------------------------------------- /images/apiserver-etcd-trace-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/images/apiserver-etcd-trace-overview.png -------------------------------------------------------------------------------- /images/apiserver-etcd-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/images/apiserver-etcd-trace.png -------------------------------------------------------------------------------- /images/crio-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/images/crio-trace.png -------------------------------------------------------------------------------- /images/kubelet-cri-o-trace-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/images/kubelet-cri-o-trace-overview.png -------------------------------------------------------------------------------- /jaeger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/jaeger.yaml -------------------------------------------------------------------------------- /kubeadm-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/kubeadm-setup.md -------------------------------------------------------------------------------- /manifests/etcd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/manifests/etcd.yaml -------------------------------------------------------------------------------- /manifests/kube-apiserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/manifests/kube-apiserver.yaml -------------------------------------------------------------------------------- /manifests/kubelet-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/manifests/kubelet-config.yaml -------------------------------------------------------------------------------- /manifests/otel-collector/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/manifests/otel-collector/configmap.yaml -------------------------------------------------------------------------------- /manifests/otel-collector/crb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/manifests/otel-collector/crb.yaml -------------------------------------------------------------------------------- /manifests/otel-collector/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/manifests/otel-collector/daemonset.yaml -------------------------------------------------------------------------------- /manifests/otel-collector/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/manifests/otel-collector/kustomization.yaml -------------------------------------------------------------------------------- /manifests/otel-collector/otel-col-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/manifests/otel-collector/otel-col-deployment.yaml -------------------------------------------------------------------------------- /manifests/otel-collector/otel-col-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/manifests/otel-collector/otel-col-service.yaml -------------------------------------------------------------------------------- /manifests/otel-collector/otel-ns.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: v1 3 | kind: Namespace 4 | metadata: 5 | name: otel 6 | -------------------------------------------------------------------------------- /manifests/otel-collector/serviceacct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallyom/otel-kubeadm/HEAD/manifests/otel-collector/serviceacct.yaml --------------------------------------------------------------------------------