[stable/kube2iam] No default resources (#682)

* Pedantic commenting

* No default resources

* Semver-compliant
This commit is contained in:
Michael Goodness
2017-03-02 11:19:32 -08:00
committed by Adnan Abdulhussein
parent 5f0d68d3b2
commit 8262ddb78f
3 changed files with 10 additions and 9 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: kube2iam
version: 0.2.0
version: 0.2.1
description: Provide IAM credentials to pods based on annotations.
keywords:
- kube2iam
+1 -1
View File
@@ -50,7 +50,7 @@ Parameter | Description | Default
`image.pullPolicy` | Image pull policy | `IfNotPresent`
`nodeSelector` | node labels for pod assignment | `{}`
`podAnnotations` | annotations to be added to pods | `{}`
`resources` | pod resource requests & limits | `limits: {cpu: 4m, memory: 16Mi}, requests: {cpu: 4m, memory: 16Mi}`
`resources` | pod resource requests & limits | `{}`
`verbose` | Enable verbose output | `false`
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
+8 -7
View File
@@ -16,18 +16,19 @@ image:
## Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## Annotations to be added to pods
##
podAnnotations: {}
resources:
limits:
cpu: 4m
memory: 16Mi
requests:
cpu: 4m
memory: 16Mi
resources: {}
# limits:
# cpu: 4m
# memory: 16Mi
# requests:
# cpu: 4m
# memory: 16Mi
verbose: false