Questions tagged [docker-ingress]
37 questions
0
votes
1 answer
Kubernetes ingress rule
I have a k8s 1.9.0 cluster and following is my ingress rule.
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: my-ingress
labels:
app: report
annotations:
ingress.kubernetes.io/rewrite-target: /
spec:
rules:
- host:…

Gayan
- 1,425
- 4
- 21
- 41
0
votes
1 answer
Can't create ReplicationController for Nginx in Kubernetes
Want to create a ingress controller for k8s. Use nginx ingress sample to do it.
Follow this created nginx-rc.yaml file:
https://github.com/kubernetes/contrib/blob/master/ingress/controllers/nginx/examples/proxy-protocol/nginx-rc.yaml
apiVersion:…

online
- 4,919
- 10
- 32
- 47
0
votes
1 answer
container engine ingress not working
I have a simple container in google container registry which basically does a few things and executes a binary which is a go based server, here are the contents of the DockerFile:
FROM debian:stable
WORKDIR /workspace/
COPY key.json .
COPY…

edwinj
- 430
- 3
- 14
0
votes
1 answer
Ingress does not work
I tried to fllowing sample.
https://github.com/kubernetes/ingress-nginx/tree/d27829ce7ebc5f202816c52f69985bc102db9a63/docs/examples/static-ip
so, I write here settings file.
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name:…

todoroki
- 9
- 4
0
votes
1 answer
Kubernetes Ingress servicePort alternative?
Ingress example from https://kubernetes.io/docs/concepts/services-networking/ingress/ shows that in order to specify ingress bancked, we have to specify servicePort and serviceName, for example:
backend:
serviceName: test
servicePort:…

Tom chan
- 365
- 3
- 18
0
votes
1 answer
Traefik rewriting the http status?
I am experiencing a very strange behaviour with traefik (1.3.5) being used in kubernetes (used as ingress (deploy with the stable chart)).
I have a php endpoint behind a varnish server that returns a 404 when I curl it directly without any special…

poussma
- 7,033
- 3
- 43
- 68
0
votes
1 answer
NGINX Handling JSON POST Requests to Pass to Python Flask Containers on Kubernetes
I am new to the usage of load balancers and still trying to wrap my head around how load balancers, as NGINX can be utilized for JSON POST requests to my python flask containers in Kubernetes cluster.
I have nginx and python flask containers set up…

Yuvraj Singh
- 1
- 2