Skip to content

Instantly share code, notes, and snippets.

@bharatmicrosystems
Created October 8, 2020 13:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bharatmicrosystems/0a76e2eb783f482a0f2df237c3741095 to your computer and use it in GitHub Desktop.
Save bharatmicrosystems/0a76e2eb783f482a0f2df237c3741095 to your computer and use it in GitHub Desktop.
cat <<EOF | kubectl apply -f -
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: nginx
name: nginx
spec:
replicas: 10
selector:
matchLabels:
app: nginx
strategy:
type: RollingUpdate
template:
metadata:
labels:
app: nginx
spec:
containers:
- image: bharamicrosystems/nginx:v1
name: nginx
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment