Questions tagged [docker-ingress]
37 questions
22
votes
3 answers
What is a difference between Ingress and Ingress controller?
I'm using k8s on GCP. It is required to set ingress to setup TLS connection so I set ingress for my application, it works !!!
BTW what is Ingress controller like as Nginx Ingress Controller?
I'm sure that ingress create new load balancer and serve…

Yoshihito Takashiba
- 335
- 1
- 2
- 8
17
votes
6 answers
ingress configuration for dashboard
I did nginx ingress controller tutorial from github and
exposed kubernetes dashboard
kubernetes-dashboard NodePort 10.233.53.77 443:31925/TCP 20d
created ingress
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
…

Evgeniy Alterman
- 344
- 1
- 3
- 11
8
votes
2 answers
Whitelist an IP to access deployment with Kubernetes ingress Istio
I'm trying to whitelist an IP to access a deployment inside my Kubernetes cluster.
I looked for some documentation online about this, but I only found the
ingress.kubernetes.io/whitelist-source-range
for ingress to grant access to certain IP…

Lan
- 709
- 1
- 8
- 16
6
votes
0 answers
how to allow both host networking and ingress in docker swarm?
I have a small network of computers, bundled into a docker swarm. I'm running a service that needs host networking, which is fine when it runs on a dedicated node.
But I want to let it run on any node - yet maintaining the ability to access its web…

mortee
- 61
- 3
6
votes
1 answer
GKE with Ingress setup always gives status UNHEALTHY
To start of I have tested the tutorial at https://cloud.google.com/kubernetes-engine/docs/tutorials/http-balancer
which works fine. I also tested the same tutorial but added a tls secret as well to test https which also worked fine.
My problems…

TensaiNiNaru
- 163
- 7
5
votes
1 answer
Docker swarm: a node is not joining the ingress network
I'm playing around with Docker swarm,
I have a three nodes cluster, 1 manager, and 2 worker nodes. I'm using VIP for all my services.
I had a weird situation where I restarted the worker node.
I executed docker node ls and the worker node was…

Mehdi
- 582
- 4
- 14
4
votes
0 answers
Docker Swarm, Windows Containers, ingress network (Routing Mesh) on Windows Server 2019
I want to build docker swarm cluster on windows. To do this I choose Windows Server 2019 in 1809 Version. I work on my local machine and using Vagrant box vm.box=StefanScherer/windows_2019 I created enviroment for developing purposes.
Set…

Michał Konieczny
- 111
- 4
4
votes
1 answer
Running Nexus in Kubernetes using ingress with path other than /
I have trouble running Nexus 3 in Kubernetes via ingress, when I specify a path other than "/". Nexus does not load fully when i visit the web portal as https://www.myportal.com/mypath. I have a true certificate. This is my ingress:
apiVersion:…

John JBro
- 41
- 1
4
votes
3 answers
Kubernetes ingress not working on redirect on some path like "/myapp", but only working for "/"
I have a container running on url like http://localhost:8000/ps/app/ui/?pid=201. The container is deployed on kubernetes and exposed to a service as "ps-app-ui:8000"
I want to create an ingress which can be accessible from outside. Ingress template…

Shahzeb Khan
- 41
- 1
- 3
4
votes
1 answer
Ldap authentication via nginx ingress controller
I was using nginx ingress controller in kubernates where i have used customized nginx template file to have settings for ldap authentication by defining ldap_server directive.
At the time of running the nginx ingress controller yaml file,I am…

Sudhir
- 491
- 1
- 7
- 21
3
votes
2 answers
Docker overlay network among different datacenters
all. I'm learning Docker. But still cannot find any documentations about how Docker ingress network connect several separated hosts.
I have 2 VMs in different datacenters and want create swarm cluster on them.
Is it possible that default installed…

Michael
- 31
- 2
3
votes
1 answer
Kubernetes nginx ingress proxy pass to websocket
We are running rails application with unicorn and websocket.
We are using AWS ELB as ingress
SSL terminates on ELB and forwards traffic to application.
Nginx ingress routes traffic to web app running unicorn/puma on port 8080.
App works but our…

slashRahul
- 555
- 5
- 18
3
votes
1 answer
How to disable interception of errors by Ingress in a Tectonic kubernetes setup
I have a couple of NodeJS backends running as pods in a Kubernetes setup, with Ingress-managed nginx over it.
These backends are API servers, and can return 400, 404, or 500 responses during normal operations. These responses would provide…

Tomas Kohl
- 1,388
- 1
- 19
- 27
3
votes
0 answers
Can't use an external port in kubernetes with nginx ingress
I am trying to use port 8888 to load a service, but for some reason only port 80 works, while the site can't be reached with port 8888.
The configuration is as follows:
kind: Service
apiVersion: v1
metadata:
name: ingress-nginx
labels:
…

Deano
- 105
- 1
- 8
2
votes
1 answer
Docker swarm prevent node from participating in ingress network
Quite possibly a very trivial question but I can't find anything in the documentation about a feature like this. As we know from the routing mesh documentation:
All nodes participate in an ingress routing mesh. The routing mesh enables each node in…

Sam Holmes
- 1,594
- 13
- 31