Remove unused env vars from collab k8s manifest
This commit is contained in:
parent
5447f63e9d
commit
38bdf7ad92
2 changed files with 0 additions and 34 deletions
|
@ -65,31 +65,6 @@ spec:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: database
|
name: database
|
||||||
key: url
|
key: url
|
||||||
- name: SESSION_SECRET
|
|
||||||
valueFrom:
|
|
||||||
secretKeyRef:
|
|
||||||
name: session
|
|
||||||
key: secret
|
|
||||||
- name: GITHUB_APP_ID
|
|
||||||
valueFrom:
|
|
||||||
secretKeyRef:
|
|
||||||
name: github
|
|
||||||
key: appId
|
|
||||||
- name: GITHUB_CLIENT_ID
|
|
||||||
valueFrom:
|
|
||||||
secretKeyRef:
|
|
||||||
name: github
|
|
||||||
key: clientId
|
|
||||||
- name: GITHUB_CLIENT_SECRET
|
|
||||||
valueFrom:
|
|
||||||
secretKeyRef:
|
|
||||||
name: github
|
|
||||||
key: clientSecret
|
|
||||||
- name: GITHUB_PRIVATE_KEY
|
|
||||||
valueFrom:
|
|
||||||
secretKeyRef:
|
|
||||||
name: github
|
|
||||||
key: privateKey
|
|
||||||
- name: API_TOKEN
|
- name: API_TOKEN
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
|
@ -101,13 +76,6 @@ spec:
|
||||||
value: ${RUST_LOG}
|
value: ${RUST_LOG}
|
||||||
- name: LOG_JSON
|
- name: LOG_JSON
|
||||||
value: "true"
|
value: "true"
|
||||||
- name: HONEYCOMB_DATASET
|
|
||||||
value: "collab"
|
|
||||||
- name: HONEYCOMB_API_KEY
|
|
||||||
valueFrom:
|
|
||||||
secretKeyRef:
|
|
||||||
name: honeycomb
|
|
||||||
key: apiKey
|
|
||||||
securityContext:
|
securityContext:
|
||||||
capabilities:
|
capabilities:
|
||||||
# FIXME - Switch to the more restrictive `PERFMON` capability.
|
# FIXME - Switch to the more restrictive `PERFMON` capability.
|
||||||
|
|
|
@ -28,8 +28,6 @@ pub struct Config {
|
||||||
pub database_url: String,
|
pub database_url: String,
|
||||||
pub api_token: String,
|
pub api_token: String,
|
||||||
pub invite_link_prefix: String,
|
pub invite_link_prefix: String,
|
||||||
pub honeycomb_api_key: Option<String>,
|
|
||||||
pub honeycomb_dataset: Option<String>,
|
|
||||||
pub rust_log: Option<String>,
|
pub rust_log: Option<String>,
|
||||||
pub log_json: Option<bool>,
|
pub log_json: Option<bool>,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue