Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow override of http port and loadBalancerIP with new helm values #942

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

LeviTrammell
Copy link

@LeviTrammell LeviTrammell commented Apr 12, 2022

Signed-off-by: Levi Trammell davidltrammell@gmail.com

Description

I've added a couple of new helm values :

.Values.gatewayExternal.loadBalancerIP
.Values.gatewayExternal.port

If the gatewayExternal.loadBalancerIP is set and the service is of type LoadBalancer, one can explicitly set which IP the external gateway service uses. This is not an uncommon practice with people of the homelab community using MetalLB or kube-vip.

If the gatewayExternal.port is set, the gateway service can use whatever port it wants (say port 80), and continue using the target port of 8080. If gatewayExternal.port is not set it falls back to the default port 8080.

These changes will make it super simple for someone to set these value using helm or arkade.

Motivation and Context

  • I have raised an issue to propose this change (required)

#941

How Has This Been Tested?

Tested as described in documentation.

helm upgrade openfaas --install ~/Developer/faas-netes/chart/openfaas \
    --namespace openfaas \
    --set functionNamespace=openfaas-fn \
    --set generateBasicAuth=true \
    -f ~/Developer/faas-netes/chart/openfaas/values.yaml \
    -f ~/Developer/faas-netes/chart/openfaas/values-arm64.yaml \
    -f ./values.yaml

Here is the values.yaml that I used

serviceType: LoadBalancer

gatewayExternal:
  port: 80
  loadBalancerIP: 10.49.0.9

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)

Checklist:

  • My code follows the code style of this project.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I've read the CONTRIBUTION guide
  • I have signed-off my commits with git commit -s
  • I have added tests to cover my changes.
  • All new and existing tests passed.

Signed-off-by: Levi Trammell <davidltrammell@gmail.com>
@alexellis
Copy link
Member

We'll triage this request and talk about it on the next community call, however we do not encourage use of openfaas without TLS, the LoadBalancer is for AWS users who have a TLS-terminating load balancer available to them.

You should consider using TLS with cert-manager, inlets may also be of use to you, you'll have to figure that out.

https://blog.alexellis.io/tls-the-easy-way-with-openfaas-and-k3sup/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants