Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OPSEXP-2991 Change sync service ingress pathType to ImplementationSpecific #430

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion charts/alfresco-sync-service/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords:
name: alfresco-sync-service
sources:
- https://github.com/Alfresco/acs-deployment
version: 7.0.0-alpha.0
version: 7.0.0-alpha.1
appVersion: 5.1.0
icon: https://avatars0.githubusercontent.com/u/391127?s=200&v=4
dependencies:
Expand Down
4 changes: 2 additions & 2 deletions charts/alfresco-sync-service/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ parent: Charts Reference

# alfresco-sync-service

![Version: 7.0.0-alpha.0](https://img.shields.io/badge/Version-7.0.0--alpha.0-informational?style=flat-square) ![AppVersion: 5.1.0](https://img.shields.io/badge/AppVersion-5.1.0-informational?style=flat-square)
![Version: 7.0.0-alpha.1](https://img.shields.io/badge/Version-7.0.0--alpha.1-informational?style=flat-square) ![AppVersion: 5.1.0](https://img.shields.io/badge/AppVersion-5.1.0-informational?style=flat-square)

Alfresco Sync Service

Expand Down Expand Up @@ -49,7 +49,7 @@ Checkout [alfresco-content-services chart's doc](https://github.com/Alfresco/acs
| image.tag | string | `"5.1.0"` | |
| ingress.extraAnnotations | object | `{}` | useful when running Sync service without SSL termination done by a load balancer, e.g. when ran on Minikube for testing purposes nginx.ingress.kubernetes.io/ssl-redirect: "false" |
| ingress.hosts[0].paths[0].path | string | `"/syncservice(/|$)(.*)"` | |
| ingress.hosts[0].paths[0].pathType | string | `"Prefix"` | |
| ingress.hosts[0].paths[0].pathType | string | `"ImplementationSpecific"` | |
| ingress.tls | list | `[]` | |
| livenessProbe.httpGet.path | string | `"/alfresco/healthcheck"` | |
| livenessProbe.httpGet.port | string | `"serviceport"` | |
Expand Down
6 changes: 3 additions & 3 deletions charts/alfresco-sync-service/tests/ingress_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ tests:
port:
number: 80
path: /syncservice(/|$)(.*)
pathType: Prefix
pathType: ImplementationSpecific
- it: should render rules with host
set:
ingress:
hosts:
- host: testhost
paths:
- path: /syncservice(/|$)(.*)
pathType: Prefix
pathType: ImplementationSpecific
asserts:
- equal:
path: spec.rules
Expand All @@ -38,4 +38,4 @@ tests:
port:
number: 80
path: /syncservice(/|$)(.*)
pathType: Prefix
pathType: ImplementationSpecific
2 changes: 1 addition & 1 deletion charts/alfresco-sync-service/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ ingress:
hosts:
- paths:
- path: /syncservice(/|$)(.*)
pathType: Prefix
pathType: ImplementationSpecific
nodeSelector: {}
tolerations: []
terminationGracePeriodSeconds: 60
Expand Down
Loading