-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add securityContext. Remove of Ingress deployment in values.yaml - Update Ingress rules apiVersion - Update README and deployment documentation - Update condition for OpenShift Route
- Loading branch information
Showing
11 changed files
with
171 additions
and
466 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 0 additions & 10 deletions
10
charts/tesk/templates/ingress/controller/default-server-secret.yaml
This file was deleted.
Oops, something went wrong.
62 changes: 0 additions & 62 deletions
62
charts/tesk/templates/ingress/controller/ingress-rbac.yaml
This file was deleted.
Oops, something went wrong.
44 changes: 0 additions & 44 deletions
44
charts/tesk/templates/ingress/controller/nginx-ingress-deployment.yaml
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
charts/tesk/templates/ingress/controller/nginx-ingress-lb.yaml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,29 @@ | ||
{{ if .Values.ingress.active }} | ||
apiVersion: extensions/v1beta1 | ||
{{ if .Values.ingress.rules }} | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
metadata: | ||
name: ingress-rules {{ if .Values.ingress.annotations }} | ||
annotations: | ||
{{- range $key, $value := .Values.ingress.annotations }} | ||
{{ $key }}: {{ $value | quote }} | ||
{{- end }} {{ end }} | ||
spec: {{ if .Values.ingress.tls_secret_name }} | ||
spec: | ||
ingressClassName: {{ .Values.ingress.ingressClassName }} | ||
{{ if .Values.ingress.tls_secret_name }} | ||
tls: | ||
- hosts: | ||
- {{ .Values.host_name }} | ||
secretName: {{ .Values.ingress.tls_secret_name }} {{ end }} | ||
secretName: {{ .Values.ingress.tls_secret_name }} | ||
{{ end }} | ||
rules: | ||
- host: {{ .Values.host_name }} | ||
http: | ||
paths: | ||
- path: {{ .Values.ingress.path }} | ||
pathType: Exact | ||
backend: | ||
serviceName: tesk-api | ||
servicePort: {{ .Values.tesk.port }} | ||
service: | ||
name: tesk-api | ||
port: | ||
number: {{ .Values.tesk.port }} | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.