Re: Fwd: Ingress APISIX install on Minikube

2021-11-16 Thread Chao Zhang
Hi, Thanks for your contribution! Chao Zhang https://github.com/tokers On November 17, 2021 at 12:50:56, Rupinder Singh (rupi@gmail.com) wrote: Hi Chao, Yes, I will submit a PR to fix the Quickstart doc. I'm sorry for the delay in responding as I had had a huge workload stack that needed

Re: Fwd: Ingress APISIX install on Minikube

2021-11-16 Thread Rupinder Singh
Hi Chao, Yes, I will submit a PR to fix the Quickstart doc. I'm sorry for the delay in responding as I had had a huge workload stack that needed attention before I could come to this. regards Rupinder On Fri, Oct 29, 2021 at 12:47 PM Chao Zhang wrote: > Hi! > > > Defaulted container "apisix"

Re: Fwd: Ingress APISIX install on Minikube

2021-10-29 Thread Chao Zhang
Hi! > Defaulted container "apisix" out of: apisix, wait-etcd (init) > { >"headers": { >“Accept": "*/*”, >"Host": "local.httpbin.org”, >"User-Agent": "curl/7.79.1”, >"X-Forwarded-Host": “local.httpbin.org" > } > } This is a harmless message and will be shown if your Pod

Re: Fwd: Ingress APISIX install on Minikube

2021-10-29 Thread Rupinder Singh
Hi Chao, Thanks! It works now. I got this, Defaulted container "apisix" out of: apisix, wait-etcd (init) { "headers": { "Accept": "*/*", "Host": "local.httpbin.org", "User-Agent": "curl/7.79.1", "X-Forwarded-Host": "local.httpbin.org" } } Correction may be made on the

Re: Fwd: Ingress APISIX install on Minikube

2021-10-28 Thread Chao Zhang
Hi, It seems that your ApisixRoute definition was wrong, serviceName and servicePort should be set as a whole in the backends. You may try the following snippet. httpbin-route.yaml apiVersion: apisix.apache.org/v2beta2 kind: ApisixRoute metadata: name: httpserver-route spec: http: - name:

Re: Fwd: Ingress APISIX install on Minikube

2021-10-28 Thread Rupinder Singh
Hi Chao, Yes, httpbin service and ApisixRoute object are in the same namespace default. BTW, the other day I tested Emissary-ingress quickstart https://www.getambassador.io/docs/emissary/latest/tutorials/getting-started/ and it worked ok; so, my basic setup seems ok too. Rupinder On Thu, Oct

Re: Fwd: Ingress APISIX install on Minikube

2021-10-28 Thread Rupinder Singh
Hi Chao, Thanks for your reply. Sorry for some delay. Will get back soon. Rupinder On Thu, Oct 28, 2021 at 1:57 PM Chao Zhang wrote: > Hi! > > Could you check out whether the httpbin service was deployed correctly, > and it’s inside the same namespace with this ApisixRoute object. > > Chao

Re: Fwd: Ingress APISIX install on Minikube

2021-10-28 Thread Chao Zhang
Hi! Could you check out whether the httpbin service was deployed correctly, and it’s inside the same namespace with this ApisixRoute object. Chao Zhang https://github.com/tokers On October 28, 2021 at 13:50:12, Rupinder Singh (rupi@gmail.com) wrote: correction in the first line: #

Re: Fwd: Ingress APISIX install on Minikube

2021-10-27 Thread Rupinder Singh
correction in the first line: # #httpbin-route.yaml apiVersion: apisix.apache.org/v2beta2 kind: ApisixRoute metadata: name: httpserver-route spec: http: - name: rule1 match: hosts: - local.httpbin.org paths: - /* backends: - serviceName: httpbin

Re: Fwd: Ingress APISIX install on Minikube

2021-10-27 Thread Rupinder Singh
Hi Chao, here it is; the same as in that quickstart with required updations. httpbin-route.yaml apiVersion: apisix.apache.org/v2beta2 kind: ApisixRoute metadata: name: httpserver-route spec: http: - name: rule1 match: hosts: - local.httpbin.org paths: - /*

Re: Fwd: Ingress APISIX install on Minikube

2021-10-27 Thread Chao Zhang
Hi! Could you show the ApisixRoute definition? It seems that it refers to a non-existent service. Chao Zhang https://github.com/tokers On October 25, 2021 at 02:33:48, Rupinder Singh (rupi@gmail.com) wrote: Hi Chao, Thanks for pointing out. That's right. I'm sorry I kind of overlooked it

Re: Fwd: Ingress APISIX install on Minikube

2021-10-27 Thread Rupinder Singh
Hi Chao, Could you take a look? Rupiner On Mon, Oct 25, 2021 at 12:03 AM Rupinder Singh wrote: > Hi Chao, > Thanks for pointing out. That's right. I'm sorry I kind of overlooked it > due to a couple of reasons. > > However, I now have different errors; my immediate goal is to get my >

Re: Fwd: Ingress APISIX install on Minikube

2021-10-24 Thread Rupinder Singh
Hi Chao, Thanks for pointing out. That's right. I'm sorry I kind of overlooked it due to a couple of reasons. However, I now have different errors; my immediate goal is to get my installation up so that I can come back later again and again for experiments :) Would need some more help from you.

Re: Fwd: Ingress APISIX install on Minikube

2021-10-24 Thread Chao Zhang
Hi! The error reason is self-descriptive, the backends field is an array, not a map. Chao Zhang https://github.com/tokers On October 24, 2021 at 13:48:23, Rupinder Singh (rupi@gmail.com) wrote: Hi, Thanks for responding. APISIXversion is 2.10.0 and the controller version is 1.3.0. I think

Re: Fwd: Ingress APISIX install on Minikube

2021-10-23 Thread Rupinder Singh
Hi, Thanks for responding. APISIXversion is 2.10.0 and the controller version is 1.3.0. I think I'd tried "backends" too. Anyway, I tried creating the ApisixRoute again. This is what I get, the same as I got in earlier tries. error: error validating "httpbin-route.yaml": error validating data:

Re: Fwd: Ingress APISIX install on Minikube

2021-10-23 Thread Chao Zhang
Hi! So what’s the version of your apisix-ingress-controller? Since v1.3 we dropped the support of `backend` field in ApisixRoute, so you should use backends instead. Chao Zhang https://github.com/tokers On October 23, 2021 at 19:07:10, Rupinder Singh (rupi@gmail.com) wrote: --

Fwd: Ingress APISIX install on Minikube

2021-10-23 Thread Rupinder Singh
-- Forwarded message - From: Rupinder Singh Date: Fri, Oct 22, 2021 at 9:01 PM Subject: Ingress APISIX install on Minikube To: Hi, Following https://apisix.apache.org/docs/ingress-controller/deployments/minikube/ and testing with