diff --git a/charts/incubator/shlink/questions.yaml b/charts/incubator/shlink/questions.yaml index 1eccbcadf4a..b5dd3d121b8 100644 --- a/charts/incubator/shlink/questions.yaml +++ b/charts/incubator/shlink/questions.yaml @@ -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" diff --git a/charts/incubator/shlink/values.yaml b/charts/incubator/shlink/values.yaml index 25123b0109f..ad69c56764c 100644 --- a/charts/incubator/shlink/values.yaml +++ b/charts/incubator/shlink/values.yaml @@ -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 }}"