Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
5dc9984
dev: add service simple ui
acrepina Jun 3, 2025
f9e2397
add host
acrepina Jun 4, 2025
bc3c5e8
add host
acrepina Jun 4, 2025
fc7b2ce
add host
acrepina Jun 4, 2025
38fb995
dev: sert correct version
acrepina Jun 4, 2025
7c83004
link service and deployemente
acrepina Jun 4, 2025
5db6baa
dev: add simple ui
acrepina Jun 4, 2025
3eb7dc7
remove copy past un-used volum
acrepina Jun 4, 2025
e772566
set correct env variable simple ui deployement
acrepina Jun 4, 2025
f9e57de
set correct port
acrepina Jun 4, 2025
ba42d0e
fix env
acrepina Jun 5, 2025
9d84b22
rename port simple ui
acrepina Jun 5, 2025
d21f6d4
dev: seperate conf ingress host simple ui and hawkbit
acrepina Jun 6, 2025
325fd51
connect correcly ingress and service
acrepina Jun 6, 2025
f07d536
dev: fix link between service and deployement by using common label i…
acrepina Jun 9, 2025
a2e2f1d
add flag to ingress
acrepina Jun 13, 2025
281fd58
dev: update version
acrepina Jun 19, 2025
fa58f9b
dev: set correct address
acrepina Jun 20, 2025
bc5e814
dev: refacto format ingress to correspond to our private ingress and …
acrepina Jun 20, 2025
f8b4429
refacto: improve retrocompatibility
Jun 25, 2025
a2787a9
chore: respect convetional format
Jul 1, 2025
348b322
docs: add path default value
Jul 8, 2025
6333d7e
Merge pull request #1 from flobz/create_helm_for_v080 (thanks flobz )
acrepina Jul 8, 2025
0522f47
Merge branch 'eclipse:master' into create_helm_for_v080
acrepina Jul 8, 2025
0bd48f6
feat: add config for simpleUI
Aug 25, 2025
01b09ba
chore: don't wiat 2 minutes before readinessProbe:
Sep 15, 2025
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
Prev Previous commit
Next Next commit
rename port simple ui
  • Loading branch information
acrepina committed Jun 5, 2025
commit 9d84b222da03de77748746ea6cb64c64e87bedcc
6 changes: 3 additions & 3 deletions charts/hawkbit/templates/deployment-simple-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@ spec:
- name: SPRING_APPLICATION_JSON
value: {{ .Values.envSimpleUI.springAppJson | toJson | quote }}
ports:
- name: http
- name: http-simple-ui
containerPort: {{ .Values.serviceSimpleUI.port }}
protocol: TCP
livenessProbe:
httpGet:
path: /login
port: http
port: http-simple-ui
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
readinessProbe:
httpGet:
path: /login
port: http
port: http-simple-ui
initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }}
timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }}
resources:
Expand Down
2 changes: 1 addition & 1 deletion charts/hawkbit/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ spec:
{{- end }}
ports:
- name: http
containerPort: 8080
containerPort: {{ .Values.service.port }}
protocol: TCP
livenessProbe:
httpGet:
Expand Down
4 changes: 2 additions & 2 deletions charts/hawkbit/templates/servicesimpleui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ spec:
type: {{ .Values.serviceSimpleUI.type }}
ports:
- port: {{ .Values.serviceSimpleUI.port }}
targetPort: {{ .Values.serviceSimpleUI.port }}
targetPort: http-simple-ui
protocol: TCP
name: http
name: http-simple-ui
selector:
app.kubernetes.io/name: "{{ include "hawkbit.name" . }}-simple-ui"
app.kubernetes.io/instance: "{{ .Release.Name }}-simple-ui"