the-scott-hand commented on issue #3219: upgrade to Apache Bookkeeper 4.7.3 to fix DistributedLog based stateful storage URL: https://github.com/apache/incubator-heron/pull/3219#issuecomment-501010571 sorry if this isnt the right place for this discussion at this point. I was working through the issue, I've hit a couple issues looking at the code on master that maybe have been fixed in another branch I dont know about. 1. Baremetal refers to ledger disk, everything else refers to data-disk trying to run helm chart with baremetal fails because it doesnt know what data-disk is https://github.com/apache/incubator-heron/blob/6ce013cf262b8d413aec8c6e628ce363ef717ff1/deploy/kubernetes/helm/templates/bookie.yaml#L141 So I changed it to minikube and got past that error as a temp fix 2. my "the server could not find the requested resource" problem I've narrowed my problem down to the line below https://github.com/apache/incubator-heron/blob/6ce013cf262b8d413aec8c6e628ce363ef717ff1/deploy/kubernetes/helm/templates/tools.yaml#L18 my theory, is that the"-" in "{{- $platform" and the one on the other side of ".Values.apiServerMemory -}}" removes all white space between the comments and "apiVersion: v1". The problem, I think, is that this removes so much whitespace that "apiVersion: v1" actually gets commented out, like so: "# under the License.apiVersion: v1" removing the first "-" from "{{- $platform" caused my error to go away, as well as copying the "apiVersion: v1" line and pasting it directly below itself. That at least gets me to the point where I can helm install and get new errors
---------------------------------------------------------------- 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
