mirror of
https://github.com/gomods/athens
synced 2026-02-03 12:10:32 +00:00
chart, fix workers (#1209)
* chart, fix workers * fix spacing * add owners file * add maintainers * fix maintainers
This commit is contained in:
committed by
Aaron Schlesinger
parent
8e5b6981d3
commit
abcc0a6ac1
@@ -1,5 +1,5 @@
|
||||
name: athens-proxy
|
||||
version: 0.2.2
|
||||
version: 0.2.3
|
||||
appVersion: 0.3.1
|
||||
description: The proxy server for Go modules
|
||||
icon: https://bitnami.com/assets/stacks/wordpress/img/wordpress-stack-220x234.png
|
||||
@@ -9,4 +9,8 @@ keywords:
|
||||
home: https://github.com/gomods/athens
|
||||
sources:
|
||||
maintainers:
|
||||
- name: rimusz
|
||||
email: rmocius@gmail.com
|
||||
- name: arschles
|
||||
email: aaron@ecomaz.net
|
||||
engine: gotpl
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
approvers:
|
||||
- rimusz
|
||||
- arschles
|
||||
reviewers:
|
||||
- rimusz
|
||||
- arschles
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{{- if .Values.ingress.enabled }}
|
||||
{{- range .Values.ingress.hosts }}
|
||||
http://{{ . }}
|
||||
https://{{ . }}
|
||||
{{- end }}
|
||||
{{- else if contains "NodePort" .Values.service.type }}
|
||||
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "fullname" . }})
|
||||
|
||||
@@ -57,9 +57,9 @@ spec:
|
||||
env:
|
||||
- name: ATHENS_GOGET_WORKERS
|
||||
{{- if .Values.goGetWorkers }}
|
||||
value: {{ .Values.goGetWorkers }}
|
||||
value: {{ .Values.goGetWorkers | quote }}
|
||||
{{- else }}
|
||||
value: 3
|
||||
value: "3"
|
||||
{{- end }}
|
||||
- name: ATHENS_STORAGE_TYPE
|
||||
value: {{ .Values.storage.type | quote }}
|
||||
|
||||
@@ -72,7 +72,7 @@ sshGitServers: {}
|
||||
## Private git servers over ssh
|
||||
## to enable uncomment lines with single hash below
|
||||
## hostname of the git server
|
||||
#- host: git.example.com
|
||||
# - host: git.example.com
|
||||
## ssh username
|
||||
# user: git
|
||||
## ssh private key for the user
|
||||
|
||||
Reference in New Issue
Block a user