Skip to content

Instantly share code, notes, and snippets.

@carlosroman
carlosroman / README.MD
Created June 5, 2024 16:28
TLS over UDP

Simple test to show TLS over UDS

To run:

go test -v -timeout 1s

The third test hangs (ClientUsesTLS) at the moment. The output does look like the client has encrypted the data as it got sent to the listner.

@carlosroman
carlosroman / Dockerfile
Last active June 3, 2025 13:17
Datadog operator on Kind cluster
FROM python:3.11
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .