Skip to content

Instantly share code, notes, and snippets.

View obervinov's full-sized avatar
📟
Working from home

obervinov obervinov

📟
Working from home
View GitHub Profile
@obervinov
obervinov / python-deployment.yaml
Last active April 12, 2024 07:44
Deployment with python tools for debugging or running one-off jobs
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: python
spec:
replicas: 1
selector:
matchLabels:
app: python
@obervinov
obervinov / httpbin.yaml
Created April 9, 2024 14:04
HTTPBin deployment + service + sa for testing communications between services in kubernetes
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: httpbin
...
---
apiVersion: v1
kind: Service
metadata:
@obervinov
obervinov / tools-deployment.yaml
Last active April 12, 2024 07:44
Deployment feed with debug container in kubernetes: curl, tcpdump, awscli, wget, strace and etc
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: tools
spec:
replicas: 1
selector:
matchLabels:
app: tools