-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
39 lines (32 loc) · 1.53 KB
/
env.example
File metadata and controls
39 lines (32 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Suppline Configuration
# API Key for authentication
SUPPLINE_API_KEY=your-api-key-here
# Cosign attestation key (base64 encoded)
ATTESTATION_KEY=<base64 -w0 encoded private key>
ATTESTATION_KEY_PASSWORD=your-signing-key-password-here
# Registry credentials (used via Go templating in suppline.yml)
DOCKER_USERNAME=your-docker-username
DOCKER_PASSWORD=your-docker-token
# Suppline registry (where images are synced to)
SUPPLINE_REGISTRY_URL=docker.io/myprivateregistry
SUPPLINE_REGISTRY_USERNAME=myprivateregistry
SUPPLINE_REGISTRY_PASSWORD=dckr_pat_12345
# Additional registry credentials (if needed)
#CRUNCHYDATA_USERNAME=your-crunchydata-username
#CRUNCHYDATA_TOKEN=your-crunchydata-access-token
# Local development settings
#LOG_LEVEL=debug
#SQLITE_PATH=./data/suppline.db
#SUPPLINE_CONFIG=suppline.yml
#TRIVY_SERVER_ADDR=localhost:4954
# Note: When running with docker-compose, SCANNER_SERVER_ADDR=trivy:4954 is used instead
#STATE_STORE_TYPE=sqlite
DOCKER_BUILDKIT=1
# Optional: clusterstate-agent compose deploy helper defaults
# CLUSTER_NAME=prod-eu-1 #optional, will be auto-detected from kubectl context if not set
# SUPPLINE_URL=https://suppline.il1.socialhub.io/
# HELM_RELEASE_NAME=suppline-clusterstate-agent #optional, defaults to "clusterstate-agent"
# HELM_NAMESPACE=suppline
# WATCH_FLUSH_INTERVAL=15s #optional, defaults to "15s"
# CLUSTERSTATE_AGENT_IMAGE_REPOSITORY=daimon666/suppline-clusterstate-agent #optional, defaults to "daimon666/suppline-clusterstate-agent"
# CLUSTERSTATE_AGENT_IMAGE_TAG=latest #optional, defaults to "latest"