Skip to content

Instantly share code, notes, and snippets.

View TMM21042's full-sized avatar

Tom McNamara TMM21042

  • hopr
  • Maryland, USA
View GitHub Profile
@TMM21042
TMM21042 / lane7-blueprint-pod-deployment.yaml
Last active January 31, 2026 17:58
YAML for a typical pod deployment in a Lane7 Blueprint (pre-configured)
apiVersion: apps/v1
kind: Deployment
metadata:
name: web-app-pod-1
namespace: web-app-1
spec:
replicas: 1
selector:
matchLabels:
app: web-app-pod-1
@TMM21042
TMM21042 / cert-manager-before-yaml.yaml
Created January 30, 2026 16:54
YAML code for typical cert manager implementation for two services in a cluster
# 1. ClusterIssuer for internal CA
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: internal-ca-issuer
spec:
ca:
secretName: internal-ca-secret
---
@TMM21042
TMM21042 / python_heroku.MD
Created November 14, 2021 23:54 — forked from bradtraversy/python_heroku.MD
Python & Postgres Heroku Deployment

Python Heroku Deployment

Steps to create a postgres database and deply a Python app to Heroku

Install guinicorn locally

pipenv install gunicorn
or
pip install gunicorn