all repos — infra @ 557c7497404bb7c095aa80502b82e65b78ccaf4f

infrastructure manifests and setup notes

apps/yarr/yarr.yaml (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
apiVersion: apps/v1
kind: Deployment
metadata:
  name: yarr
  labels:
    app: yarr
spec:
  selector:
    matchLabels:
      app: yarr
  template:
    metadata:
      labels:
        app: yarr
    spec:
      imagePullSecrets:
        - name: registry-creds
      nodeSelector:
        arch: "arm"
      containers:
        - name: yarr
          image: reg.icyphox.sh/yarr
          imagePullPolicy: Always
          volumeMounts:
            - name: auth
              mountPath: "/config"
              readOnly: true
          ports:
            - name: http
              containerPort: 7070
          command: ["/bin/sh"]
          args:
            - -c
            - /usr/local/bin/yarr -auth-file /config/auth -addr 0.0.0.0:7070
      volumes:
        - name: auth
          secret:
            secretName: yarr-auth
---
apiVersion: v1
kind: Service
metadata:
  name: yarr
spec:
  selector:
    app: yarr
  ports:
    - name: http
      port: 7070
      targetPort: 7070