ignis: add basic auth via envoy SecurityPolicy
Ignis has no built-in auth; required now that ignis.fireflylab.cc is a public hostname. Plain k8s Secret (no Vault yet) holding an htpasswd hash, enforced at gateway via SecurityPolicy.
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
{{- if .Values.auth.enabled }}
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-basic-auth
|
||||
type: Opaque
|
||||
stringData:
|
||||
.htpasswd: {{ .Values.auth.htpasswd | quote }}
|
||||
---
|
||||
apiVersion: gateway.envoyproxy.io/v1alpha1
|
||||
kind: SecurityPolicy
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-basic-auth
|
||||
spec:
|
||||
targetRefs:
|
||||
- group: gateway.networking.k8s.io
|
||||
kind: HTTPRoute
|
||||
name: {{ .Release.Name }}
|
||||
basicAuth:
|
||||
users:
|
||||
name: {{ .Release.Name }}-basic-auth
|
||||
{{- end }}
|
||||
Reference in New Issue
Block a user