Skip to content

Commit ed56e2c

Browse files
Viktor BViktor B
authored andcommitted
Run lowops generic app on port 8000
1 parent a760412 commit ed56e2c

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

charts/app-generic/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.1.0
18+
version: 0.1.1
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/app-generic/templates/deployment.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,12 @@ spec:
3333
{{- toYaml .Values.securityContext | nindent 12 }}
3434
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
3535
imagePullPolicy: {{ .Values.image.pullPolicy }}
36+
env:
37+
- name: PORT
38+
value: "8000"
3639
ports:
3740
- name: http
38-
containerPort: 80
41+
containerPort: 8000
3942
protocol: TCP
4043
livenessProbe:
4144
httpGet:

charts/app-generic/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ securityContext: {}
3838

3939
service:
4040
type: ClusterIP
41-
port: 80
41+
port: 8000
4242

4343
ingress:
4444
enabled: true

0 commit comments

Comments
 (0)