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

Add port update on sales portal chart #32

Merged
merged 1 commit into from
Feb 8, 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
2 changes: 1 addition & 1 deletion charts/devpro-salesportal/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: devpro-salesportal
description: Helm chart for Devpro Sales Portal
type: application
version: 0.2.0
version: 0.2.1
appVersion: "1.1.0"
dependencies:
- name: mongodb
Expand Down
2 changes: 1 addition & 1 deletion charts/devpro-salesportal/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ spec:
imagePullPolicy: Always
ports:
- name: http
containerPort: 80
containerPort: {{ .port }}
protocol: TCP
livenessProbe:
httpGet:
Expand Down
3 changes: 3 additions & 0 deletions charts/devpro-salesportal/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ front:
name: salesportal-wasmapp
image: docker.io/devprofr/salesportal-wasmapp
tag: 1.1.7818547414
port: 80
replicaCount: 1
healthEndpoint: /health
db: {}
Expand All @@ -29,6 +30,7 @@ adapter:
image: docker.io/devprofr/salesportal-crmadapterwebapi
tag: 1.1.7818547414
replicaCount: 1
port: 8080
healthEndpoint: /health
db: {}
extraEnv: []
Expand All @@ -43,6 +45,7 @@ data:
image: docker.io/devprofr/salesportal-crmdatawebapi
tag: 1.1.7818547414
replicaCount: 1
port: 8080
healthEndpoint: /health
db:
connectionString: ""
Expand Down
Loading