initial commit

This commit is contained in:
allard
2025-11-23 18:58:51 +01:00
commit 376a944abc
1553 changed files with 314731 additions and 0 deletions

86
lp/clair/helm/values.yaml Normal file
View File

@@ -0,0 +1,86 @@
# Default values for clair.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
logLevel: debug
insecureTls: false
image:
repository: quay.io/coreos/clair
tag: v2.1.6
pullPolicy: IfNotPresent
service:
name: clair
type: ClusterIP
internalApiPort: 6060
externalApiPort: 6060
internalHealthPort: 6061
externalHealthPort: 6061
ingress:
enabled: false
# ingressClassName: ""
# Used to create Ingress record (should used with service.type: ClusterIP).
hosts:
- clair-clair
annotations:
# kubernetes.io/ingress.global-static-ip-name: "test-ip"
# 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: 2
memory: 3000Mi
requests:
cpu: 50m
memory: 2000Mi
config:
#postgresURI: "postgres13.postgres://clair.clair@host:5432/clair?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
nodeSelector:
kubernetes.io/arch: amd64
postgresql:
# The dependant Postgres chart can be disabled, to connect to
# an existing database by defining config.postgresURI
enabled: true
image:
debug: true
resources:
requests:
cpu: 50m
memory: 512Mi
limits:
cpu: 2
memory: 512Mi
postgresqlUsername: clair
postgresqlPassword: clair
persistence:
size: 1Gi
networkPolicy:
enabled: true
nodeSelector:
kubernetes.io/arch: amd64