Skip to content

Instantly share code, notes, and snippets.

@berinle
Created May 15, 2023 14:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save berinle/1fb5582477cfd305863898116cdd5027 to your computer and use it in GitHub Desktop.
Save berinle/1fb5582477cfd305863898116cdd5027 to your computer and use it in GitHub Desktop.
sample nginx
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: nginx
name: nginx
namespace: dev
spec:
replicas: 3
selector:
matchLabels:
app: nginx
strategy: {}
template:
metadata:
labels:
app: nginx
spec:
containers:
- image: YOUR_IMAGE:TAG
name: nginx
resources: {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment