Skip to content

Commit

Permalink
Run lowops generic app on port 8000
Browse files Browse the repository at this point in the history
  • Loading branch information
Viktor B authored and Viktor B committed Feb 6, 2024
1 parent a760412 commit ed56e2c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/app-generic/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0
version: 0.1.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
5 changes: 4 additions & 1 deletion charts/app-generic/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,12 @@ spec:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
env:
- name: PORT
value: "8000"
ports:
- name: http
containerPort: 80
containerPort: 8000
protocol: TCP
livenessProbe:
httpGet:
Expand Down
2 changes: 1 addition & 1 deletion charts/app-generic/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ securityContext: {}

service:
type: ClusterIP
port: 80
port: 8000

ingress:
enabled: true
Expand Down

0 comments on commit ed56e2c

Please sign in to comment.