Last active
October 6, 2016 03:01
-
-
Save harsha-y/d2c4c0fd4079666aea1e5d7b72f41670 to your computer and use it in GitHub Desktop.
Kubernetes - Resource reserver daemonset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: extensions/v1beta1 | |
kind: DaemonSet | |
metadata: | |
name: resource-reserver-ds | |
namespace: kube-system | |
spec: | |
template: | |
metadata: | |
labels: | |
name: resource-reserver | |
spec: | |
containers: | |
- image: gcr.io/google_containers/pause:0.8.0 | |
name: resource-reserver | |
resources: | |
limits: | |
cpu: 100m | |
memory: 256Mi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment