fix(charts): Fix inline comments that break linting (#3305)
* fix(charts): Fix inline comments that break linting * vaultwarden fixes
This commit is contained in:
@@ -12,7 +12,9 @@ podSecurityContext:
|
|||||||
runAsGroup: 0
|
runAsGroup: 0
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CONTEXT_PATH: # "url-base"
|
# -- sets the context path parameter
|
||||||
|
# Example: "url-base"
|
||||||
|
CONTEXT_PATH:
|
||||||
JAVA_OPTS:
|
JAVA_OPTS:
|
||||||
|
|
||||||
service:
|
service:
|
||||||
|
|||||||
@@ -16,7 +16,8 @@ secretEnv:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
# -- Override the location where deCONZ looks for the RaspBee/Conbee device.
|
# -- Override the location where deCONZ looks for the RaspBee/Conbee device.
|
||||||
DECONZ_DEVICE: "" # /dev/ttyUSB0
|
# Example: /dev/ttyUSB0
|
||||||
|
DECONZ_DEVICE: ""
|
||||||
DECONZ_UPNP: 0
|
DECONZ_UPNP: 0
|
||||||
DECONZ_START_VERBOSE: 0
|
DECONZ_START_VERBOSE: 0
|
||||||
# -- Enable VNC access to the container to view the deCONZ ZigBee mesh
|
# -- Enable VNC access to the container to view the deCONZ ZigBee mesh
|
||||||
|
|||||||
@@ -107,7 +107,7 @@ config:
|
|||||||
boltdb_shipper:
|
boltdb_shipper:
|
||||||
active_index_directory: /data/loki/boltdb-shipper-active
|
active_index_directory: /data/loki/boltdb-shipper-active
|
||||||
cache_location: /data/loki/boltdb-shipper-cache
|
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
|
shared_store: filesystem
|
||||||
filesystem:
|
filesystem:
|
||||||
directory: /data/loki/chunks
|
directory: /data/loki/chunks
|
||||||
|
|||||||
@@ -12,8 +12,12 @@ podSecurityContext:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
ENABLE_MJPG_STREAMER: "true"
|
ENABLE_MJPG_STREAMER: "true"
|
||||||
MJPG_STREAMER_INPUT: # "-y -n -r 640x480"
|
# -- sets the Mjpg stream imput parameters
|
||||||
CAMERA_DEV: # /dev/video0
|
# Example "-y -n -r 640x480"
|
||||||
|
MJPG_STREAMER_INPUT:
|
||||||
|
# -- sets the camera dev parameters
|
||||||
|
# Example "/dev/video0"
|
||||||
|
CAMERA_DEV:
|
||||||
|
|
||||||
service:
|
service:
|
||||||
main:
|
main:
|
||||||
|
|||||||
@@ -9,9 +9,11 @@ securityContext:
|
|||||||
privileged: true
|
privileged: true
|
||||||
allowPrivilegeEscalation: true
|
allowPrivilegeEscalation: true
|
||||||
capabilities:
|
capabilities:
|
||||||
|
# RawIO is for HDDs
|
||||||
|
# SYS_ADMIN is for NVMEs
|
||||||
add:
|
add:
|
||||||
- SYS_RAWIO # HDD's
|
- SYS_RAWIO
|
||||||
- SYS_ADMIN # NVME's
|
- SYS_ADMIN
|
||||||
|
|
||||||
env:
|
env:
|
||||||
COLLECTOR_CRON_SCHEDULE: "0 0 * * *"
|
COLLECTOR_CRON_SCHEDULE: "0 0 * * *"
|
||||||
|
|||||||
@@ -297,7 +297,9 @@ mail:
|
|||||||
riotUrl: ""
|
riotUrl: ""
|
||||||
|
|
||||||
host: ""
|
host: ""
|
||||||
port: 25 # SSL: 465, STARTTLS: 587
|
# -- Sets the smtp port
|
||||||
|
# SSL: 465, STARTTLS: 587
|
||||||
|
port: 25
|
||||||
username: ""
|
username: ""
|
||||||
password: ""
|
password: ""
|
||||||
requireTransportSecurity: true
|
requireTransportSecurity: true
|
||||||
|
|||||||
@@ -5,64 +5,3 @@ ingress:
|
|||||||
main:
|
main:
|
||||||
# -- Enables or disables the ingress
|
# -- Enables or disables the ingress
|
||||||
enabled: true
|
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
|
name: vaultwardensecret
|
||||||
|
|
||||||
database:
|
database:
|
||||||
# Database type, must be one of: 'sqlite', 'mysql' or 'postgresql'.
|
# -- Database type,
|
||||||
|
# must be one of: 'sqlite', 'mysql' or 'postgresql'.
|
||||||
type: 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
|
wal: true
|
||||||
## URL for external databases (mysql://user:pass@host:port or postgresql://user:pass@host:port).
|
## URL for external databases (mysql://user:pass@host:port or postgresql://user:pass@host:port).
|
||||||
# url: ""
|
# url: ""
|
||||||
@@ -44,12 +46,14 @@ database:
|
|||||||
|
|
||||||
# Set Bitwarden_rs application variables
|
# Set Bitwarden_rs application variables
|
||||||
vaultwarden:
|
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
|
allowSignups: true
|
||||||
## Whitelist domains allowed to sign-up. 'allowSignups' is ignored if set.
|
## Whitelist domains allowed to sign-up. 'allowSignups' is ignored if set.
|
||||||
# signupDomains:
|
# signupDomains:
|
||||||
# - domain.tld
|
# - 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
|
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.
|
# 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
|
requireEmail: false
|
||||||
|
|||||||
Reference in New Issue
Block a user