Skip to content

Instantly share code, notes, and snippets.

@seyedsahil
Created October 21, 2020 16:06
Show Gist options
  • Save seyedsahil/5f14dda037b18dfc71059b93a3087607 to your computer and use it in GitHub Desktop.
Save seyedsahil/5f14dda037b18dfc71059b93a3087607 to your computer and use it in GitHub Desktop.
sample deployment file
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
name: hello-world
name: hello-world
spec:
replicas: 1
selector:
matchLabels:
name: hello-world
template:
metadata:
labels:
name: hello-world
spec:
containers:
- image: hello_world_app
name: hello-world-app
ports:
- containerPort: 8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment