File tree Expand file tree Collapse file tree 8 files changed +9
-4
lines changed Expand file tree Collapse file tree 8 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88--- 
99## [ Unreleased]  
1010### Added  
11+ -  Support ` pathType `  for ingress rules
1112### Changed  
1213### Deprecated  
1314### Removed  
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
1515#  This is the chart version. This version number should be incremented each time you make changes
1616#  to the chart and its templates, including the app version.
1717#  Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 3.3.0  
18+ version : 3.3.1  
1919
2020#  This is the version number of the application being deployed. This version number should be
2121#  incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 4444        paths :
4545          {{- range .paths }} 
4646          - path : {{ .path }} 
47-             pathType : Prefix 
47+             pathType : {{ .pathType | default " Prefix" }} 
4848            backend :
4949              service :
5050                name : {{ .backend.serviceName | default $fullName }} 
Original file line number Diff line number Diff line change @@ -181,6 +181,7 @@ ingress:
181181    - host : chart-example.local 
182182      paths :
183183        - path : / 
184+           pathType : Prefix 
184185          backend :
185186            serviceName : " " 
186187            servicePort : " " 
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88--- 
99## [ Unreleased]  
1010### Added  
11+ -  Support ` pathType `  for ingress rules
1112### Changed  
1213### Deprecated  
1314### Removed  
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
1515#  This is the chart version. This version number should be incremented each time you make changes
1616#  to the chart and its templates, including the app version.
1717#  Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 3.3.1  
18+ version : 3.3.2  
1919
2020#  This is the version number of the application being deployed. This version number should be
2121#  incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 22{{- $fullName := include "opensearch.serviceName" . -}} 
33{{- $servicePort := .Values.httpPort -}} 
44{{- $ingressPath := .Values.ingress.path -}} 
5+ {{- $ingressPathType := .Values.ingress.pathType -}} 
56{{- $ingressApiIsStable := eq (include "opensearch.ingress.isStable" .) "true" -}} 
67{{- $ingressSupportsIngressClassName := eq (include "opensearch.ingress.supportsIngressClassName" .) "true" -}} 
78{{- if semverCompare ">=1.19-0" .Capabilities.KubeVersion.GitVersion -}} 
4445      http :
4546        paths :
4647          - path : {{ $ingressPath }} 
47-             pathType : Prefix 
48+             pathType : {{ $ingressPathType }} 
4849            backend :
4950              service :
5051                name : {{ $fullName }} 
Original file line number Diff line number Diff line change @@ -411,6 +411,7 @@ ingress:
411411    #  kubernetes.io/tls-acme: "true"
412412  ingressLabels : {} 
413413  path : / 
414+   pathType : Prefix 
414415  hosts :
415416    - chart-example.local 
416417  tls : [] 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments