mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/kube2iam] No default resources (#682)
* Pedantic commenting * No default resources * Semver-compliant
This commit is contained in:
committed by
Adnan Abdulhussein
parent
5f0d68d3b2
commit
8262ddb78f
@@ -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
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user