Skip to content

Instantly share code, notes, and snippets.

View kevinmingtarja's full-sized avatar
🚀

Kevin Mingtarja kevinmingtarja

🚀
View GitHub Profile
@kevinmingtarja
kevinmingtarja / docker-compose.yaml
Created September 26, 2025 05:44
Docker compose file for setting up local oauth2 proxy with redis store
version: '3.8'
services:
# Redis for OAuth2 Proxy session storage
oauth2-redis:
image: redis:7-alpine
container_name: skypilot-oauth2-redis
ports:
- "6379:6379"
restart: unless-stopped
@kevinmingtarja
kevinmingtarja / prometheus.sky.yaml
Created August 11, 2025 17:58
SkyPilot YAML that installs Prometheus and node_exporter for monitoring the remote cluster metrics
name: prometheus
resources:
cpus: 1+
setup: |
set -e
PROMETHEUS_VERSION="3.5.0"
NODE_EXPORTER_VERSION="1.9.1"