Skip to content

Commit 4e44f17

Browse files
committed
updates helm chart to use new tags, updates docker compose try it
1 parent 6dae239 commit 4e44f17

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

charts/devguard/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.9.2
18+
version: 0.12.0
1919
# This is the version number of the application being deployed. This version number should be
2020
# incremented each time you make changes to the application. Versions are not expected to
2121
# follow Semantic Versioning. They should reflect the version the application is using.

charts/devguard/templates/postgresql/postgresql-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
version: "{{ .Chart.AppVersion }}"
1919
spec:
2020
containers:
21-
- image: "{{ .Values.api.image.repository }}-postgresql:v0.4.16"
21+
- image: "{{ .Values.api.image.repository }}-postgresql:{{ .Chart.AppVersion }}"
2222
name: postgresql
2323
ports:
2424
- containerPort: 5432

charts/devguard/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ api:
3232
repository: ghcr.io/l3montree-dev/devguard
3333
# TODO: As we are curently in ALPHA, we are using the latest tag.
3434
# This will be changed to a specific tag once we are in BETA.
35-
pullPolicy: Always # IfNotPresent
35+
pullPolicy: IfNotPresent
3636
# Overrides the image tag whose default is the chart appVersion.
37-
tag: 0.13.0
37+
# tag: 0.13.0
3838
imagePullSecrets: []
3939
podAnnotations: {}
4040
podLabels: {}
@@ -91,9 +91,9 @@ web:
9191
repository: ghcr.io/l3montree-dev/devguard-web
9292
# TODO: As we are curently in ALPHA, we are using the latest tag.
9393
# This will be changed to a specific tag once we are in BETA.
94-
pullPolicy: Always # IfNotPresent
94+
pullPolicy: IfNotPresent
9595
# Overrides the image tag whose default is the chart appVersion.
96-
tag: 0.13.0
96+
# tag: 0.13.0
9797
imagePullSecrets: []
9898
podAnnotations: {}
9999
podLabels: {}

docker-compose-try-it.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.8'
22

33
services:
44
postgresql:
5-
image: ghcr.io/l3montree-dev/devguard-postgresql:v0.4.16
5+
image: ghcr.io/l3montree-dev/devguard/postgresql:v0.4.16
66
container_name: devguard-postgres
77
environment:
88
POSTGRES_USER: postgres

0 commit comments

Comments
 (0)