15 lines
395 B
YAML
15 lines
395 B
YAML
|
|
# Copy to secret.yaml (gitignored), set a real secret_key, and apply once:
|
||
|
|
# kubectl apply -f secret.yaml
|
||
|
|
# The secret already exists in the cluster; this file only documents its shape.
|
||
|
|
apiVersion: v1
|
||
|
|
kind: Secret
|
||
|
|
metadata:
|
||
|
|
name: searxng-1723974683-config
|
||
|
|
namespace: default
|
||
|
|
type: Opaque
|
||
|
|
stringData:
|
||
|
|
settings.yml: |
|
||
|
|
server:
|
||
|
|
secret_key: CHANGE-ME
|
||
|
|
use_default_settings: true
|