bc6f37f1ae
- Config file for Clair now is inside a Secret. Fixes #581. - Update helper template to use latest Helm conventions for "name" and "fullname". - Update labels to use the recommended labels by Helm. See: https://docs.helm.sh/chart_best_practices/#standard-labels - Remove service.name from values file because it is not used. Service discovery for parent charts can be made by using the "clair.fullname" template since template functions are shared between charts.
77 lines
1.8 KiB
YAML
77 lines
1.8 KiB
YAML
# Default values for clair.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
replicaCount: 1
|
|
logLevel: info
|
|
insecureTls: false
|
|
image:
|
|
repository: quay.io/coreos/clair-git
|
|
tag: latest
|
|
pullPolicy: Always
|
|
service:
|
|
type: ClusterIP
|
|
internalApiPort: 6060
|
|
externalApiPort: 6060
|
|
internalHealthPort: 6061
|
|
externalHealthPort: 6061
|
|
ingress:
|
|
enabled: false
|
|
# Used to create Ingress record (should used with service.type: ClusterIP).
|
|
hosts:
|
|
- chart-example.local
|
|
annotations:
|
|
# kubernetes.io/ingress.class: nginx
|
|
# kubernetes.io/tls-acme: "true"
|
|
tls:
|
|
# Secrets must be manually created in the namespace.
|
|
# - secretName: chart-example-tls
|
|
# hosts:
|
|
# - chart-example.local
|
|
resources:
|
|
limits:
|
|
cpu: 200m
|
|
memory: 1500Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 500Mi
|
|
config:
|
|
# postgresURI: "postgres://user:password@host:5432/postgres?sslmode=disable"
|
|
paginationKey: "XxoPtCUzrUv4JV5dS+yQ+MdW7yLEJnRMwigVY/bpgtQ="
|
|
updateInterval: 2h
|
|
notificationWebhookEndpoint: https://example.com/notify/me
|
|
enabledUpdaters:
|
|
- debian
|
|
- ubuntu
|
|
- rhel
|
|
- oracle
|
|
- alpine
|
|
enabledNamespaceDetectors:
|
|
- os-release
|
|
- lsb-release
|
|
- apt-sources
|
|
- alpine-release
|
|
- redhat-release
|
|
enabledFeatureListers:
|
|
- apk
|
|
- dpkg
|
|
- rpm
|
|
# Configuration values for the postgresql dependency.
|
|
# ref: https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md
|
|
postgresql:
|
|
# The dependant Postgres chart can be disabled, to connect to
|
|
# an existing database by defining config.postgresURI
|
|
enabled: true
|
|
|
|
imageTag: 9.6-alpine
|
|
|
|
cpu: 1000m
|
|
memory: 1Gi
|
|
# These values are hardcoded until Helm supports secrets.
|
|
# For more info see: https://github.com/kubernetes/helm/issues/2196
|
|
postgresUser: clair
|
|
postgresPassword: clair
|
|
postgresDatabase: clair
|
|
|
|
persistence:
|
|
size: 10Gi
|