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

SRX-FXT6AY - upgrade apiVersion for helm ingress #121

Merged
merged 2 commits into from
Mar 31, 2022
Merged
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
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