Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion images/nut-upsd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ENV ACTIONS= \
HEALTHCHECK CMD upsc $NAME@localhost:3493 2>&1|grep -q stale && \
killall -TERM upsmon || true

RUN echo '@edge http://dl-cdn.alpinelinux.org/alpine/edge/community' \
RUN echo '@edge http://dl-cdn.alpinelinux.org/alpine/edge/main' \
>>/etc/apk/repositories && \
apk add --no-cache dash && \
apk add --update --no-cache nut=$NUT_VERSION \
Expand Down
4 changes: 2 additions & 2 deletions k8s/helm/authelia/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ sources:
- https://github.com/instantlinux/docker-tools
- https://github.com/authelia/authelia
type: application
version: 0.1.10
appVersion: "4.39.15"
version: 0.1.11
appVersion: "4.39.19"
dependencies:
- name: chartlib
version: 0.1.8
Expand Down
6 changes: 6 additions & 0 deletions k8s/helm/authelia/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ data:
{{- end }}
policy: two_factor

# Webauthn / passkeys
webauthn:
disable: {{ not .Values.enable_webauthn }}
display_name: {{ .Values.display_name }}
enable_passkey_login: {{ .Values.enable_passkey }}

# Configuration of session cookies
session:
expiration: {{ .Values.session.expiration }}
Expand Down
3 changes: 3 additions & 0 deletions k8s/helm/authelia/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
baseDN: dc=example,dc=com
bypassDomain: monitor.example.com
bypassUser: "user:username"
display_name: Authelia Service
domains: [ example.com ]
enable_passkey: true
enable_webauthn: false
logLevel: info
mysql:
address: tcp://db00:3306
Expand Down
4 changes: 2 additions & 2 deletions k8s/helm/restic/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ sources:
- https://github.com/instantlinux/docker-tools
- https://github.com/restic/restic
type: application
version: 0.1.24
version: 0.1.25
# Remember to update restic==<ver> in values.yaml as releases are published;
# the values.yaml file is not able to reference .Chart.appVersion
appVersion: "0.18.1-r5"
appVersion: "0.18.1-r6"
dependencies:
- name: chartlib
version: 0.1.8
Expand Down
2 changes: 1 addition & 1 deletion k8s/helm/restic/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ deployment:
mkdir -p /var/log/week && tail -f -n 0 /var/log/restic.log
env:
# Edit the version in Chart.yaml to keep consistent
app_version: 0.18.1-r5
app_version: 0.18.1-r6
env: /etc/profile
tz: UTC
nodeSelector:
Expand Down
Loading