--- apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: app annotations: cert-manager.io/cluster-issuer: letsencrypt-prod gethomepage.dev/enabled: "true" gethomepage.dev/icon: searxng gethomepage.dev/instance: "$REF_NAME" gethomepage.dev/name: SearXNG spec: ingressClassName: nginx tls: - secretName: tls-app hosts: - "$BASE_URL" rules: - host: "$BASE_URL" http: paths: - path: / pathType: Prefix backend: service: name: app port: name: http --- apiVersion: v1 kind: Service metadata: name: app labels: app: app spec: selector: app: app ports: - name: http port: 80 targetPort: http --- apiVersion: apps/v1 kind: Deployment metadata: name: app labels: app: app spec: replicas: $NB_REPLICAS selector: matchLabels: app: app template: metadata: labels: app: app spec: imagePullSecrets: - name: regcred containers: - name: app image: "$IMAGEAPP" ports: - name: http containerPort: 8080 envFrom: - secretRef: name: searxng-secrets volumeMounts: - name: limiter mountPath: /etc/searxng/limiter.toml subPath: limiter.toml readOnly: true - name: settings mountPath: /etc/searxng/settings.yml subPath: settings.yml readOnly: true volumes: - name: settings configMap: name: searxng-settings - name: limiter configMap: name: searxng-limiter