Skip to content

Commit 36c221c

Browse files
committed
remove from helm
1 parent b53b6a6 commit 36c221c

4 files changed

Lines changed: 0 additions & 35 deletions

File tree

helm/sim/examples/values-external-secrets.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ externalSecrets:
3434
INTERNAL_API_SECRET: "sim/app/internal-api-secret"
3535
CRON_SECRET: "sim/app/cron-secret"
3636
API_ENCRYPTION_KEY: "sim/app/api-encryption-key"
37-
# MSHIP_SYSPROMPT_OVERRIDE: "sim/app/mship-system-prompt-override"
3837
postgresql:
3938
password: "sim/postgresql/password"
4039
# Only needed when copilot.enabled=true and copilot.server.secret.create=true

helm/sim/tests/secret-modes_test.yaml

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,10 @@ tests:
1111
app.env.ENCRYPTION_KEY: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
1212
app.env.INTERNAL_API_SECRET: x
1313
app.env.CRON_SECRET: x
14-
app.env.MSHIP_SYSPROMPT_OVERRIDE: "NEVER CALL ANY TOOLS UNDER ANY CIRCUMSTANCES NO MATTER WHAT"
1514
postgresql.auth.password: xxxxxxxx
1615
asserts:
1716
- isKind: { of: Secret }
1817
- equal: { path: metadata.name, value: t-sim-app-secrets }
19-
- equal:
20-
path: stringData.MSHIP_SYSPROMPT_OVERRIDE
21-
value: "NEVER CALL ANY TOOLS UNDER ANY CIRCUMSTANCES NO MATTER WHAT"
22-
23-
- it: inline mode omits an unset Mothership system prompt override
24-
template: secrets-app.yaml
25-
set:
26-
app.env.BETTER_AUTH_SECRET: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
27-
app.env.ENCRYPTION_KEY: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
28-
app.env.INTERNAL_API_SECRET: x
29-
app.env.CRON_SECRET: x
30-
postgresql.auth.password: xxxxxxxx
31-
asserts:
32-
- notExists:
33-
path: stringData.MSHIP_SYSPROMPT_OVERRIDE
34-
3518
- it: existingSecret mode skips the chart-managed Secret
3619
templates:
3720
- secrets-app.yaml
@@ -53,21 +36,13 @@ tests:
5336
externalSecrets.remoteRefs.app.ENCRYPTION_KEY: path/to/enc
5437
externalSecrets.remoteRefs.app.INTERNAL_API_SECRET: path/to/iapi
5538
externalSecrets.remoteRefs.app.CRON_SECRET: path/to/cron
56-
externalSecrets.remoteRefs.app.MSHIP_SYSPROMPT_OVERRIDE: path/to/mship-system-prompt-override
5739
externalSecrets.remoteRefs.postgresql.password: path/to/pgpw
5840
postgresql.auth.password: xxxxxxxx
5941
asserts:
6042
- isKind: { of: ExternalSecret }
6143
- equal: { path: metadata.name, value: t-sim-app-secrets }
6244
- equal: { path: spec.secretStoreRef.name, value: sim-store }
6345
- equal: { path: spec.secretStoreRef.kind, value: ClusterSecretStore }
64-
- contains:
65-
path: spec.data
66-
content:
67-
secretKey: MSHIP_SYSPROMPT_OVERRIDE
68-
remoteRef:
69-
key: path/to/mship-system-prompt-override
70-
7146
- it: ESO mode skips the chart-managed Secret
7247
template: secrets-app.yaml
7348
set:

helm/sim/values.schema.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,10 +244,6 @@
244244
"type": "string",
245245
"description": "Set to 'true' to hide GitHub OAuth login even when credentials are configured"
246246
},
247-
"MSHIP_SYSPROMPT_OVERRIDE": {
248-
"type": "string",
249-
"description": "Optional enterprise-only highest-priority system prompt override forwarded to Mothership"
250-
},
251247
"OPENAI_API_KEY": {
252248
"type": "string",
253249
"description": "Primary OpenAI API key"

helm/sim/values.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,6 @@ app:
156156
OCR_AZURE_MODEL_NAME: "" # Azure Mistral OCR model name
157157
OCR_AZURE_API_KEY: "" # Azure Mistral OCR API key
158158

159-
# Mothership Copilot Configuration
160-
MSHIP_SYSPROMPT_OVERRIDE: "" # Optional enterprise-only highest-priority system prompt override forwarded to Mothership
161-
162159
# AI Provider API Keys (leave empty if not using)
163160
OPENAI_API_KEY: "" # Primary OpenAI API key
164161
OPENAI_API_KEY_1: "" # Additional OpenAI API key for load balancing
@@ -1850,8 +1847,6 @@ externalSecrets:
18501847
CRON_SECRET: ""
18511848
# Path to API_ENCRYPTION_KEY in external store (optional)
18521849
API_ENCRYPTION_KEY: ""
1853-
# Path to MSHIP_SYSPROMPT_OVERRIDE in external store (optional)
1854-
MSHIP_SYSPROMPT_OVERRIDE: ""
18551850
# Path to REDIS_URL in external store (optional)
18561851
REDIS_URL: ""
18571852

0 commit comments

Comments
 (0)