kubernetes-ingress Questions
3
Solved
I am trying to upload files from a client through an nginx ingress. I have set the following annotations on the ingress after receiving a 413 response;
Annotations: nginx.ingress.kubernetes.io/body...
Pamela asked 15/7, 2020 at 23:25
4
I have Kubernetes Cluster with Ingress/Traefik controller
Also, I installed the dashboard using the standard config from here: https://raw.githubusercontent.com/kubernetes/dashboard/master/src/dep...
Ecospecies asked 13/9, 2018 at 11:9
5
Solved
I have the following that config that works when I try <NodeIP>:30080
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: app-deployment
spec:
replicas: 3
template:
metadata:...
Inadvisable asked 25/8, 2018 at 23:7
5
Recently I've been working on a toy app using Kubernetes. Part of the app is a web server that needs to support WebSockets. Currently, I'm using port-forwarding to access the web server and everyth...
Compensable asked 18/10, 2018 at 22:53
19
I tried configuring ingress on my kubernetes cluster. I followed the documentation to install ingress controller and ran the following commands
kubectl apply -f https://raw.githubusercontent.com/k...
Cochrane asked 25/7, 2018 at 5:42
8
Solved
I'm trying to get an ingress controller working in Minikube and am following the steps in the K8s documentation here, but am seeing a different result in that the IP address for the ingress control...
Overtrade asked 25/10, 2019 at 15:40
7
Solved
I have configured amazon certificate manager, ALB Ingress Controller and a domain names for my application. I can access my application through port 80 and port 443 (all certificates works just fin...
Paddock asked 17/9, 2019 at 18:18
2
I'm trying to do TCP/UDP port-forwarding with an ingress.
Following the docs: https://kubernetes.github.io/ingress-nginx/user-guide/exposing-tcp-udp-services/
It says to set: --tcp-services-configm...
Bleeder asked 1/11, 2021 at 19:49
3
Solved
I've been following the walkthrough to create an AWS ALB Ingress Controller for my app which is also deployed at an EKS cluster.
Everything seems okay , similar answers with the walkthrough but wh...
Meltage asked 20/2, 2020 at 16:29
3
Solved
I have a simple ingress file that does work on multiple environments, but to access it, it behaves differently depending on if I'm running my minikube cluster on my Mac or my Ubuntu machines.
Speci...
Enswathe asked 2/2, 2022 at 19:45
4
Solved
I created the following ingressClass while my ingress-nginx controller was already running:
apiVersion: networking.k8s.io/v1beta1
kind: IngressClass
metadata:
name: nginx
annotations:
ingresscla...
Postulate asked 6/12, 2020 at 6:7
7
Solved
I have a GKE cluster with 4 nodes in an instance group.
I deployed Ingress and several pods (1 replica only of each pod so they are only on 1 node).
I notice on the Google Console (Ingress details ...
Ballflower asked 5/8, 2020 at 15:32
3
I have a backend using https.
I want to separate load on that back-end based on URL/path.
I decided to use ingress to do this url/path based logic in order to move traffic to different back-ends (...
Herbert asked 31/1, 2019 at 10:56
3
I know this question has been asked before, but the previous one doesn't apply to my case. I have 2 deployments and 2 services and I am using ingress resource and nginx ingress controller
ingress.y...
Citarella asked 9/11, 2020 at 17:29
5
Solved
Trying to figure out how to expose multiple TCP/UDP services using a single LoadBalancer on Kubernetes. Let's say the services are ftpsrv1.com and ftpsrv2.com each serving at port 21.
Here are th...
Doggett asked 25/4, 2020 at 18:10
2
I have a Kubernetes cluster in which I have multiple ingress controllers. I have deleted the source file of one ingress controller. How can I delete the ingress controller that I don't want further...
Bringhurst asked 26/1, 2022 at 8:0
4
I just tried to go over the getting started guide of Argocd found here https://argo-cd.readthedocs.io/en/stable/getting_started/.
I did steps 1 and 2 and then ran the command argocd login --core to...
Birdsall asked 7/10, 2021 at 15:0
2
Solved
I have a Rancher cluster (v2.4.5) running on custom nodes with the following configuration:
External machine (example.com):
Runs Rancher server on port 8443;
Runs NGINX with (among other unrelate...
Pushkin asked 29/7, 2020 at 20:39
1
How do you set the cookie in a websocket connection? I want to do this because I am using nginx ingress session affinity to correlate a user's session with a specific pod. But this request is being...
Deglutition asked 25/11, 2023 at 8:0
2
Solved
I'm pretty new to K8s.
I'm trying to make my app visible to the outside world. I have deployed this Nginx Ingress Controller with my apps, using Helm and helmfile which has given me an extern...
Declinature asked 13/5, 2022 at 12:46
3
Solved
I had the below YAML for my Ingress and it worked (and continues to work):
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
name: test-ingress
namespace: test-layer
annotations:
ngi...
Tipple asked 29/9, 2020 at 17:55
2
Solved
My Kubernetes ingress has the following:
ingress:
enabled: true
annotations:
kubernetes.io/ingress.class: alb
...
...
# -- Defines which ingress controller will implement the resource
ingr...
Heideheidegger asked 1/10, 2022 at 3:2
2
Solved
I can create ingress with basic auth. I followed the template from kubernetes/ingress-nginx:
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: ingress-with-auth
annotations:
# type o...
Sarcomatosis asked 23/8, 2018 at 15:2
4
Solved
I use a local kubernetes bundled with docker on Mac OS.
I've installed the nginx-ingress-controller.
I managed to send external http request via ingress to my kubernetes managed containers (e.g. f...
Upbeat asked 22/3, 2018 at 23:11
18
Solved
I set up a k8s cluster using kubeadm (v1.18) on an Ubuntu virtual machine.
Now I need to add an Ingress Controller. I decided for nginx (but I'm open for other solutions). I installed it acco...
Skipton asked 5/5, 2020 at 14:59
1 Next >
© 2022 - 2025 — McMap. All rights reserved.