Skip to content

Instantly share code, notes, and snippets.

View pebcac's full-sized avatar

Preston Davis pebcac

  • Red Hat
  • Raleigh, NC
View GitHub Profile
@pebcac
pebcac / OpenShift Makefile
Last active January 15, 2024 16:48
Generic makefile template for an OpenShift app deployment
# Makefile for OpenShift/Kubernetes Deployment
# Define variables
NAMESPACE := test
IMAGE_NAME := your-image-name
IMAGE_TAG := latest
DOCKER_REGISTRY := your-docker-registry
# Default target
all: deploy