Skip to content

Commit

Permalink
Merge pull request #5 from goauthentik/rc5
Browse files Browse the repository at this point in the history
v1.0.0-RC5
  • Loading branch information
dirtycajunrice committed May 5, 2021
2 parents 560560d + 5544af4 commit 5bc6320
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# authentik

![Version: 1.0.0-RC4](https://img.shields.io/badge/Version-1.0.0--RC4-informational?style=flat-square) ![AppVersion: 2021.4.5](https://img.shields.io/badge/AppVersion-2021.4.5-informational?style=flat-square)
![Version: 1.0.0-RC5](https://img.shields.io/badge/Version-1.0.0--RC5-informational?style=flat-square) ![AppVersion: 2021.4.5](https://img.shields.io/badge/AppVersion-2021.4.5-informational?style=flat-square)

authentik is an open-source Identity Provider focused on flexibility and versatility

Expand Down
6 changes: 3 additions & 3 deletions charts/authentik/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords:
- proxy
- oauth
- authentication
version: 1.0.0-RC4
version: 1.0.0-RC5
appVersion: 2021.4.5
icon: https://raw.githubusercontent.com/BeryJu/authentik/master/web/icons/icon.svg
maintainers:
Expand All @@ -35,10 +35,10 @@ annotations:
artifacthub.io/prerelease: "true"
artifacthub.io/changes: |
- kind: fixed
description: envValueFrom indentation
description: removed lingering suffix in ingress causing a mismatch for selector
links:
- name: Github PR
url: https://github.com/goauthentik/helm/pull/4
url: https://github.com/goauthentik/helm/pull/5
artifacthub.io/license: GPL-3.0-only
artifacthub.io/links: |
- name: Github
Expand Down
2 changes: 1 addition & 1 deletion charts/authentik/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# authentik

![Version: 1.0.0-RC4](https://img.shields.io/badge/Version-1.0.0--RC4-informational?style=flat-square) ![AppVersion: 2021.4.5](https://img.shields.io/badge/AppVersion-2021.4.5-informational?style=flat-square)
![Version: 1.0.0-RC5](https://img.shields.io/badge/Version-1.0.0--RC5-informational?style=flat-square) ![AppVersion: 2021.4.5](https://img.shields.io/badge/AppVersion-2021.4.5-informational?style=flat-square)

authentik is an open-source Identity Provider focused on flexibility and versatility

Expand Down
1 change: 1 addition & 0 deletions charts/authentik/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ spec:
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
enableServiceLinks: true
containers:
- name: {{ $.Chart.Name }}
image: "{{ $.Values.image.name }}:{{ $.Values.image.tag }}"
Expand Down
5 changes: 2 additions & 3 deletions charts/authentik/templates/ingress.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{{- if .Values.ingress.enabled -}}
{{- $appSvcName := printf "%s-server" (include "common.names.fullname" .) -}}
{{- $apiIsStable := include "authentik.ingress.isStable" . -}}
apiVersion: {{ include "common.capabilities.ingress.apiVersion" . }}
kind: Ingress
Expand Down Expand Up @@ -32,11 +31,11 @@ spec:
backend:
{{- if $apiIsStable }}
service:
name: {{ $appSvcName }}
name: {{ include "common.names.fullname" $ }}
port:
name: http
{{- else }}
serviceName: {{ $appSvcName }}
serviceName: {{ include "common.names.fullname" $ }}
servicePort: 9000
{{- end }}
{{- end }}
Expand Down

0 comments on commit 5bc6320

Please sign in to comment.