Skip to content

Commit

Permalink
[stable/cerebro] Service: Fix not-valid kube object not passing linti…
Browse files Browse the repository at this point in the history
…ng, update cerebro to 0.8.3. (helm#13086)

Signed-off-by: Cédric de Saint Martin <[email protected]>
  • Loading branch information
desaintmartin authored and k8s-ci-robot committed Apr 25, 2019
1 parent 10c0454 commit 14cf4e0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions stable/cerebro/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: cerebro
version: 1.0.1
appVersion: 0.8.3
apiVersion: v1
appVersion: 0.8.2
description: A Helm chart for Cerebro - a web admin tool that replaces Kopf.
home: https://github.com/lmenezes/cerebro
icon: https://github.com/lmenezes/cerebro/blob/master/public/img/logo.png
sources:
- https://github.com/lmenezes/cerebro-docker
- https://github.com/lmenezes/cerebro
name: cerebro
version: 1.0.0
maintainers:
- name: davidkarlsen
email: [email protected]
2 changes: 1 addition & 1 deletion stable/cerebro/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The following table lists the configurable parameters of the cerebro chart and t
|-------------------------------------|-------------------------------------|-------------------------------------------|
| `replicaCount` | Number of replicas | `1` |
| `image.repository` | The image to run | `lmenezes/cerebro` |
| `image.tag` | The image tag to pull | `0.8.2` |
| `image.tag` | The image tag to pull | `0.8.3` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `image.pullSecrets` | Specify image pull secrets | `nil` (does not add image pull secrets to deployed pods) |
| `init.image.repository` | The image to run | `docker.io/busybox` |
Expand Down
6 changes: 3 additions & 3 deletions stable/cerebro/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ metadata:
{{- if .Values.service.labels }}
{{ toYaml .Values.service.labels | indent 4 }}
{{- end }}
{{- with .Values.service.annotations }}
annotations:
{{- range $key, $value := .Values.service.annotations }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{ toYaml . | indent 4 }}
{{- end }}
spec:
type: {{ .Values.service.type }}
ports:
Expand Down
2 changes: 1 addition & 1 deletion stable/cerebro/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ image:
repository: lmenezes/cerebro
# Note: when updating the version, ensure `config` and the ConfigMap are kept
# in sync with the default configuration of the upstream image
tag: 0.8.2
tag: 0.8.3
pullPolicy: IfNotPresent

init:
Expand Down

0 comments on commit 14cf4e0

Please sign in to comment.