Skip to content
This repository has been archived by the owner on Aug 22, 2022. It is now read-only.

Commit

Permalink
[homer]: update app version, switch to security context (#1726)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascaliske authored Aug 1, 2022
1 parent 54f03bc commit 526a6c7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
11 changes: 8 additions & 3 deletions charts/stable/homer/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
apiVersion: v2
appVersion: 21.09.2
appVersion: v22.07.2
description: A dead simple static HOMepage for your servER to keep your services on hand, from a simple yaml configuration file.
icon: https://raw.githubusercontent.com/bastienwirtz/homer/main/public/logo.png
home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/homer
name: homer
version: 7.3.0
version: 8.0.0
kubeVersion: ">=1.16.0-0"
sources:
- https://github.com/bastienwirtz/homer
Expand All @@ -19,4 +19,9 @@ dependencies:
annotations:
artifacthub.io/changes: |-
- kind: changed
description: Upgraded `common` chart dependency to version 4.5.0
description: Switch from env vars to security context object.
- kind: fixed
description: Upgraded app version to v22.07.2
links:
- name: GitHub Issue
url: https://github.com/k8s-at-home/charts/issues/1713
16 changes: 10 additions & 6 deletions charts/stable/homer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
image:
# -- image repository
repository: b4bz/homer
# -- image tag
tag: 21.09.2
# @default -- chart.appVersion
tag:
# -- image pull policy
pullPolicy: IfNotPresent

Expand All @@ -18,10 +18,6 @@ image:
env:
# -- Set the container timezone
TZ: UTC
# -- Specify the user ID the application will run as
UID: "911"
# -- Specify the group ID the application will run as
GID: "911"

# -- Configures service settings for the chart.
# @default -- See values.yaml
Expand All @@ -37,6 +33,14 @@ ingress:
main:
enabled: false

securityContext:
# -- Specify the user ID the application will run as
runAsUser: 1000
# -- Enable validation that the container must run as non-root user
runAsNonRoot: true
# -- Specify the group ID the application will run as
runAsGroup: 1000

# -- Configure persistence settings for the chart under this key.
# @default -- See values.yaml
persistence:
Expand Down

0 comments on commit 526a6c7

Please sign in to comment.