Skip to content

Commit

Permalink
[incubator/gogs] add install lock opportunity (helm#9315)
Browse files Browse the repository at this point in the history
* Update configmap.yaml

Add opportunity to start with install mode

Signed-off-by: olivier beyler <olivier.beyler@orange.com>

* Update Chart.yaml

increase chart version

Signed-off-by: olivier beyler <olivier.beyler@orange.com>

* Update values.yaml

Add installLock  parameter

Signed-off-by: olivier beyler <olivier.beyler@orange.com>

* Update values.yaml

fixup the typo

Signed-off-by: olivier beyler <olivier.beyler@orange.com>

* Create OWNERS

Add owner file

Signed-off-by: olivier beyler <olivier.beyler@orange.com>

* Update Chart.yaml

Signed-off-by: olivier beyler <olivier.beyler@orange.com>

* Update Chart.yaml

Signed-off-by: olivier beyler <olivier.beyler@orange.com>
  • Loading branch information
obeyler authored and davidkarlsen committed Dec 2, 2018
1 parent f32333d commit 52702d1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
4 changes: 3 additions & 1 deletion incubator/gogs/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
apiVersion: v1
description: 'Gogs: Go Git Service'
name: gogs
version: 0.7.1
version: 0.7.2
appVersion: 0.11.66
home: https://gogs.io/
icon: https://gogs.io/img/favicon.ico
maintainers:
- name: obeyler
keywords:
- git
4 changes: 4 additions & 0 deletions incubator/gogs/OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
approvers:
- obeyler
reviewers:
- obeyler
2 changes: 1 addition & 1 deletion incubator/gogs/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ data:
PASSWD = {{ template "gogs.database.password" . }}
[security]
INSTALL_LOCK = true
INSTALL_LOCK = {{ .Values.service.gogs.installLock }}
SECRET_KEY = {{ default "" .Values.service.gogs.securitySecretKey | b64enc | quote }}
[ui]
Expand Down
4 changes: 4 additions & 0 deletions incubator/gogs/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ service:
##
disableHttpGit: false

## Lock the path /install to configure gogs
##
installLock: true

## Indicates whether or not to enable repository file upload feature.
##
repositoryUploadEnabled: true
Expand Down

0 comments on commit 52702d1

Please sign in to comment.