Skip to content

Commit

Permalink
fixup adf target port
Browse files Browse the repository at this point in the history
  • Loading branch information
gionn committed Oct 2, 2024
1 parent 742961d commit 0228eb3
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 @@ -60,8 +60,8 @@ Checkout [alfresco-content-services chart's doc](https://github.com/Alfresco/acs
| resources.requests.cpu | string | `"100m"` | |
| resources.requests.memory | string | `"128Mi"` | |
| securityContext | object | `{}` | |
| service.port | int | `80` | |
| service.targetPort | int | `8080` | |
| service.port | int | `8080` | |
| service.targetPort | string | `"http"` | |
| service.type | string | `"ClusterIP"` | |
| serviceAccount.annotations | object | `{}` | Annotations to add to the service account |
| serviceAccount.automount | bool | `true` | Automatically mount a ServiceAccount's API credentials? |
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.targetPort }}
containerPort: {{ .Values.service.port }}
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 @@ -32,8 +32,8 @@ securityContext: {}

service:
type: ClusterIP
port: 80
targetPort: 8080
port: 8080
targetPort: http

ingress:
enabled: true
Expand Down

0 comments on commit 0228eb3

Please sign in to comment.