Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: use appVersion on images #51

Merged
merged 1 commit into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/keep/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
apiVersion: v2
name: keep
version: 0.1.16
version: 0.1.17
description: Keep Helm Chart
type: application
icon: https://platform.keephq.dev/_next/image?url=%2Fkeep.png&w=48&q=75
appVersion: 0.25.2
appVersion: 0.25.3
deprecated: false
annotations:
app: keep
Expand Down
4 changes: 2 additions & 2 deletions charts/keep/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
image:
repository: us-central1-docker.pkg.dev/keephq/keep/keep-api
pullPolicy: Always
tag: "latest"
tag: "{{ .Chart.AppVersion }}"
extraInitContainers: []
imagePullSecrets: []
podAnnotations: {}
Expand Down Expand Up @@ -123,7 +123,7 @@
image:
repository: us-central1-docker.pkg.dev/keephq/keep/keep-ui
pullPolicy: Always
tag: "latest"
tag: "{{ .Chart.AppVersion }}"
imagePullSecrets: []
serviceAccount:
create: true
Expand Down Expand Up @@ -237,7 +237,7 @@
tag: "latest"
env:
- name: MYSQL_ALLOW_EMPTY_PASSWORD
value: yes

Check warning on line 240 in charts/keep/values.yaml

View workflow job for this annotation

GitHub Actions / lint-chart

240:14 [truthy] truthy value should be one of [false, true]
- name: MYSQL_DATABASE
value: keep
- name: MYSQL_PASSWORD
Expand Down
Loading