Skip to content

Instantly share code, notes, and snippets.

apiVersion: apps/v1
kind: DaemonSet
metadata:
labels:
k8s-app: edge
name: edge
namespace: cribl
spec:
revisionHistoryLimit: 10
selector:
@sbeamish
sbeamish / edge-daemonset-values.yaml
Last active July 20, 2022 20:06
Kube Edge Daemonset -> Cribl Cloud
replicaCount: 1
rbac:
create: true
apiGroups:
- core
resources:
- pods
verbs:
- get
@sbeamish
sbeamish / docker-compose.yaml
Created April 15, 2022 16:11
Docker container as edge node to Cribl Cloud
version: '3.5'
services:
edge:
image: cribl/cribl:latest
environment:
- CRIBL_DIST_MODE=managed-edge
- CRIBL_DIST_MASTER_URL=tls://<token>@<host>?<group>
volumes:
- /var/run/appscope:/var/run/appscope
- /var/run/docker.sock:/var/run/docker.sock
@sbeamish
sbeamish / docker-compose.yaml
Last active April 13, 2022 15:43
Cribl Stream + Edge : Docker
version: '3.5'
services:
master:
image: cribl/cribl:latest
environment:
- CRIBL_DIST_MODE=master
- CRIBL_DIST_MASTER_URL=tcp://criblmaster@0.0.0.0:4200
- CRIBL_VOLUME_DIR=/opt/cribl/config-volume
ports:
- "19000:9000"