2254a39d77
- converted the artifact-keeper helm-chart into kustomization manifests - converted postgres to cnpg - moved secrets to vault
21 lines
558 B
YAML
21 lines
558 B
YAML
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: config
|
|
namespace: artifact-keeper
|
|
labels:
|
|
app.kubernetes.io/name: artifact-keeper
|
|
app.kubernetes.io/instance: ak
|
|
app.kubernetes.io/part-of: artifact-keeper
|
|
data:
|
|
BIND_ADDRESS: "0.0.0.0:8080"
|
|
LOG_LEVEL: "info,artifact_keeper=debug"
|
|
STORAGE_BACKEND: "s3"
|
|
MEILISEARCH_URL: "http://meilisearch:7700"
|
|
TRIVY_URL: "http://trivy:8090"
|
|
DEPENDENCY_TRACK_URL: "http://dtrack:8080"
|
|
DEPENDENCY_TRACK_ENABLED: "true"
|
|
SCAN_WORKSPACE_PATH: "/scan-workspace"
|
|
PLUGINS_DIR: "/data/plugins"
|