Skip to content

Commit

Permalink
Force rollout on cm change (#19)
Browse files Browse the repository at this point in the history
* force rollout on configuration change

* bump up version

* updated docs

* fix sha256sum check

* fix printf

* add connectors to check

* remove unneeded -
  • Loading branch information
valeriano-manassero authored Oct 27, 2020
1 parent 7d8af83 commit 2204193
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion valeriano-manassero/presto/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "345"
description: High performance, distributed SQL query engine for big data
name: presto
version: 1.2.0
version: 1.2.1
home: https://prestosql.io
icon: https://prestosql.io/assets/presto.png
sources:
Expand Down
2 changes: 1 addition & 1 deletion valeriano-manassero/presto/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# presto

![Version: 1.2.0](https://img.shields.io/badge/Version-1.2.0-informational?style=flat-square) ![AppVersion: 345](https://img.shields.io/badge/AppVersion-345-informational?style=flat-square)
![Version: 1.2.1](https://img.shields.io/badge/Version-1.2.1-informational?style=flat-square) ![AppVersion: 345](https://img.shields.io/badge/AppVersion-345-informational?style=flat-square)

High performance, distributed SQL query engine for big data

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ spec:
app: {{ template "presto.name" . }}
release: {{ .Release.Name }}
component: coordinator
annotations:
checksum/config: {{ printf "%s%s" .Values.server .Values.connectors | sha256sum }}
spec:
{{- with .Values.image.securityContext }}
securityContext:
Expand Down
2 changes: 2 additions & 0 deletions valeriano-manassero/presto/templates/deployment-worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ spec:
app: {{ template "presto.name" . }}
release: {{ .Release.Name }}
component: worker
annotations:
checksum/config: {{ printf "%s%s" .Values.server .Values.connectors | sha256sum }}
spec:
volumes:
- name: config-volume
Expand Down

0 comments on commit 2204193

Please sign in to comment.