Skip to content

Commit

Permalink
feat(shlink): add some gui options (#1682)
Browse files Browse the repository at this point in the history
  • Loading branch information
stavros-k committed Jan 10, 2022
1 parent f61df34 commit 293c9aa
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
12 changes: 12 additions & 0 deletions charts/incubator/shlink/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,18 @@ questions:
schema:
type: string
default: ""
- variable: ANONYMIZE_REMOTE_ADDR
label: "Anonymize Remote Address"
description: "Tells if IP addresses from visitors should be obfuscated before storing them in the database"
schema:
type: boolean
default: true
- variable: ENABLE_PERIODIC_VISIT_LOCATE
label: "Enable Periodic visit:locate"
description: "it schedules the visit:locate command to be run every hour inside the container using crontab"
schema:
type: boolean
default: true
- variable: IS_HTTPS_ENABLED
label: "Served over HTTPS"
description: "Tells if Shlink is served with https or not"
Expand Down
4 changes: 3 additions & 1 deletion charts/incubator/shlink/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ probes:
env:
DEFAULT_DOMAIN: ""
GEOLITE_LICENSE_KEY: ""
PORT: 10153
ANONYMIZE_REMOTE_ADDR: true
ENABLE_PERIODIC_VISIT_LOCATE: true
IS_HTTPS_ENABLED: true
PORT: 10153
DB_DRIVER: "postgres"
DB_USER: "{{ .Values.postgresql.postgresqlUsername }}"
DB_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"
Expand Down

0 comments on commit 293c9aa

Please sign in to comment.