Skip to content

Commit

Permalink
fix container port on adf app
Browse files Browse the repository at this point in the history
  • Loading branch information
pmacius committed Sep 30, 2024
1 parent 79f9702 commit 962761f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions charts/alfresco-adf-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Checkout [alfresco-content-services chart's doc](https://github.com/Alfresco/acs
| ingress.tls | list | `[]` | |
| livenessProbe.failureThreshold | int | `3` | |
| livenessProbe.httpGet.path | string | `"/"` | |
| livenessProbe.httpGet.port | int | `8080` | |
| livenessProbe.httpGet.port | string | `"http"` | |
| livenessProbe.initialDelaySeconds | int | `0` | |
| livenessProbe.periodSeconds | int | `10` | |
| livenessProbe.timeoutSeconds | int | `1` | |
Expand All @@ -50,7 +50,7 @@ Checkout [alfresco-content-services chart's doc](https://github.com/Alfresco/acs
| podSecurityContext.runAsUser | int | `101` | Retrocompat with Activiti Common chart |
| readinessProbe.failureThreshold | int | `3` | |
| readinessProbe.httpGet.path | string | `"/"` | |
| readinessProbe.httpGet.port | int | `8080` | |
| readinessProbe.httpGet.port | string | `"http"` | |
| readinessProbe.initialDelaySeconds | int | `0` | |
| readinessProbe.periodSeconds | int | `10` | |
| readinessProbe.timeoutSeconds | int | `1` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/alfresco-adf-app/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
{{- end }}
ports:
- name: http
containerPort: {{ .Values.service.port }}
containerPort: {{ .Values.service.targetPort }}
protocol: TCP
livenessProbe:
{{- toYaml .Values.livenessProbe | nindent 12 }}
Expand Down
4 changes: 2 additions & 2 deletions charts/alfresco-adf-app/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ingress:
livenessProbe:
httpGet:
path: /
port: 8080
port: http
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
Expand All @@ -58,7 +58,7 @@ livenessProbe:
readinessProbe:
httpGet:
path: /
port: 8080
port: http
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
Expand Down

0 comments on commit 962761f

Please sign in to comment.