fix(charts): Fix inline comments that break linting (#3305)
* fix(charts): Fix inline comments that break linting * vaultwarden fixes
This commit is contained in:
committed by
GitHub
parent
54e805ab4d
commit
c9bb8128aa
@@ -12,7 +12,9 @@ podSecurityContext:
|
||||
runAsGroup: 0
|
||||
|
||||
env:
|
||||
CONTEXT_PATH: # "url-base"
|
||||
# -- sets the context path parameter
|
||||
# Example: "url-base"
|
||||
CONTEXT_PATH:
|
||||
JAVA_OPTS:
|
||||
|
||||
service:
|
||||
|
||||
@@ -16,7 +16,8 @@ secretEnv:
|
||||
|
||||
env:
|
||||
# -- Override the location where deCONZ looks for the RaspBee/Conbee device.
|
||||
DECONZ_DEVICE: "" # /dev/ttyUSB0
|
||||
# Example: /dev/ttyUSB0
|
||||
DECONZ_DEVICE: ""
|
||||
DECONZ_UPNP: 0
|
||||
DECONZ_START_VERBOSE: 0
|
||||
# -- Enable VNC access to the container to view the deCONZ ZigBee mesh
|
||||
|
||||
@@ -107,7 +107,7 @@ config:
|
||||
boltdb_shipper:
|
||||
active_index_directory: /data/loki/boltdb-shipper-active
|
||||
cache_location: /data/loki/boltdb-shipper-cache
|
||||
cache_ttl: 24h # Can be increased for faster performance over longer query periods, uses more disk space
|
||||
cache_ttl: 24h
|
||||
shared_store: filesystem
|
||||
filesystem:
|
||||
directory: /data/loki/chunks
|
||||
|
||||
@@ -12,8 +12,12 @@ podSecurityContext:
|
||||
|
||||
env:
|
||||
ENABLE_MJPG_STREAMER: "true"
|
||||
MJPG_STREAMER_INPUT: # "-y -n -r 640x480"
|
||||
CAMERA_DEV: # /dev/video0
|
||||
# -- sets the Mjpg stream imput parameters
|
||||
# Example "-y -n -r 640x480"
|
||||
MJPG_STREAMER_INPUT:
|
||||
# -- sets the camera dev parameters
|
||||
# Example "/dev/video0"
|
||||
CAMERA_DEV:
|
||||
|
||||
service:
|
||||
main:
|
||||
|
||||
@@ -9,9 +9,11 @@ securityContext:
|
||||
privileged: true
|
||||
allowPrivilegeEscalation: true
|
||||
capabilities:
|
||||
# RawIO is for HDDs
|
||||
# SYS_ADMIN is for NVMEs
|
||||
add:
|
||||
- SYS_RAWIO # HDD's
|
||||
- SYS_ADMIN # NVME's
|
||||
- SYS_RAWIO
|
||||
- SYS_ADMIN
|
||||
|
||||
env:
|
||||
COLLECTOR_CRON_SCHEDULE: "0 0 * * *"
|
||||
|
||||
@@ -297,7 +297,9 @@ mail:
|
||||
riotUrl: ""
|
||||
|
||||
host: ""
|
||||
port: 25 # SSL: 465, STARTTLS: 587
|
||||
# -- Sets the smtp port
|
||||
# SSL: 465, STARTTLS: 587
|
||||
port: 25
|
||||
username: ""
|
||||
password: ""
|
||||
requireTransportSecurity: true
|
||||
|
||||
@@ -5,64 +5,3 @@ ingress:
|
||||
main:
|
||||
# -- Enables or disables the ingress
|
||||
enabled: true
|
||||
|
||||
# -- Make this the primary ingress (used in probes, notes, etc...).
|
||||
# If there is more than 1 ingress, make sure that only 1 ingress is marked as primary.
|
||||
primary: true
|
||||
|
||||
# -- Override the name suffix that is used for this ingress.
|
||||
nameOverride:
|
||||
|
||||
# -- List of middlewares in the traefikmiddlewares k8s namespace to add automatically
|
||||
# Creates an annotation with the middlewares and appends k8s and traefik namespaces to the middleware names
|
||||
# Primarily used for TrueNAS SCALE to add additional (seperate) middlewares without exposing them to the end-user
|
||||
fixedMiddlewares:
|
||||
- chain-basic
|
||||
|
||||
# -- Additional List of middlewares in the traefikmiddlewares k8s namespace to add automatically
|
||||
# Creates an annotation with the middlewares and appends k8s and traefik namespaces to the middleware names
|
||||
middlewares: []
|
||||
annotationsList: []
|
||||
# - name: somename
|
||||
# value: somevalue
|
||||
# -- Provide additional annotations which may be required.
|
||||
annotations:
|
||||
{}
|
||||
# kubernetes.io/ingress.class: nginx
|
||||
# kubernetes.io/tls-acme: "true"
|
||||
|
||||
labelsList: []
|
||||
# - name: somename
|
||||
# value: somevalue
|
||||
# -- Set labels on the deployment/statefulset/daemonset
|
||||
# -- Provide additional labels which may be required.
|
||||
# -- Provide additional labels which may be required.
|
||||
labels: {}
|
||||
|
||||
# -- Set the ingressClass that is used for this ingress.
|
||||
# Requires Kubernetes >=1.19
|
||||
ingressClassName: # "nginx"
|
||||
|
||||
## Configure the hosts for the ingress
|
||||
hosts:
|
||||
- # -- Host address. Helm template can be passed.
|
||||
host: chart-example.local
|
||||
## Configure the paths for the host
|
||||
paths:
|
||||
- # -- Path. Helm template can be passed.
|
||||
path: /
|
||||
# -- Ignored if not kubeVersion >= 1.14-0
|
||||
pathType: Prefix
|
||||
service:
|
||||
# -- Overrides the service name reference for this path
|
||||
name:
|
||||
# -- Overrides the service port reference for this path
|
||||
targetPort:
|
||||
|
||||
# -- Configure TLS for the ingress. Both secretName and hosts can process a Helm template.
|
||||
tls: []
|
||||
# - secretName: chart-example-tls
|
||||
# -- Create a secret from a GUI selected TrueNAS SCALE certificate
|
||||
# scaleCert: true
|
||||
# hosts:
|
||||
# - chart-example.local
|
||||
|
||||
@@ -31,9 +31,11 @@ envFrom:
|
||||
name: vaultwardensecret
|
||||
|
||||
database:
|
||||
# Database type, must be one of: 'sqlite', 'mysql' or 'postgresql'.
|
||||
# -- Database type,
|
||||
# must be one of: 'sqlite', 'mysql' or 'postgresql'.
|
||||
type: postgresql
|
||||
# Enable DB Write-Ahead-Log for SQLite, disabled for other databases. https://github.com/dani-garcia/bitwarden_rs/wiki/Running-without-WAL-enabled
|
||||
# -- Enable DB Write-Ahead-Log for SQLite,
|
||||
# disabled for other databases. https://github.com/dani-garcia/bitwarden_rs/wiki/Running-without-WAL-enabled
|
||||
wal: true
|
||||
## URL for external databases (mysql://user:pass@host:port or postgresql://user:pass@host:port).
|
||||
# url: ""
|
||||
@@ -44,12 +46,14 @@ database:
|
||||
|
||||
# Set Bitwarden_rs application variables
|
||||
vaultwarden:
|
||||
# Allow any user to sign-up: https://github.com/dani-garcia/bitwarden_rs/wiki/Disable-registration-of-new-users
|
||||
# -- Allow any user to sign-up
|
||||
# see: https://github.com/dani-garcia/bitwarden_rs/wiki/Disable-registration-of-new-users
|
||||
allowSignups: true
|
||||
## Whitelist domains allowed to sign-up. 'allowSignups' is ignored if set.
|
||||
# signupDomains:
|
||||
# - domain.tld
|
||||
# Verify e-mail before login is enabled. SMTP must be enabled.
|
||||
# -- Verify e-mail before login is enabled.
|
||||
# SMTP must be enabled.
|
||||
verifySignup: false
|
||||
# When a user logs in an email is required to be sent. If sending the email fails the login attempt will fail. SMTP must be enabled.
|
||||
requireEmail: false
|
||||
|
||||
Reference in New Issue
Block a user