🔥(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 - 🎨(frontend) stop limit layout height to screen size #158
- ⚡️(CI) only e2e chrome mandatory #177 - ⚡️(CI) only e2e chrome mandatory #177
## Removed
- 🔥(helm) remove htaccess #181
## [1.1.0] - 2024-07-15 ## [1.1.0] - 2024-07-15
## Added ## Added

View File

@@ -130,9 +130,6 @@ ingress:
className: nginx className: nginx
annotations: annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod 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: ingressWS:
enabled: true enabled: true
@@ -140,9 +137,6 @@ ingressWS:
className: nginx className: nginx
annotations: annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod 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: ingressAdmin:
enabled: true enabled: true

View File

@@ -130,9 +130,6 @@ ingress:
className: nginx className: nginx
annotations: annotations:
cert-manager.io/cluster-issuer: letsencrypt 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: ingressWS:
enabled: true enabled: true
@@ -140,9 +137,6 @@ ingressWS:
className: nginx className: nginx
annotations: annotations:
cert-manager.io/cluster-issuer: letsencrypt 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: ingressAdmin:
enabled: true 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 }}