You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by GitBox <gi...@apache.org> on 2022/10/24 03:51:25 UTC

[GitHub] [apisix-helm-chart] TOT-JIN opened a new issue, #379: Found a bug in the helm template

TOT-JIN opened a new issue, #379:
URL: https://github.com/apache/apisix-helm-chart/issues/379

   Platform: 1.24.3-aliyun.1
   apisix: 2.15.0
   helm.sh/chart: apisix-0.11.1
   
   Upstream doesn't work when apisix is installed using helm
   Error log:
   
   ```
   
   http_access_phase(): failed to set upstream: no valid upstream node: nil
   
   ```
   
   After investigation, there is a problem with ClusterRole, and apisix needs to maintain the get permission for endpoints:
   
   ```
   
   apiVersion: rbac.authorization.k8s.io/v1
   kind: ClusterRole
   metadata:
     annotations:
       meta.helm.sh/release-name: apisix
       meta.helm.sh/release-namespace: ingress-apisix
     labels:
       app.kubernetes.io/managed-by: Helm
     name: apisix
   rules:
   - apiGroups:
     - ""
     resources:
     - endpoints
     verbs:
     - get         # add this line
     - list
     - watch
   
   ```
   
   I will submit a PR for [https://github.com/apache/apisix-helm-chart/blob/master/charts/apisix/templates/clusterrole.yaml] later.


-- 
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-unsubscribe@apisix.apache.org.apache.org

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


[GitHub] [apisix-helm-chart] bzp2010 closed issue #379: Found a bug in the helm template

Posted by GitBox <gi...@apache.org>.
bzp2010 closed issue #379: Found a bug in the helm template
URL: https://github.com/apache/apisix-helm-chart/issues/379


-- 
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-unsubscribe@apisix.apache.org

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