[stable/spartakus] No default resources (#683)

* Pedantic commenting

* No default resources

* Semver-compliant
This commit is contained in:
Michael Goodness
2017-03-02 11:19:54 -08:00
committed by Adnan Abdulhussein
parent 8262ddb78f
commit 7631b151f5
3 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: spartakus
version: 1.1.0
version: 1.1.1
description: Collect information about Kubernetes clusters to help improve the project.
sources:
- https://github.com/kubernetes-incubator/spartakus
+1 -1
View File
@@ -50,7 +50,7 @@ Parameter | Description | Default
`nodeSelector` | node labels for pod assignment | `{}`
`podAnnotations` | annotations to be added to pods | `{}`
`replicaCount` | desired number of pods | `1`
`resources` | pod resource requests & limits | `requests: {cpu: 2m, memory: 8Mi}`
`resources` | pod resource requests & limits | `{}`
`uuid` | Unique cluster ID | Dynamically generated using `uuidv4` template function
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
+5 -4
View File
@@ -9,6 +9,7 @@ image:
## Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## Annotations to be added to pods
@@ -20,13 +21,13 @@ replicaCount: 1
## Resource requests and limits
## Ref: http://kubernetes.io/docs/user-guide/compute-resources/
##
resources:
resources: {}
# limits:
# cpu: 2m
# memory: 8Mi
requests:
cpu: 2m
memory: 8Mi
# requests:
# cpu: 2m
# memory: 8Mi
## A version 4 UUID to uniquely identify the cluster
## If not provided, Helm will generate automatically at install-time.