Giter Site home page Giter Site logo

krateo-module-core's People

Contributors

braghettos avatar maurosala avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

fossabot

krateo-module-core's Issues

Kong Proxy Service not reachable from outside with Kubernetes AKS 1.24.6

After I installed Krateo on AKS (v1.24.6) I was not able to reach Krateo Web Portal trough Kong Load Balancer.
This issue is basically the same as this one.

I was able to bypass the issue with the following steps:

  1. Retrieve the LoadBalancer manifest and save it in a yaml file:
kubectl -n krateo-system get svc $(kubectl get services -n krateo-system | grep 'LoadBalancer' | awk '{print $1}') -o yaml > kong-svc.yaml
  1. Open kong-svc.yaml and delete the "appProtocol" properties in the specs
    for example this:
spec:
  type: LoadBalancer
  ports:
  - name: kong-proxy
    port: 80
    targetPort: 8000
    appProtocol: http
    protocol: TCP
  - name: kong-proxy-tls
    port: 443
    targetPort: 8443
    appProtocol: https
    protocol: TCP 

becomes this:

spec:
  type: LoadBalancer
  ports:
  - name: kong-proxy
    port: 80
    targetPort: 8000
    protocol: TCP
  - name: kong-proxy-tls
    port: 443
    targetPort: 8443
    protocol: TCP 
  1. Save and apply the new manifest:
kubectl apply -f kong-svc.yaml

Note: Kong seems to have fixed this problem (PR merge in main), this should be solved in the next helm chart release

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.