Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Once the kloudfuse deployment Kloudfuse installation is complete, run through the following steps if you don’t want the kloudfuse Kloudfuse stack to run with an external load balancer.

Info

Note: This has been validated for a single-node deployment so far. If you have more than one node in your deployment, please let us know.

...

  • Save and quit the edit session.

  • Re-edit the service spec by running kubectl edit service kfuse-ingress-nginx-controller-internal, and add the externalIPs section in spec. You’ll have to add the internal IP of the node (see first bullet point) here. The spec should now looks look like:

Code Block
spec:
  type: ClusterIP
externalIPs:
- <Node_Internal_IP>
clusterIPs:
- <Cluster_IP>

...

  • Update the security groups on your EC2 instance (from the AWS console) to allow HTTPs https traffic for the IP, which was just added. See the screenshots below on how to do it from the EC2 instance landing page.

...