Kong Ingress Controller: How to remove a plugin entry from a configuration?
I'm learning Kong API Gateway, and I'm trying to configure it using the Kubernetes Ingress Controller.I've been able to add a service plugin, following this tutorial, but I cannot find anywhere how to...
View ArticleAnswer by mikyll98 for Kong Ingress Controller: prevent stripping the path...
Turns out the problem was that I had mistakenly created 2 routes:"weather" and "weather-route":PS D:\kong-kubernetes> kubectl get ingressNAME CLASS HOSTS ADDRESS PORTS AGEweather kong * 127.0.0.1 80...
View ArticleAnswer by mikyll98 for Kong 502 Bad Gateway: "An invalid response was...
Related GitHub threadAs stated by Ponsakorn30214, the requests are failing because (obviously) url=http://127.0.0.1:4002 means "localhost" from the point of view of Kong docker container.Alternative...
View ArticleKong 502 Bad Gateway: "An invalid response was received from the upstream...
TL;DRI can't send HTTP request to local docker container (accessible via 127.0.0.1:4002) through Kong gateway.Kong Gateway components:Service test_service: url=http://127.0.0.1:4002;Route test_route:...
View ArticleAnswer by mikyll98 for Flutter upgrade error: Unknown flutter tag
You need to call flutter upgrade from Flutter install directory.To find its location, you can use which command on Linux systems:mikyll@debian-EQPNRAP:~$ which...
View ArticleAnswer by mikyll98 for How to send http request in flutter
To send HTTP requests in Flutter you can use one of the many packages available. Some examples:httpdiochopperExample with http packageYou first need to add the package to the dependencies:flutter pub...
View ArticleKong Ingress Controller: Failed parsing resource errors,...
I write this post even though I already solved the issue, because I think it might help someone out there, since I couldn't the cause nor a solution anywhere.I'm learning Kong authentication...
View ArticleAnswer by mikyll98 for Kong Ingress Controller: Failed parsing resource...
The issue was caused by these two consumers:# Consumer for User JWT tokenapiVersion: configuration.konghq.com/v1kind: KongConsumermetadata: name: user annotations: kubernetes.io/ingress.class:...
View ArticleAnswer by mikyll98 for This code is for printing an array in reverse order in...
SolutionAs suggested by Some programmer dude, the error in your code is that you're passing an element of the array (array[n]), instead of the array itself (array), to a function that expects a pointer...
View ArticleHow to update or uninstall a custom plugin in Kong Ingress Controller?
QuestionWhat's the proper way (if there is one) to update an already existing Kong custom plugin? And what about uninstalling it?DetailsI've been struggling a bit while trying to test and debug my Kong...
View ArticleAnswer by mikyll98 for How to add color background in the button admin and...
To change the background color of a JButton, you can use setBackground() method, passing a java.awt.Color.From the docs, for setBackground():Sets the background color of this component. The background...
View ArticleKong External Service: no Route matched with those values
TL;DRI followed each step of the External Service tutorial, but when I try to send and HTTP request to http://localhost/httpbin/anything, I get the "no Route matched with those values." error...
View ArticleAnswer by mikyll98 for catch Android back button event on Flutter
WillPopScope is now deprecated, and shouldn't be used anymore. Reference: Android Predictive BackTo support Android 14’s Predictive Back feature, a set of ahead-of-time APIs have replaced just-in-time...
View ArticleAnswer by mikyll98 for how to display variable name dynamic in java
You can't. When you compile a java program in java bytecode, the information about variable names are not included.For example:File Main.javapublic class Main{ public static void main(String[] args) {...
View ArticleAnswer by mikyll98 for How to deactivate or override the Android "BACK"...
The selected answer is outdatedWillPopScope is now deprecated, and shouldn't be used anymore. Reference: Android Predictive BackTo support Android 14’s Predictive Back feature, a set of ahead-of-time...
View ArticleAnswer by mikyll98 for java.lang.reflect.InvocationTargetException in...
Caused by: java.lang.ClassNotFoundException: javafx.scene.control.HBoxYou have to change the import of the fxml file (musicals.fxml) from<?import javafx.scene.control.HBox ?>to:<?import...
View ArticleKubernetes: kubectl exec command different behaviour from C# program
I have a Kubernetes cluster with a deployment workload resource and a storage mounted (persistent volume claim).The deployment resource runs a container with a Minecraft server, containing file...
View ArticleAnswer by mikyll98 for Flutter: ElevatedButton has different theme on Linux
I cannot find any reference, but the problem is appearently linked to the Flutter SDK version I was using: on WSL Kali Linux I had a more recent Flutter version, while on Windows an older one.When I...
View ArticleFlutter: ElevatedButton has different theme on Linux
ProblemI have a Flutter application that uses an ElevatedButton widget.When I run the application on Windows the button colors are fine, but when I run it on Linux, they are different.Here's my code...
View ArticleKong Ingress Controller - How to deploy Kong DB-backed with kong/ingress
TL;DRHow can I deploy Kong DB-backed with kong/ingress helm chart? Which configuration values I need to set?Long VersionI want to try the Oauth2 plugin which, from the docs, is said to require a...
View Article