ckdarby edited a comment on issue #5992: Helm deployment fails to deploy properly URL: https://github.com/apache/pulsar/issues/5992#issuecomment-614342718 @sijie Wow, very impressed with the documentation & helm updates! 99% works! Error with ` helm install --generate-name --values values-mini.yaml .` Not sure if values.yaml has a bug and that is why the Grafana resources section is commented out or values-mini.yaml is supposed to have that section commented out and match values.yaml. Got it working with this for the time being: ```diff diff --git a/deployment/kubernetes/helm/pulsar/values-mini.yaml b/deployment/kubernetes/helm/pulsar/values-mini.yaml index ff899fcb07..2d7f940aad 100644 --- a/deployment/kubernetes/helm/pulsar/values-mini.yaml +++ b/deployment/kubernetes/helm/pulsar/values-mini.yaml @@ -374,10 +374,10 @@ grafana: annotations: {} tolarations: [] gracePeriod: 0 - resources: - requests: - memory: 64Mi - cpu: 0.1 +# resources: +# requests: +# memory: 64Mi +# cpu: 0.1 image: repository: apachepulsar/pulsar-grafana tag: latest ```
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
