Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

[incubator/gogs] add install lock opportunity #9315

Merged
merged 7 commits into from
Nov 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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