From 7631b151f5723d2f15807873e35c0854202a0fa3 Mon Sep 17 00:00:00 2001 From: Michael Goodness Date: Thu, 2 Mar 2017 13:19:54 -0600 Subject: [PATCH] [stable/spartakus] No default resources (#683) * Pedantic commenting * No default resources * Semver-compliant --- stable/spartakus/Chart.yaml | 2 +- stable/spartakus/README.md | 2 +- stable/spartakus/values.yaml | 9 +++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/stable/spartakus/Chart.yaml b/stable/spartakus/Chart.yaml index 9f26514c9f..12e7e9d51c 100755 --- a/stable/spartakus/Chart.yaml +++ b/stable/spartakus/Chart.yaml @@ -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 diff --git a/stable/spartakus/README.md b/stable/spartakus/README.md index de146bde0b..0f85fa8e0a 100644 --- a/stable/spartakus/README.md +++ b/stable/spartakus/README.md @@ -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, diff --git a/stable/spartakus/values.yaml b/stable/spartakus/values.yaml index 1ad41e9f8b..6b53afb22c 100644 --- a/stable/spartakus/values.yaml +++ b/stable/spartakus/values.yaml @@ -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.