forked from uengine-oss/process-gpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecrets-example.yaml
More file actions
97 lines (89 loc) · 2.53 KB
/
secrets-example.yaml
File metadata and controls
97 lines (89 loc) · 2.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# ⚠️ 실제 값으로 변경하여 사용하세요
apiVersion: v1
kind: Secret
metadata:
name: openai-secret
type: Opaque
stringData:
OPENAI_API_KEY: "sk-your-actual-openai-key"
---
apiVersion: v1
kind: Secret
metadata:
name: my-secrets
type: Opaque
stringData:
DB_HOST: "your-db-host"
DB_NAME: "your-db-name"
DB_PASSWORD: "your-db-password"
DB_PORT: "your-db-port"
DB_USER: "your-db-user"
JWT_SECRET: "your-actual-jwt-secret"
SERVICE_ROLE_KEY: "your-actual-supabase-service-role-key"
SMTP_PASSWORD: "your-smtp-password"
SUPABASE_KEY: "your-actual-supabase-anon-key"
UPSTAGE_API_KEY: "your-actual-upstage-api-key"
---
apiVersion: v1
kind: Secret
metadata:
name: langsmith-secrets
type: Opaque
stringData:
LANGSMITH_API_KEY: "your-langsmith-api-key"
LANGSMITH_PROJECT: "your-langsmith-project-name"
---
apiVersion: v1
kind: Secret
metadata:
name: google-credentials
type: Opaque
stringData:
credentials.json: |
{
"type": "service_account",
"project_id": "your-google-project-id",
"private_key_id": "your-private-key-id",
"private_key": "-----BEGIN PRIVATE KEY-----\nyour-private-key-content\n-----END PRIVATE KEY-----\n",
"client_email": "your-service-account@your-project.iam.gserviceaccount.com",
"client_id": "your-client-id",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": "https://www.robot/v1/metadata/x509/your-service-account%40your-project.iam.gserviceaccount.com",
"universe_domain": "googleapis.com"
}
---
apiVersion: v1
kind: Secret
metadata:
name: mem-zero-secret
type: Opaque
stringData:
MEM_ZERO_API_KEY: "your-mem-zero-api-key"
---
apiVersion: v1
kind: Secret
metadata:
name: perplexity-secret
type: Opaque
stringData:
PERPLEXITY_API_KEY: "your-perplexity-api-key"
---
apiVersion: v1
kind: Secret
metadata:
name: firebase-credentials
type: Opaque
stringData:
firebase-credentials.json: |
{
"type": "service_account",
"project_id": "your-firebase-project-id",
"private_key_id": "your-private-key-id",
"private_key": "-----BEGIN PRIVATE KEY-----\nyour-private-key-content\n-----END PRIVATE KEY-----\n",
"client_email": "your-service-account@your-project.iam.gserviceaccount.com",
"client_id": "your-client-id",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token"
}