git-cache-proxy 0.1.10

Read-only caching proxy for Git: serves clones/fetches from an in-region mirror, pulling only deltas from upstream.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
apiVersion: v1
kind: Service
metadata:
  name: '{{ include "git-cache-proxy.fullname" . }}'
  labels:
    app: '{{ include "git-cache-proxy.fullname" . }}'
spec:
  type: {{ .Values.service.type }}
  selector:
    app: '{{ include "git-cache-proxy.fullname" . }}'
  ports:
    - name: http
      port: {{ .Values.service.port }}
      targetPort: http
      protocol: TCP