Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions charts/sourcegraph/examples/external-object-storage/override.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ objectStorageEnv: &objectStorageEnv
value: https://s3.us-east-1.amazonaws.com
PRECISE_CODE_INTEL_UPLOAD_AWS_REGION:
value: us-east-1

# If using access key for authentication
PRECISE_CODE_INTEL_UPLOAD_AWS_ACCESS_KEY_ID:
secretKeyRef: # Pre-existing secret, not created by this chart
name: sourcegraph-s3-credentials
Expand All @@ -25,10 +27,19 @@ objectStorageEnv: &objectStorageEnv
name: sourcegraph-s3-credentials
key: PRECISE_CODE_INTEL_UPLOAD_AWS_SECRET_ACCESS_KEY

# If using IRSA for role-based authentication on the Kubernetes service account
# Do not set ACCESS_KEY_ID or SECRET_ACCESS_KEY; omitting them triggers fallback to IRSA
PRECISE_CODE_INTEL_UPLOAD_AWS_USE_EC2_ROLE_CREDENTIALS:
value: "true"

frontend:
env:
<<: *objectStorageEnv

preciseCodeIntel:
env:
<<: *objectStorageEnv

syntacticCodeIntel:
env:
<<: *objectStorageEnv
Loading