mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 15:39:02 +00:00
[homer]: update app version, switch to security context (#1726)
This commit is contained in:
parent
54f03bc19e
commit
526a6c79b0
@ -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
|
||||
@ -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
|
||||
|
@ -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
|
||||
|
||||
@ -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
|
||||
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user