[GitHub] [apisix-ingress-controller] tao12345666333 commented on issue #565: bug: apisix-ingress-controller+k3s is not work

2021-11-18 Thread GitBox


tao12345666333 commented on issue #565:
URL: 
https://github.com/apache/apisix-ingress-controller/issues/565#issuecomment-973043807


   ping @anjia0532  This issue has not been updated for too long. Please try to 
update to the latest version to verify if there are still problems.
   
   After #740  is merged, you should be able to see that the load balancer is 
created normally in the Rancher UI.
   
   I will close this issue. Feel free to reopen it, if you have any question.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@apisix.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [apisix-ingress-controller] tao12345666333 commented on issue #565: bug: apisix-ingress-controller+k3s is not work

2021-09-22 Thread GitBox


tao12345666333 commented on issue #565:
URL: 
https://github.com/apache/apisix-ingress-controller/issues/565#issuecomment-924654213


   At the same time I also noticed this one:  `name: 
ingress-d5cd807224d030ff630f4f78b12b3861`
   
   ```
-host: apisix-dashboard.xxx.net
  http:
paths:
-backend:
service:
  name: ingress-d5cd807224d030ff630f4f78b12b3861
  port:
number: 9000
  pathType: ImplementationSpecific
   ```
   
   This should be the reason for not taking effect. Please try to create an 
Ingress resource by yourself.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@apisix.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [apisix-ingress-controller] tao12345666333 commented on issue #565: bug: apisix-ingress-controller+k3s is not work

2021-09-22 Thread GitBox


tao12345666333 commented on issue #565:
URL: 
https://github.com/apache/apisix-ingress-controller/issues/565#issuecomment-924645607


   [In the information you provided 
above](https://github.com/apache/apisix-ingress-controller/issues/565#issuecomment-871971164),
 I noticed that you created it through Rancher UI, and the `path` is not 
configured in the Ingress resource.
   
   ```
   - apiVersion: networking.k8s.io/v1
 kind: Ingress
 metadata:
   annotations:
 field.cattle.io/creatorId: user-mzfcd
 field.cattle.io/ingressState: 
'{"YXBpc2l4LWRhc2hib2FyZC10ZXN0L2FwaXNpeC9hcGlzaXgtZGFzaGJvYXJkLnN5cG0uc2h1bnpob25na2VqaS5uZXQvLzkwMDA=":"deployment:apisix:apisix-dashboard"}'
 kubernetes.io/ingress.class: apisix
   creationTimestamp: "2021-07-01T06:42:14Z"
   generation: 1
   labels:
 cattle.io/creator: norman
   name: apisix-dashboard-test
   namespace: apisix
   resourceVersion: "40923164"
   uid: 48cc1527-8e0e-4149-8ef7-286a7d59a015
 spec:
   rules:
   - host: apisix-dashboard.xxx.net
 http:
   paths:
   - backend:
   service:
 name: ingress-d5cd807224d030ff630f4f78b12b3861
 port:
   number: 9000
 pathType: ImplementationSpecific
 status:
   loadBalancer: {}
   ```
   
   **Can you try the Ingress configuration file I provided above? At the same 
time, upgrade the Apache APISIX Ingress controller to the latest version**. 
Thanks!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@apisix.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [apisix-ingress-controller] tao12345666333 commented on issue #565: bug: apisix-ingress-controller+k3s is not work

2021-09-22 Thread GitBox


tao12345666333 commented on issue #565:
URL: 
https://github.com/apache/apisix-ingress-controller/issues/565#issuecomment-924642307


   Sorry for delay.
   
   I created a k3s cluster using [k3d](https://k3d.io/)
   
   ```
   ~/k3s# kubectl  get nodes 
   NAME   STATUS   ROLES  AGE   VERSION
   k3d-k3s-default-agent-2Ready 41m   v1.21.3+k3s1
   k3d-k3s-default-agent-0Ready 41m   v1.21.3+k3s1
   k3d-k3s-default-agent-1Ready 41m   v1.21.3+k3s1
   k3d-k3s-default-server-0   Readycontrol-plane,master   42m   v1.21.3+k3s1
   ```
   
   And using Helm to deploy Apache APISIX & Apache APISIX Ingress controller:
   
   ```
   ~/k3s# helm install apisix apisix/apisix --set gateway.type=NodePort --set 
ingress-controller.enabled=true --namespace apisix --set 
etcd.volumePermissions.enabled=true
   ```
   
   When all Pods reached the running state, I started the experiment.
   
   This is my Ingress resource file. 
   ```
   apiVersion: networking.k8s.io/v1
   kind: Ingress
   metadata:
 name: httpserver-ingress
 annotations:
   kubernetes.io/ingress.class: apisix
   spec:
 rules:
 - host: local.httpbin.org
   http:
 paths:
 - backend:
 service:
   name: httpbin
   port:
 number: 80
   path: /
   pathType: Prefix
   ```
   
   When I create Ingress using the file, it can sync to Apache APISIX and I can 
access it through NodePort.
   
   ```
   ~/k3s# curl 172.19.0.4:32510/get -H "HOST: local.httpbin.org"
   {
 "args": {}, 
 "headers": {
   "Accept": "*/*", 
   "Host": "local.httpbin.org", 
   "User-Agent": "curl/7.58.0", 
   "X-Forwarded-Host": "local.httpbin.org"
 }, 
 "origin": "10.42.2.0", 
 "url": "http://local.httpbin.org/get";
   }
   
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@apisix.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [apisix-ingress-controller] tao12345666333 commented on issue #565: bug: apisix-ingress-controller+k3s is not work

2021-08-18 Thread GitBox


tao12345666333 commented on issue #565:
URL: 
https://github.com/apache/apisix-ingress-controller/issues/565#issuecomment-900861166


   this issue will resolve at v1.3


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@apisix.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [apisix-ingress-controller] tao12345666333 commented on issue #565: bug: apisix-ingress-controller+k3s is not work

2021-08-17 Thread GitBox


tao12345666333 commented on issue #565:
URL: 
https://github.com/apache/apisix-ingress-controller/issues/565#issuecomment-900861166


   this issue will resolve at v1.3


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@apisix.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [apisix-ingress-controller] tao12345666333 commented on issue #565: bug: apisix-ingress-controller+k3s is not work

2021-06-30 Thread GitBox


tao12345666333 commented on issue #565:
URL: 
https://github.com/apache/apisix-ingress-controller/issues/565#issuecomment-871972989


   thanks for your informations, let me check.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@apisix.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [apisix-ingress-controller] tao12345666333 commented on issue #565: bug: apisix-ingress-controller+k3s is not work

2021-06-30 Thread GitBox


tao12345666333 commented on issue #565:
URL: 
https://github.com/apache/apisix-ingress-controller/issues/565#issuecomment-871964818


   please add `-n ${your service's namespace}`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@apisix.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [apisix-ingress-controller] tao12345666333 commented on issue #565: bug: apisix-ingress-controller+k3s is not work

2021-06-30 Thread GitBox


tao12345666333 commented on issue #565:
URL: 
https://github.com/apache/apisix-ingress-controller/issues/565#issuecomment-871930353


   Thanks! 
   
   * The Initializing state will continue forever, as does the screenshots in 
the article.
   * The error log, because the RBAC settings lost apisixconsumer resource, I 
will submit a PR to fix .
   
   Can you run `kubectl get ar` ?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@apisix.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org