Add Searxng.
This commit is contained in:
parent
e9dae245c7
commit
83db39c83f
7 changed files with 254 additions and 0 deletions
|
@ -13,6 +13,7 @@ resources:
|
||||||
- ./radarr/ks.yaml
|
- ./radarr/ks.yaml
|
||||||
- ./recyclarr/ks.yaml
|
- ./recyclarr/ks.yaml
|
||||||
- ./sabnzbd/ks.yaml
|
- ./sabnzbd/ks.yaml
|
||||||
|
- ./searxng/ks.yaml
|
||||||
- ./sonarr/ks.yaml
|
- ./sonarr/ks.yaml
|
||||||
- ./tautulli/ks.yaml
|
- ./tautulli/ks.yaml
|
||||||
- ./unpackerr/ks.yaml
|
- ./unpackerr/ks.yaml
|
||||||
|
|
19
kubernetes/apps/default/searxng/app/externalsecret.yaml
Normal file
19
kubernetes/apps/default/searxng/app/externalsecret.yaml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
---
|
||||||
|
# yaml-language-server: $schema=https://ks.hsn.dev/external-secrets.io/externalsecret_v1beta1.json
|
||||||
|
apiVersion: external-secrets.io/v1beta1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata:
|
||||||
|
name: searxng
|
||||||
|
spec:
|
||||||
|
secretStoreRef:
|
||||||
|
kind: ClusterSecretStore
|
||||||
|
name: onepassword-connect
|
||||||
|
target:
|
||||||
|
name: searxng-secret
|
||||||
|
template:
|
||||||
|
engineVersion: v2
|
||||||
|
data:
|
||||||
|
SEARXNG_SECRET: "{{ .SEARXNG_SECRET }}"
|
||||||
|
dataFrom:
|
||||||
|
- extract:
|
||||||
|
key: searxng
|
109
kubernetes/apps/default/searxng/app/helmrelease.yaml
Normal file
109
kubernetes/apps/default/searxng/app/helmrelease.yaml
Normal file
|
@ -0,0 +1,109 @@
|
||||||
|
---
|
||||||
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2beta2.schema.json
|
||||||
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
||||||
|
kind: HelmRelease
|
||||||
|
metadata:
|
||||||
|
name: searxng
|
||||||
|
spec:
|
||||||
|
interval: 30m
|
||||||
|
chart:
|
||||||
|
spec:
|
||||||
|
chart: app-template
|
||||||
|
version: 3.2.1
|
||||||
|
sourceRef:
|
||||||
|
kind: HelmRepository
|
||||||
|
name: bjw-s
|
||||||
|
namespace: flux-system
|
||||||
|
install:
|
||||||
|
remediation:
|
||||||
|
retries: 3
|
||||||
|
upgrade:
|
||||||
|
cleanupOnFail: true
|
||||||
|
remediation:
|
||||||
|
retries: 3
|
||||||
|
strategy: rollback
|
||||||
|
values:
|
||||||
|
controllers:
|
||||||
|
searxng:
|
||||||
|
annotations:
|
||||||
|
reloader.stakater.com/auto: "true"
|
||||||
|
containers:
|
||||||
|
app:
|
||||||
|
image:
|
||||||
|
repository: docker.io/searxng/searxng
|
||||||
|
tag: 2024.7.7-ef103ba80
|
||||||
|
env:
|
||||||
|
TZ: America/Chicago
|
||||||
|
SEARXNG_BASE_URL: https://search.jahanson.tech
|
||||||
|
SEARXNG_URL: https://search.jahanson.tech
|
||||||
|
SEARXNG_PORT: &port "8080"
|
||||||
|
probes:
|
||||||
|
liveness: &probes
|
||||||
|
enabled: true
|
||||||
|
custom: true
|
||||||
|
spec:
|
||||||
|
httpGet:
|
||||||
|
path: /stats
|
||||||
|
port: *port
|
||||||
|
initialDelaySeconds: 0
|
||||||
|
periodSeconds: 10
|
||||||
|
timeoutSeconds: 1
|
||||||
|
failureThreshold: 3
|
||||||
|
readiness: *probes
|
||||||
|
startup:
|
||||||
|
enabled: false
|
||||||
|
securityContext:
|
||||||
|
allowPrivilegeEscalation: false
|
||||||
|
readOnlyRootFilesystem: true
|
||||||
|
capabilities:
|
||||||
|
drop:
|
||||||
|
- ALL
|
||||||
|
add:
|
||||||
|
- CHOWN
|
||||||
|
- SETGID
|
||||||
|
- SETUID
|
||||||
|
- DAC_OVERRIDE
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 10m
|
||||||
|
limits:
|
||||||
|
memory: 3Gi
|
||||||
|
service:
|
||||||
|
app:
|
||||||
|
controller: searxng
|
||||||
|
ports:
|
||||||
|
http:
|
||||||
|
port: *port
|
||||||
|
ingress:
|
||||||
|
app:
|
||||||
|
enabled: true
|
||||||
|
className: internal-nginx
|
||||||
|
hosts:
|
||||||
|
- host: &host "search.jahanson.tech"
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
service:
|
||||||
|
identifier: app
|
||||||
|
port: http
|
||||||
|
tls:
|
||||||
|
- hosts:
|
||||||
|
- *host
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
type: configMap
|
||||||
|
name: searxng-configmap
|
||||||
|
advancedMounts:
|
||||||
|
searxng:
|
||||||
|
app:
|
||||||
|
- path: /etc/searxng/settings.yml
|
||||||
|
subPath: settings.yml
|
||||||
|
readOnly: true
|
||||||
|
- path: /etc/searxng/limiter.toml
|
||||||
|
subPath: limiter.toml
|
||||||
|
readOnly: true
|
||||||
|
tmp:
|
||||||
|
type: emptyDir
|
||||||
|
advancedMounts:
|
||||||
|
searxng:
|
||||||
|
app:
|
||||||
|
- path: /etc/searxng
|
14
kubernetes/apps/default/searxng/app/kustomization.yaml
Normal file
14
kubernetes/apps/default/searxng/app/kustomization.yaml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
---
|
||||||
|
# yaml-language-server: $schema=https://json.schemastore.org/kustomization
|
||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- ./externalsecret.yaml
|
||||||
|
- ./helmrelease.yaml
|
||||||
|
configMapGenerator:
|
||||||
|
- name: searxng-configmap
|
||||||
|
files:
|
||||||
|
- settings.yml=./resources/settings.yaml
|
||||||
|
- limiter.toml=./resources/limiter.toml
|
||||||
|
generatorOptions:
|
||||||
|
disableNameSuffixHash: true
|
37
kubernetes/apps/default/searxng/app/resources/limiter.toml
Normal file
37
kubernetes/apps/default/searxng/app/resources/limiter.toml
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
[real_ip]
|
||||||
|
|
||||||
|
# Number of values to trust for X-Forwarded-For.
|
||||||
|
|
||||||
|
x_for = 1
|
||||||
|
|
||||||
|
# The prefix defines the number of leading bits in an address that are compared
|
||||||
|
# to determine whether or not an address is part of a (client) network.
|
||||||
|
|
||||||
|
ipv4_prefix = 32
|
||||||
|
ipv6_prefix = 48
|
||||||
|
|
||||||
|
[botdetection.ip_limit]
|
||||||
|
|
||||||
|
# To get unlimited access in a local network, by default link-lokal addresses
|
||||||
|
# (networks) are not monitored by the ip_limit
|
||||||
|
filter_link_local = true
|
||||||
|
|
||||||
|
# activate link_token method in the ip_limit method
|
||||||
|
link_token = false
|
||||||
|
|
||||||
|
[botdetection.ip_lists]
|
||||||
|
|
||||||
|
# In the limiter, the ip_lists method has priority over all other methods -> if
|
||||||
|
# an IP is in the pass_ip list, it has unrestricted access and it is also not
|
||||||
|
# checked if e.g. the "user agent" suggests a bot (e.g. curl).
|
||||||
|
|
||||||
|
block_ip = [
|
||||||
|
]
|
||||||
|
|
||||||
|
pass_ip = [
|
||||||
|
'10.1.2.0/24', # IPv4 private network
|
||||||
|
]
|
||||||
|
|
||||||
|
# Activate passlist of (hardcoded) IPs from the SearXNG organization,
|
||||||
|
# e.g. `check.searx.space`.
|
||||||
|
pass_searxng_org = false
|
47
kubernetes/apps/default/searxng/app/resources/settings.yml
Normal file
47
kubernetes/apps/default/searxng/app/resources/settings.yml
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
---
|
||||||
|
use_default_settings: true
|
||||||
|
|
||||||
|
server:
|
||||||
|
limiter: true
|
||||||
|
image_proxy: true
|
||||||
|
|
||||||
|
redis:
|
||||||
|
url: redis://dragonfly.database.svc.cluster.local:6379?db=10
|
||||||
|
|
||||||
|
search:
|
||||||
|
autocomplete: google
|
||||||
|
|
||||||
|
general:
|
||||||
|
instance_name: HansonSearch
|
||||||
|
|
||||||
|
ui:
|
||||||
|
static_use_hash: true
|
||||||
|
default_theme: simple
|
||||||
|
theme_args:
|
||||||
|
simple_style: dark
|
||||||
|
infinite_scroll: true
|
||||||
|
results_on_new_tab: true
|
||||||
|
|
||||||
|
enabled_plugins:
|
||||||
|
- Basic Calculator
|
||||||
|
- Hash plugin
|
||||||
|
- Hostname replace
|
||||||
|
- Open Access DOI rewrite
|
||||||
|
- Self Informations
|
||||||
|
- Tracker URL remover
|
||||||
|
- Unit converter plugin
|
||||||
|
|
||||||
|
hostnames:
|
||||||
|
high_priority:
|
||||||
|
- (.*)\/blog\/(.*)
|
||||||
|
- (.*\.)?wikipedia.org$
|
||||||
|
- (.*\.)?github.com$
|
||||||
|
- (.*\.)?reddit.com$
|
||||||
|
- (.*\.)?linuxserver.io$
|
||||||
|
- (.*\.)?docker.com$
|
||||||
|
- (.*\.)?archlinux.org$
|
||||||
|
- (.*\.)?stackoverflow.com$
|
||||||
|
- (.*\.)?askubuntu.com$
|
||||||
|
- (.*\.)?superuser.com$
|
||||||
|
# replace:
|
||||||
|
# (www\.)?reddit\.com$: redlib.rostvik.site
|
27
kubernetes/apps/default/searxng/ks.yaml
Normal file
27
kubernetes/apps/default/searxng/ks.yaml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
---
|
||||||
|
# yaml-language-server: $schema=https://ks.hsn.dev/kustomize.toolkit.fluxcd.io/kustomization_v1.json
|
||||||
|
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
||||||
|
kind: Kustomization
|
||||||
|
metadata:
|
||||||
|
name: &app searxng
|
||||||
|
namespace: flux-system
|
||||||
|
spec:
|
||||||
|
targetNamespace: default
|
||||||
|
commonMetadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: *app
|
||||||
|
dependsOn:
|
||||||
|
- name: dragonfly
|
||||||
|
- name: external-secrets-stores
|
||||||
|
path: ./kubernetes/apps/default/searxng/app
|
||||||
|
prune: true
|
||||||
|
sourceRef:
|
||||||
|
kind: GitRepository
|
||||||
|
name: homelab
|
||||||
|
wait: false
|
||||||
|
interval: 30m
|
||||||
|
retryInterval: 1m
|
||||||
|
timeout: 5m
|
||||||
|
postBuild:
|
||||||
|
substitute:
|
||||||
|
APP: *app
|
Loading…
Reference in a new issue