Skip to content

Instantly share code, notes, and snippets.

@thecraftman
Created January 30, 2022 14:06
Show Gist options
  • Save thecraftman/64453f5abc3153cc6352891765c1d40e to your computer and use it in GitHub Desktop.
Save thecraftman/64453f5abc3153cc6352891765c1d40e to your computer and use it in GitHub Desktop.
Replication Controllers
apiVersion: v1
kind: ReplicationController
metadata:
name: expressapp-controller
spec:
replicas: 2
selector:
app: express-app
template:
metadata:
labels:
app: express-app
spec:
containers:
- name: k8s-demo
image: tolatemitope/express-app
ports:
- name: nodejs-port
containerPort: 5000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment