Skip to content

Commit

Permalink
SRX-FXT6AY - upgrade apiVersion for helm ingress (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
medo-freiheit authored Mar 31, 2022
1 parent ad9a20f commit ad44ba4
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
4 changes: 2 additions & 2 deletions charts/kuberpult/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.4.12
version: 0.4.13

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.4.12"
appVersion: "0.4.13"

maintainers:
- name: medo-freiheit
Expand Down
18 changes: 12 additions & 6 deletions charts/kuberpult/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#along with kuberpult. If not, see <http://www.gnu.org/licenses/>.

#Copyright 2021 freiheit.com
apiVersion: networking.k8s.io/v1beta1
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
Expand All @@ -28,13 +28,19 @@ spec:
paths:
{{- if .Values.ingress.exposeReleaseEndpoint }}
- path: /release
pathType: ImplementationSpecific
backend:
serviceName: kuberpult-cd-service
servicePort: http
service:
name: kuberpult-cd-service
port:
name: http
{{- end }}
- backend:
serviceName: kuberpult-frontend-service
servicePort: http
- pathType: ImplementationSpecific
backend:
service:
name: kuberpult-frontend-service
port:
name: http
tls:
- hosts:
- {{ default .Values.ingress.domainName .Values.ingress.tls.host | quote}}
Expand Down
2 changes: 1 addition & 1 deletion charts/kuberpult/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ git:
branch: "master"

hub: europe-west3-docker.pkg.dev/fdc-public-docker-registry/kuberpult
tag: "0.4.10"
tag: "0.4.13"

log:
# Possible values are "gcp" for a gcp-optimized format and "default" for json
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.12
0.4.13

0 comments on commit ad44ba4

Please sign in to comment.