Skip to content

Commit

Permalink
chart, fix workers (gomods#1209)
Browse files Browse the repository at this point in the history
* chart, fix workers

* fix spacing

* add owners file

* add maintainers

* fix maintainers
  • Loading branch information
rimusz authored and arschles committed May 7, 2019
1 parent 8e5b698 commit abcc0a6
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
6 changes: 5 additions & 1 deletion charts/athens-proxy/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -9,4 +9,8 @@ keywords:
home: https://github.com/gomods/athens
sources:
maintainers:
- name: rimusz
email: [email protected]
- name: arschles
email: [email protected]
engine: gotpl
7 changes: 7 additions & 0 deletions charts/athens-proxy/OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
approvers:
- rimusz
- arschles
reviewers:
- rimusz
- arschles

2 changes: 1 addition & 1 deletion charts/athens-proxy/templates/NOTES.txt
Original file line number Diff line number Diff line change
@@ -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" . }})
Expand Down
4 changes: 2 additions & 2 deletions charts/athens-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion charts/athens-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit abcc0a6

Please sign in to comment.