Skip to content

Commit

Permalink
helm-chart: Allow users to change apache service type
Browse files Browse the repository at this point in the history
Signed-off-by: Yannik Buerkle <[email protected]>
  • Loading branch information
yannik-b committed Aug 24, 2024
1 parent 3ccdd33 commit 61f756b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ metadata:
namespace: "{{ .Values.NAMESPACE }}"
spec:
ipFamilyPolicy: PreferDualStack
type: LoadBalancer
type: {{ .Values.APACHE_SERVICE_TYPE }}
externalTrafficPolicy: Local
ports:
- name: "{{ .Values.APACHE_PORT }}"
Expand Down
1 change: 1 addition & 0 deletions nextcloud-aio-helm-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ TALK_RECORDING_ENABLED: "no" # Setting this to "yes" (with quotes) enab

APACHE_MAX_SIZE: "10737418240" # This needs to be an integer and in sync with NEXTCLOUD_UPLOAD_LIMIT
APACHE_PORT: 443 # Changing this to a different value than 443 will allow you to run it behind a web server or reverse proxy (like Apache, Nginx, Caddy, Cloudflare Tunnel and else).
APACHE_SERVICE_TYPE: LoadBalancer # This needs to be a valid Kubernetes service type like LoadBalancer or ClusterIP. If you plan to use Nextcloud behind an ingress controller, this may be ClusterIP.
COLLABORA_DICTIONARIES: de_DE en_GB en_US es_ES fr_FR it nl pt_BR pt_PT ru # You can change this in order to enable other dictionaries for collabora
COLLABORA_SECCOMP_POLICY: --o:security.seccomp=true # Changing the value to false allows to disable the seccomp feature of the Collabora container.
INSTALL_LATEST_MAJOR: no # Setting this to yes will install the latest Major Nextcloud version upon the first installation
Expand Down

0 comments on commit 61f756b

Please sign in to comment.