Skip to content
This repository has been archived by the owner on Jan 26, 2023. It is now read-only.

Commit

Permalink
Merge pull request #21 from qameta/AED-1073
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-ryoo authored Jan 11, 2022
2 parents 05768ae + efa1e9a commit 0b3d4fa
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

# Charts
charts/**/charts

charts/**/requirements.lock
# Configs
configs
8 changes: 5 additions & 3 deletions charts/allure-ee/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1

name: allure-ee
version: 1.9.4
version: 1.9.5

appVersion: 3.181.5

Expand All @@ -14,5 +14,7 @@ sources:
- https://hub.docker.com/r/allure/allure-report

maintainers:
- name: eroshenkoam
email: [email protected]
- name: eroshenkoam
email: [email protected]
- name: Andrey Ryoo
email: [email protected]
19 changes: 11 additions & 8 deletions charts/allure-ee/templates/ingress.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{- if .Values.ingress.host }}
apiVersion: extensions/v1beta1
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ template "allure-ee.fullname" . }}
Expand All @@ -14,13 +14,16 @@ metadata:
{{- end }}
spec:
rules:
- host: {{ .Values.ingress.host | quote }}
http:
paths:
- path: /
backend:
serviceName: {{ template "allure-ee.gateway.fullname" . }}
servicePort: {{ .Values.gateway.service.port }}
- host: {{ .Values.ingress.host | quote }}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: {{ template "allure-ee.gateway.fullname" . }}
port:
number: {{ .Values.gateway.service.port }}
{{- if .Values.ingress.tls }}
tls:
{{ toYaml .Values.ingress.tls | indent 4 }}
Expand Down
2 changes: 1 addition & 1 deletion charts/allure-ee/templates/uaa-dep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ spec:
secretKeyRef:
name: {{ $secret_name }}
key: "username"
- name: "ALLURE_SECURITY_USER_PASSWORD"
- name: "ALLURE_CRYPTO_PASSWORD"
valueFrom:
secretKeyRef:
name: {{ $secret_name }}
Expand Down
2 changes: 1 addition & 1 deletion charts/allure-ee/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 3.181.5
version: 3.188.3

username: admin
password: admin
Expand Down

0 comments on commit 0b3d4fa

Please sign in to comment.