--- # yaml-language-server: $schema=https://raw.githubusercontent.com/fluxcd-community/flux2-schemas/main/helmrelease-helm-v2beta1.json apiVersion: helm.toolkit.fluxcd.io/v2beta1 kind: HelmRelease metadata: name: &app nitter namespace: default spec: interval: 30m chart: spec: chart: app-template version: 1.5.1 sourceRef: kind: HelmRepository name: bjw-s namespace: flux-system maxHistory: 2 install: createNamespace: true remediation: retries: 3 upgrade: cleanupOnFail: true remediation: retries: 3 uninstall: keepHistory: false values: controller: strategy: RollingUpdate annotations: reloader.stakater.com/auto: "true" image: repository: docker.io/zedeus/nitter tag: latest@sha256:c0275459df4de2331a1ceac61c42be30a8731e168f582851134b5ec25af75171 service: main: ports: http: port: &port 8080 probes: liveness: &probes enabled: false # custom: true # spec: # httpGet: # path: /Jack/status/20 # port: *port # initialDelaySeconds: 0 # periodSeconds: 10 # timeoutSeconds: 1 # failureThreshold: 3 readiness: *probes startup: enabled: false ingress: main: enabled: true ingressClassName: "nginx" annotations: auth.home.arpa/enabled: "true" external-dns.home.arpa/enabled: "true" hajimari.io/icon: mdi:web hosts: - host: &host "nitter.${SECRET_CLUSTER_DOMAIN}" paths: - path: / pathType: Prefix tls: - hosts: - *host persistence: config: enabled: true type: configMap name: *app subPath: config.yml mountPath: /src/nitter.conf readOnly: false resources: requests: cpu: 50m memory: 256Mi