Skip to content

Instantly share code, notes, and snippets.

@ualmtorres
Created May 14, 2020 08:17
Show Gist options
  • Save ualmtorres/172ad1a1b5f2a30583e608137dc341f7 to your computer and use it in GitHub Desktop.
Save ualmtorres/172ad1a1b5f2a30583e608137dc341f7 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: sgapi
namespace: demo
labels:
app: sgapi
spec:
revisionHistoryLimit: 2
strategy:
type: RollingUpdate
selector:
matchLabels:
app: sgapi
template:
metadata:
labels:
app: sgapi
spec:
containers:
- name: sgapi
image: ualmtorres/sgapi: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