You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The commands to create Google Service Account in https://github.com/banzaicloud/cloudinfo#google-cloud does not work since cloudinfoSA is not a valid name for a service account, since it contains upper-case letters.
Fix: Change service account name from cloudinfoSA to cloudinfoSA
It's not immediately obvious how to populate .Values.providers.google.credentials in the helm chart values.
Great work on cloudinfo! Looks very well made.
I have a few fixes and suggestions but I don't have time to create a PR for them right now but they are all tiny :)
Documentation bugs
The examples in https://github.com/banzaicloud/cloudinfo#api-calls use
http://localhost:9090
which does not work since that is the Prometheus metrics port.Fix: Should be changed to
http://localhost:9090
.The commands to create Google Service Account in https://github.com/banzaicloud/cloudinfo#google-cloud does not work since
cloudinfoSA
is not a valid name for a service account, since it contains upper-case letters.Fix: Change service account name from
cloudinfoSA
tocloudinfoSA
It's not immediately obvious how to populate
.Values.providers.google.credentials
in the helm chart values.Fix: Add a hint that it's the base64 encoded contents of the credentials.json file,
cloudinfo.gcloud.json
if using the commands from https://github.com/banzaicloud/cloudinfo#google-cloudHelm chart bug
Deploying the helm charts does not work since the liveness and readiness probes gets double slashes:
//status
gives 404:Fix:
path: {{ .Values.app.basePath }}/status
topath: {{ .Values.app.basePath }}status
inThe text was updated successfully, but these errors were encountered: