Skip to content

Instantly share code, notes, and snippets.

@Cpriyanshi77
Created January 20, 2023 10:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cpriyanshi77/60889ed3d66601e54df5236f326c733a to your computer and use it in GitHub Desktop.
Save Cpriyanshi77/60889ed3d66601e54df5236f326c733a to your computer and use it in GitHub Desktop.
Verify Fluent-bit Deployment
apiVersion: v1
kind: Pod
metadata:
name: log-generator
spec:
containers:
- name: log-generator
image: busybox
command: ['sh', '-c', 'i=0; while true; do echo "$i: Log message"; i=$((i+1)); sleep 1; done']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment