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
19 changes: 15 additions & 4 deletions values-secret.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,22 @@ version: "2.0"
# Ideally you NEVER COMMIT THESE VALUES TO GIT (although if all passwords are
# automatically generated inside the vault this should not really matter)

# In order to use a the standard verison of ibm-granite/granite-3.1-8b-instruct
# you will need to do the following:
# provide your token as a value for hftoken
# NOTE: you need to add value in values-global.yaml as well
# In order to use huggingface models, you will need to
# provide your token as a value for hftoken below.

# EDB Postgres Operator requires authentication to pull images from docker.enterprisedb.com
# Register for a free trial at: https://www.enterprisedb.com/accounts/register
# Get your token from: https://www.enterprisedb.com/repos-downloads

backingStore: vault

vaultPolicies:
basicPolicy: |
length=16
rule "charset" { charset = "abcdefghijklmnopqrstuvwxyz" min-chars = 1 }
rule "charset" { charset = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" min-chars = 1 }
rule "charset" { charset = "0123456789" min-chars = 1 }

secrets:
- name: hfmodel
fields:
Expand All @@ -28,6 +35,8 @@ secrets:
fields:
- name: sa-pass
onMissingValue: generate
override: true
vaultPolicy: basicPolicy
description: mssql password for sa user
- name: azuresql
fields:
Expand All @@ -36,6 +45,8 @@ secrets:
description: server admin user for azure sql
- name: password
onMissingValue: generate
override: true
vaultPolicy: basicPolicy
description: server admin password for azure sql
- name: server
value: rag-llm-gitops.database.windows.net
Expand Down