diff --git a/stable/kube2iam/Chart.yaml b/stable/kube2iam/Chart.yaml index 2462058848..f404e8c933 100644 --- a/stable/kube2iam/Chart.yaml +++ b/stable/kube2iam/Chart.yaml @@ -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 diff --git a/stable/kube2iam/README.md b/stable/kube2iam/README.md index 904ac78e9a..ce9b9996a1 100644 --- a/stable/kube2iam/README.md +++ b/stable/kube2iam/README.md @@ -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, diff --git a/stable/kube2iam/values.yaml b/stable/kube2iam/values.yaml index 941512552b..578c81fd47 100644 --- a/stable/kube2iam/values.yaml +++ b/stable/kube2iam/values.yaml @@ -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