diff --git a/charts/alfresco-adf-app/README.md b/charts/alfresco-adf-app/README.md index 78cf8f87..7be9b726 100644 --- a/charts/alfresco-adf-app/README.md +++ b/charts/alfresco-adf-app/README.md @@ -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` | | @@ -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` | | diff --git a/charts/alfresco-adf-app/templates/deployment.yaml b/charts/alfresco-adf-app/templates/deployment.yaml index b802e6d1..fb1828e3 100644 --- a/charts/alfresco-adf-app/templates/deployment.yaml +++ b/charts/alfresco-adf-app/templates/deployment.yaml @@ -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 }} diff --git a/charts/alfresco-adf-app/values.yaml b/charts/alfresco-adf-app/values.yaml index d631688a..6076f697 100644 --- a/charts/alfresco-adf-app/values.yaml +++ b/charts/alfresco-adf-app/values.yaml @@ -49,7 +49,7 @@ ingress: livenessProbe: httpGet: path: / - port: 8080 + port: http initialDelaySeconds: 0 periodSeconds: 10 timeoutSeconds: 1 @@ -58,7 +58,7 @@ livenessProbe: readinessProbe: httpGet: path: / - port: 8080 + port: http initialDelaySeconds: 0 periodSeconds: 10 timeoutSeconds: 1