mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
add minimum age and bump version to 0.10.0 (#7388)
Signed-off-by: Shai Katz <agepox@gmail.com>
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user