Skip to content

Instantly share code, notes, and snippets.

@ualmtorres
Created May 14, 2020 08:18
Show Gist options
  • Save ualmtorres/adb40c8a08a475a0be71fdce673606b7 to your computer and use it in GitHub Desktop.
Save ualmtorres/adb40c8a08a475a0be71fdce673606b7 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: sgapp
namespace: demo
labels:
app: sgapp
spec:
revisionHistoryLimit: 2
strategy:
type: RollingUpdate
selector:
matchLabels:
app: sgapp
template:
metadata:
labels:
app: sgapp
spec:
containers:
- name: sgapp
image: ualmtorres/sgapp:v0
ports:
- name: http
containerPort: 80
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 250m
memory: 256Mi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment