🔥(helm) remove htaccess

We will not use htaccess anymore,
so we can remove it from the project.
This commit is contained in:
Anthony LC
2024-08-21 16:42:15 +02:00
committed by Anthony LC
parent 543770ae63
commit 9c67c9e4d4
4 changed files with 4 additions and 21 deletions

View File

@@ -29,6 +29,10 @@ and this project adheres to
- 🎨(frontend) stop limit layout height to screen size #158
- ⚡️(CI) only e2e chrome mandatory #177
## Removed
- 🔥(helm) remove htaccess #181
## [1.1.0] - 2024-07-15
## Added

View File

@@ -130,9 +130,6 @@ ingress:
className: nginx
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
nginx.ingress.kubernetes.io/auth-type: basic
nginx.ingress.kubernetes.io/auth-secret: htaccess
nginx.ingress.kubernetes.io/auth-realm: 'Authentication Required'
ingressWS:
enabled: true
@@ -140,9 +137,6 @@ ingressWS:
className: nginx
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
nginx.ingress.kubernetes.io/auth-type: basic
nginx.ingress.kubernetes.io/auth-secret: htaccess
nginx.ingress.kubernetes.io/auth-realm: 'Authentication Required'
ingressAdmin:
enabled: true

View File

@@ -130,9 +130,6 @@ ingress:
className: nginx
annotations:
cert-manager.io/cluster-issuer: letsencrypt
nginx.ingress.kubernetes.io/auth-type: basic
nginx.ingress.kubernetes.io/auth-secret: htaccess
nginx.ingress.kubernetes.io/auth-realm: 'Authentication Required'
ingressWS:
enabled: true
@@ -140,9 +137,6 @@ ingressWS:
className: nginx
annotations:
cert-manager.io/cluster-issuer: letsencrypt
nginx.ingress.kubernetes.io/auth-type: basic
nginx.ingress.kubernetes.io/auth-secret: htaccess
nginx.ingress.kubernetes.io/auth-realm: 'Authentication Required'
ingressAdmin:
enabled: true

View File

@@ -1,9 +0,0 @@
{{ if .Values.htaccess }}
apiVersion: v1
kind: Secret
metadata:
name: htaccess
namespace: {{ .Release.Namespace | quote }}
stringData:
auth: {{ .Values.htaccess }}
{{ end }}