add minimum age and bump version to 0.10.0 (#7388)

Signed-off-by: Shai Katz <agepox@gmail.com>
This commit is contained in:
Shai Katz
2018-08-28 13:24:52 -07:00
committed by k8s-ci-robot
parent f9731b0a3a
commit 6329a95adb
4 changed files with 8 additions and 5 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
apiVersion: v1
name: chaoskube
version: 0.9.1
appVersion: 0.9.0
version: 0.10.0
appVersion: 0.10.0
description: Chaoskube periodically kills random pods in your Kubernetes cluster.
home: https://github.com/linki/chaoskube
sources:
+2 -2
View File
@@ -41,7 +41,7 @@ $ helm install stable/chaoskube --set dryRun=false
|---------------------------|-----------------------------------------------------|----------------------------------|
| `name` | container name | chaoskube |
| `image` | docker image | quay.io/linki/chaoskube |
| `imageTag` | docker image tag | v0.9.0 |
| `imageTag` | docker image tag | v0.10.0 |
| `replicas` | number of replicas to run | 1 |
| `interval` | interval between pod terminations | 10m |
| `labels` | label selector to filter pods by | "" (matches everything) |
@@ -60,7 +60,7 @@ $ helm install stable/chaoskube --set dryRun=false
| `nodeSelector` | Node labels for pod assignment | `{}` |
| `tolerations` | Toleration labels for pod assignment | `[]` |
| `affinity` | Affinity settings for pod assignment | `{}` |
| `minimumAge` | Set minimum pod age to filter pod by | `0s` |
Setting label and namespaces selectors from the shell can be tricky but is possible (example with zsh):
@@ -37,6 +37,7 @@ spec:
{{- if .Values.debug }}
- --debug
{{- end }}
- --minimum-age={{ .Values.minimumAge }}
resources:
{{ toYaml .Values.resources | indent 12 }}
{{- if .Values.priorityClassName }}
+3 -1
View File
@@ -5,7 +5,7 @@ name: chaoskube
image: quay.io/linki/chaoskube
# docker image tag
imageTag: v0.9.0
imageTag: v0.10.0
# number of replicas to run
replicas: 1
@@ -40,6 +40,8 @@ excludedDaysOfYear:
# Set specific Timezone for Actions to take place
timezone: UTC
minimumAge: 0s
priorityClassName: ""
# create service account with permission to list and kill pods