Skip to content

Commit

Permalink
Helm Chart 1.0.2: fix postgres variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Stogas committed Aug 13, 2024
1 parent 738a118 commit 9e0151d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions helm-chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: feedback-api
description: A Helm chart for deploying Feedback-API
type: application
version: 1.0.1
appVersion: "v1.0.1"
version: 1.0.2
appVersion: "v1.0.2"
sources:
- https://github.com/Stogas/feedback-api
- https://github.com/Stogas/feedback-api/helm-chart
Expand Down
6 changes: 3 additions & 3 deletions helm-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ image:
configMap:
API_LISTEN_PORT: 8080
API_DEBUG_MODE: "false"
POSTGRES_HOST: ""
POSTGRES_HOST: "{{ include "feedbackapi.fullname" $ }}-postgresql"
POSTGRES_PORT: 5432
POSTGRES_USER: ""
POSTGRES_DATABASE: ""
POSTGRES_USER: "feedbackapi"
POSTGRES_DATABASE: "feedbackapi"
OTLP_TRACING_ENABLED: "false"
OTLP_GRPC_HOST: "127.0.0.1"
OTLP_GRPC_PORT: "4317"
Expand Down

0 comments on commit 9e0151d

Please sign in to comment.