Skip to content

Commit 8d342b7

Browse files
committed
chore: bump version and appVersion to 0.1.0 for helm charts
- Updated version and appVersion to 0.1.0 for the main chart, backend, and frontend charts. - Changed image tags from "dev" to "main" in values.yaml for backend and frontend services.
1 parent 1757953 commit 8d342b7

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

helm/Chart.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: amazee-ai
22
description: A Helm Chart for amazee.ai with independent frontend and backend services
3-
version: 0.0.11
3+
version: 0.1.0
44
apiVersion: v2
5-
appVersion: "0.0.11"
5+
appVersion: "0.1.0"
66
keywords:
77
- amazee.ai
88
- frontend
@@ -15,10 +15,10 @@ dependencies:
1515
repository: https://charts.bitnami.com/bitnami
1616
condition: postgresql.enabled
1717
- name: backend
18-
version: 0.0.11
18+
version: 0.1.0
1919
condition: backend.enabled
2020
dependsOn:
2121
- postgresql
2222
- name: frontend
23-
version: 0.0.11
23+
version: 0.1.0
2424
condition: frontend.enabled

helm/charts/backend/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: backend
22
description: Backend API service for amazee.ai
3-
version: 0.0.11
3+
version: 0.1.0
44
apiVersion: v2
5-
appVersion: "0.0.11"
5+
appVersion: "0.1.0"
66
keywords:
77
- api
88
- fastapi

helm/charts/backend/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ enabled: true
44
replicas: 1
55
image:
66
repository: ghcr.io/amazeeio/amazee.ai-backend
7-
tag: "dev"
7+
tag: "main"
88
pullPolicy: IfNotPresent
99

1010
# Database configuration

helm/charts/frontend/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: frontend
22
description: Frontend web application for amazee.ai
3-
version: 0.0.11
3+
version: 0.1.0
44
apiVersion: v2
5-
appVersion: "0.0.11"
5+
appVersion: "0.1.0"
66
keywords:
77
- frontend
88
- nextjs

helm/charts/frontend/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ enabled: true
44
replicas: 1
55
image:
66
repository: ghcr.io/amazeeio/amazee.ai-frontend
7-
tag: "dev"
7+
tag: "main"
88
pullPolicy: IfNotPresent
99

1010
# Application configuration

helm/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ backend:
2727
replicas: 1
2828
image:
2929
repository: ghcr.io/amazeeio/amazee.ai-backend
30-
tag: "dev"
30+
tag: "main"
3131
pullPolicy: IfNotPresent
3232
# Database configuration - set based on postgresql configuration
3333
# The DATABASE_URL will be automatically generated using the release name
@@ -61,7 +61,7 @@ frontend:
6161
replicas: 1
6262
image:
6363
repository: ghcr.io/amazeeio/amazee.ai-frontend
64-
tag: "dev"
64+
tag: "main"
6565
pullPolicy: IfNotPresent
6666
apiUrl: "" # Will be auto-generated using release name and backend service
6767
stripePublishableKey: "pk_test_your_stripe_publishable_key"

0 commit comments

Comments
 (0)