Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add experimental auth-gateway #474

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add experimental auth-gateway
Signed-off-by: Friedrich Gonzalez <friedrichg@gmail.com>
  • Loading branch information
friedrichg committed Aug 1, 2023
commit c894ae49809b58265e68f0bc4d3a7646d08972de
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## master / unreleased

* [ENHANCEMENT] Add experimental auth-gateway
* [ENHANCEMENT] Add option to autoscale on multiple metrics and custom metrics metrics #467
* [DEPENDENCY] Update quay.io/cortexproject/cortex Docker tag to v1.15.0 #453
* [DEPENDENCY] Update quay.io/cortexproject/cortex Docker tag to v1.15.1 #456
Expand Down
23 changes: 23 additions & 0 deletions templates/auth-gateway/_helpers-auth-gateway.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

{{/*
auth-gateway fullname
*/}}
{{- define "cortex.authGatewayFullname" -}}
{{ include "cortex.fullname" . }}-auth-gateway
{{- end }}

{{/*
auth-gateway common labels
*/}}
{{- define "cortex.authGatewayLabels" -}}
{{ include "cortex.labels" . }}
app.kubernetes.io/component: auth-gateway
{{- end }}

{{/*
auth-gateway selector labels
*/}}
{{- define "cortex.authGatewaySelectorLabels" -}}
{{ include "cortex.selectorLabels" . }}
app.kubernetes.io/component: auth-gateway
{{- end }}
12 changes: 12 additions & 0 deletions templates/auth-gateway/auth-gateway-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{{- if .Values.auth_gateway.enabled }}
kind: ConfigMap
apiVersion: v1
metadata:
name: {{ include "cortex.authGatewayFullname" . }}
namespace: {{ .Release.Namespace }}
labels:
{{- include "cortex.authGatewayLabels" . | nindent 4 }}
data:
configuration.yaml: |-
{{- tpl (toYaml .configuration) $ | nindent 4 }}
{{- end }}
104 changes: 104 additions & 0 deletions templates/auth-gateway/auth-gateway-dep.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
{{- if .Values.auth_gateway.enabled }}
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "cortex.authGatewayFullname" . }}
namespace: {{ .Release.Namespace }}
labels:
{{- include "cortex.authGatewayLabels" . | nindent 4 }}
annotations:
{{- toYaml .Values.auth_gateway.annotations | nindent 4 }}
spec:
{{- if not .Values.auth_gateway.autoscaling.enabled }}
replicas: {{ .Values.auth_gateway.replicas }}
{{- end }}
selector:
matchLabels:
{{- include "cortex.authGatewaySelectorLabels" . | nindent 6 }}
strategy:
{{- toYaml .Values.auth_gateway.strategy | nindent 4 }}
template:
metadata:
labels:
{{- include "cortex.authGatewayLabels" . | nindent 8 }}
{{- with .Values.auth_gateway.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
annotations:
checksum/config: {{ include (print $.Template.BasePath "/auth-gateway/auth-gateway-config.yaml") . | sha256sum }}
{{- with .Values.auth_gateway.podAnnotations }}
{{- toYaml . | nindent 8 }}
{{- end }}
spec:
serviceAccountName: {{ .Values.auth_gateway.serviceAccount.name | default (include "cortex.serviceAccountName" . ) }}
{{- if .Values.auth_gateway.priorityClassName }}
priorityClassName: {{ .Values.auth_gateway.priorityClassName }}
{{- end }}
{{- if .Values.auth_gateway.securityContext.enabled }}
securityContext: {{- omit .Values.auth_gateway.securityContext "enabled" | toYaml | nindent 8 }}
{{- end }}
initContainers:
{{- toYaml .Values.auth_gateway.initContainers | nindent 8 }}
{{- if .Values.image.pullSecrets }}
imagePullSecrets:
{{- range .Values.image.pullSecrets }}
- name: {{ . }}
{{- end }}
{{- end }}
containers:
- name: auth-gateway
image: "{{ .Values.auth_gateway.image.repository }}:{{ .Values.auth_gateway.image.tag }}"
imagePullPolicy: {{ .Values.auth_gateway.image.pullPolicy }}
{{- if .Values.auth_gateway.extraArgs }}
args:
{{- range $key, $value := .Values.auth_gateway.extraArgs }}
- "-{{ $key }}={{ $value }}"
{{- end }}
{{- end }}
volumeMounts:
{{- if .Values.auth_gateway.extraVolumeMounts }}
{{- toYaml .Values.auth_gateway.extraVolumeMounts | nindent 12}}
{{- end }}
- name: config
mountPath: /etc/auth-gateway
ports:
- name: http-metrics
containerPort: {{ .Values.auth_gateway.http_listen_port }}
protocol: TCP
startupProbe:
{{- toYaml .Values.auth_gateway.startupProbe | nindent 12 }}
livenessProbe:
{{- toYaml .Values.auth_gateway.livenessProbe | nindent 12 }}
readinessProbe:
{{- toYaml .Values.auth_gateway.readinessProbe | nindent 12 }}
resources:
{{- toYaml .Values.auth_gateway.resources | nindent 12 }}
{{- if .Values.auth_gateway.containerSecurityContext.enabled }}
securityContext: {{- omit .Values.auth_gateway.containerSecurityContext "enabled" | toYaml | nindent 12 }}
{{- end }}
{{- if .Values.auth_gateway.env }}
env:
{{- toYaml .Values.auth_gateway.env | nindent 12 }}
{{- end }}
{{- if .Values.auth_gateway.extraContainers }}
{{- toYaml .Values.auth_gateway.extraContainers | nindent 8}}
{{- end }}
nodeSelector:
{{- toYaml .Values.auth_gateway.nodeSelector | nindent 8 }}
{{- if .Values.auth_gateway.topologySpreadConstraints }}
topologySpreadConstraints:
{{- toYaml .Values.auth_gateway.topologySpreadConstraints | nindent 8}}
{{- end }}
affinity:
{{- toYaml .Values.auth_gateway.affinity | nindent 8 }}
tolerations:
{{- toYaml .Values.auth_gateway.tolerations | nindent 8 }}
terminationGracePeriodSeconds: {{ .Values.auth_gateway.terminationGracePeriodSeconds }}
volumes:
- name: config
configMap:
name: {{ template "cortex.fullname" . }}-auth-gateway
{{- if .Values.auth_gateway.extraVolumes }}
{{- toYaml .Values.auth_gateway.extraVolumes | nindent 8}}
{{- end }}
{{- end }}
42 changes: 42 additions & 0 deletions templates/auth-gateway/auth-gateway-hpa.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{{- if and .Values.auth_gateway.enabled .Values.auth_gateway.autoscaling.enabled }}
{{- with .Values.auth_gateway.autoscaling -}}
apiVersion: {{ include "cortex.hpaVersion" $ }}
kind: HorizontalPodAutoscaler
metadata:
name: {{ include "cortex.authGatewayFullname" $ }}
namespace: {{ $.Release.Namespace }}
labels:
{{- include "cortex.authGatewayLabels" $ | nindent 4 }}
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: {{ include "cortex.authGatewayFullname" $ }}
minReplicas: {{ .minReplicas }}
maxReplicas: {{ .maxReplicas }}
metrics:
{{- with .targetMemoryUtilizationPercentage }}
- type: Resource
resource:
name: memory
target:
type: Utilization
averageUtilization: {{ . }}
{{- end }}
{{- with .targetCPUUtilizationPercentage }}
- type: Resource
resource:
name: cpu
target:
type: Utilization
averageUtilization: {{ . }}
{{- end }}
{{- with .extraMetrics }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with .behavior }}
behavior:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}
{{- end }}
40 changes: 40 additions & 0 deletions templates/auth-gateway/auth-gateway-ingress.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{{- if and .Values.ingress.enabled .Values.auth_gateway.enabled -}}
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ include "cortex.authGatewayFullname" . }}
namespace: {{ .Release.Namespace }}
labels:
{{- include "cortex.authGatewayLabels" . | nindent 4 }}
annotations:
{{- toYaml .Values.ingress.annotations | nindent 4 }}
spec:
{{- if .Values.ingress.ingressClass.enabled }}
ingressClassName: {{ .Values.ingress.ingressClass.name }}
{{- end }}
{{- if .Values.ingress.tls }}
tls:
{{- range .Values.ingress.tls }}
- hosts:
{{- range .hosts }}
- {{ . | quote }}
{{- end }}
secretName: {{ .secretName }}
{{- end }}
{{- end }}
rules:
{{- range .Values.ingress.hosts }}
- host: {{ .host | quote }}
http:
paths:
{{- range .paths }}
- path: {{ . }}
pathType: "Prefix"
backend:
service:
name: {{ include "cortex.authGatewayFullname" $ }}
port:
number: {{ $.Values.auth_gateway.http_listen_port }}
{{- end }}
{{- end }}
{{- end }}
14 changes: 14 additions & 0 deletions templates/auth-gateway/auth-gateway-poddisruptionbudget.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{{- if and (.Values.auth_gateway.enabled) (gt (int .Values.auth_gateway.replicas) 1) (.Values.auth_gateway.podDisruptionBudget) }}
apiVersion: {{ include "cortex.pdbVersion" . }}
kind: PodDisruptionBudget
metadata:
name: {{ include "cortex.authGatewayFullname" . }}
namespace: {{ .Release.Namespace }}
labels:
{{- include "cortex.authGatewayLabels" . | nindent 4 }}
spec:
selector:
matchLabels:
{{- include "cortex.authGatewaySelectorLabels" . | nindent 6 }}
{{- toYaml .Values.auth_gateway.podDisruptionBudget | nindent 2 }}
{{- end }}
23 changes: 23 additions & 0 deletions templates/auth-gateway/auth-gateway-svc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{{- if .Values.auth_gateway.enabled }}
apiVersion: v1
kind: Service
metadata:
name: {{ include "cortex.authGatewayFullname" . }}
namespace: {{ .Release.Namespace }}
labels:
{{- include "cortex.authGatewayLabels" . | nindent 4 }}
{{- with .Values.auth_gateway.service.labels }}
{{- toYaml . | nindent 4 }}
{{- end }}
annotations:
{{- toYaml .Values.auth_gateway.service.annotations | nindent 4 }}
spec:
type: {{ .Values.auth_gateway.service.type }}
ports:
- port: {{ .Values.auth_gateway.http_listen_port }}
protocol: TCP
name: http-metrics
targetPort: http-metrics
selector:
{{- include "cortex.authGatewaySelectorLabels" . | nindent 4 }}
{{- end }}