Skip to content

Commit

Permalink
feat: Upgrade push proxy version and use default value from Chart.yaml (
Browse files Browse the repository at this point in the history
  • Loading branch information
toninis authored Feb 29, 2024
1 parent a95d22c commit bbe6aa2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
18 changes: 9 additions & 9 deletions charts/mattermost-push-proxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apiVersion: v2
description: Mattermost Push Proxy server
name: mattermost-push-proxy
type: application
version: 0.10.7
appVersion: 5.30.0
version: 0.11.0
appVersion: 6.0.0
keywords:
- mattermost
- communication
- notification
- messaging
- team colaboration
- mattermost
- communication
- notification
- messaging
- team colaboration
home: https://mattermost.com
icon: http://www.mattermost.org/wp-content/uploads/2016/04/icon.png
maintainers:
Expand All @@ -20,8 +20,8 @@ maintainers:
- name: delivery-team
email: [email protected]
sources:
- https://github.com/mattermost/mattermost-helm
- https://github.com/mattermost/mattermost-push-proxy
- https://github.com/mattermost/mattermost-helm
- https://github.com/mattermost/mattermost-push-proxy
annotations:
artifacthub.io/images: |
- name: mattermost-push-proxy
Expand Down
2 changes: 1 addition & 1 deletion charts/mattermost-push-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
spec:
containers:
- name: {{ include "mattermost-push-proxy.name" . }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
args: ["--config", "/mattermost-push-proxy/config/config.json"]
ports:
Expand Down
7 changes: 4 additions & 3 deletions charts/mattermost-push-proxy/values.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
replicaCount: 1
image:
repository: mattermost/mattermost-push-proxy
tag: 5.30.0
pullPolicy: Always

resources: {}
resources:
{}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
Expand Down Expand Up @@ -38,7 +38,8 @@ service:
ingress:
enabled: false
# ingressClassName: nginx
annotations: {}
annotations:
{}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
Expand Down

0 comments on commit bbe6aa2

Please sign in to comment.