Browse Source

HPCC-24194 Move helm charts out of dockerfiles directory

Signed-off-by: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 5 years ago
parent
commit
4ac19b99fd
56 changed files with 1 additions and 1 deletions
  1. 1 1
      dockerfiles/startall.sh
  2. 0 0
      helm/examples/azure/README.md
  3. 0 0
      helm/examples/azure/hpcc-azurefile/.helmignore
  4. 0 0
      helm/examples/azure/hpcc-azurefile/Chart.yaml
  5. 0 0
      helm/examples/azure/hpcc-azurefile/templates/NOTES.txt
  6. 0 0
      helm/examples/azure/hpcc-azurefile/templates/_helpers.tpl
  7. 0 0
      helm/examples/azure/hpcc-azurefile/templates/dalistorage-pvc.yaml
  8. 0 0
      helm/examples/azure/hpcc-azurefile/templates/dalistorage-sc.yaml
  9. 0 0
      helm/examples/azure/hpcc-azurefile/templates/datastorage-pvc.yaml
  10. 0 0
      helm/examples/azure/hpcc-azurefile/templates/datastorage-sc.yaml
  11. 0 0
      helm/examples/azure/hpcc-azurefile/templates/dllstorage-pvc.yaml
  12. 0 0
      helm/examples/azure/hpcc-azurefile/templates/dllstorage-sc.yaml
  13. 0 0
      helm/examples/azure/hpcc-azurefile/values.schema.json
  14. 0 0
      helm/examples/azure/hpcc-azurefile/values.yaml
  15. 0 0
      helm/examples/azure/values-auto-azurefile.yaml
  16. 0 0
      helm/examples/azure/values-retained-azurefile.yaml
  17. 0 0
      helm/examples/local/README.md
  18. 0 0
      helm/examples/local/hpcc-localfile/.helmignore
  19. 0 0
      helm/examples/local/hpcc-localfile/Chart.yaml
  20. 0 0
      helm/examples/local/hpcc-localfile/templates/NOTES.txt
  21. 0 0
      helm/examples/local/hpcc-localfile/templates/_helpers.tpl
  22. 0 0
      helm/examples/local/hpcc-localfile/templates/dalistorage-pv.yaml
  23. 0 0
      helm/examples/local/hpcc-localfile/templates/dalistorage-pvc.yaml
  24. 0 0
      helm/examples/local/hpcc-localfile/templates/datastorage-pv.yaml
  25. 0 0
      helm/examples/local/hpcc-localfile/templates/datastorage-pvc.yaml
  26. 0 0
      helm/examples/local/hpcc-localfile/templates/dllstorage-pv.yaml
  27. 0 0
      helm/examples/local/hpcc-localfile/templates/dllstorage-pvc.yaml
  28. 0 0
      helm/examples/local/hpcc-localfile/values.schema.json
  29. 0 0
      helm/examples/local/hpcc-localfile/values.yaml
  30. 0 0
      helm/examples/local/values-localfile.yaml
  31. 0 0
      helm/examples/nfs/README.md
  32. 0 0
      helm/examples/nfs/hpcc-nfs/.helmignore
  33. 0 0
      helm/examples/nfs/hpcc-nfs/Chart.yaml
  34. 0 0
      helm/examples/nfs/hpcc-nfs/templates/NOTES.txt
  35. 0 0
      helm/examples/nfs/hpcc-nfs/templates/_helpers.tpl
  36. 0 0
      helm/examples/nfs/hpcc-nfs/templates/hpcc-volumes.yaml
  37. 0 0
      helm/examples/nfs/hpcc-nfs/templates/nfs-server.yaml
  38. 0 0
      helm/examples/nfs/hpcc-nfs/templates/nfs-volume.yaml
  39. 0 0
      helm/examples/nfs/hpcc-nfs/values.schema.json
  40. 0 0
      helm/examples/nfs/hpcc-nfs/values.yaml
  41. 0 0
      helm/examples/nfs/values-nfs.yaml
  42. 0 0
      helm/hpcc/.helmignore
  43. 0 0
      helm/hpcc/Chart.yaml
  44. 0 0
      helm/hpcc/templates/_helpers.tpl
  45. 0 0
      helm/hpcc/templates/dali.yaml
  46. 0 0
      helm/hpcc/templates/datastorage-pvc.yaml
  47. 0 0
      helm/hpcc/templates/dllserver-pvc.yaml
  48. 0 0
      helm/hpcc/templates/eclagent.yaml
  49. 0 0
      helm/hpcc/templates/eclccserver.yaml
  50. 0 0
      helm/hpcc/templates/esp.yaml
  51. 0 0
      helm/hpcc/templates/localroxie.yaml
  52. 0 0
      helm/hpcc/templates/roxie.yaml
  53. 0 0
      helm/hpcc/templates/service-account.yaml
  54. 0 0
      helm/hpcc/templates/thor.yaml
  55. 0 0
      helm/hpcc/values.schema.json
  56. 0 0
      helm/hpcc/values.yaml

+ 1 - 1
dockerfiles/startall.sh

@@ -50,7 +50,7 @@ done
 [[ -n ${INPUT_DOCKER_REPO} ]] && DOCKER_REPO=${INPUT_DOCKER_REPO}
 [[ -z ${LABEL} ]] && LABEL=$(docker image ls | fgrep "${DOCKER_REPO}/platform-core" | head -n 1 | awk '{print $2}')
 
-helm install mycluster hpcc/ --set global.image.root="${DOCKER_REPO}" --set global.image.version=$LABEL --set global.privileged=true ${restArgs[@]}
+helm install mycluster ../helm/hpcc/ --set global.image.root="${DOCKER_REPO}" --set global.image.version=$LABEL --set global.privileged=true ${restArgs[@]}
 
 sleep 1
 kubectl get pods

dockerfiles/examples/azure/README.md → helm/examples/azure/README.md


dockerfiles/examples/azure/hpcc-azurefile/.helmignore → helm/examples/azure/hpcc-azurefile/.helmignore


dockerfiles/examples/azure/hpcc-azurefile/Chart.yaml → helm/examples/azure/hpcc-azurefile/Chart.yaml


dockerfiles/examples/azure/hpcc-azurefile/templates/NOTES.txt → helm/examples/azure/hpcc-azurefile/templates/NOTES.txt


dockerfiles/examples/azure/hpcc-azurefile/templates/_helpers.tpl → helm/examples/azure/hpcc-azurefile/templates/_helpers.tpl


dockerfiles/examples/azure/hpcc-azurefile/templates/dalistorage-pvc.yaml → helm/examples/azure/hpcc-azurefile/templates/dalistorage-pvc.yaml


dockerfiles/examples/azure/hpcc-azurefile/templates/dalistorage-sc.yaml → helm/examples/azure/hpcc-azurefile/templates/dalistorage-sc.yaml


dockerfiles/examples/azure/hpcc-azurefile/templates/datastorage-pvc.yaml → helm/examples/azure/hpcc-azurefile/templates/datastorage-pvc.yaml


dockerfiles/examples/azure/hpcc-azurefile/templates/datastorage-sc.yaml → helm/examples/azure/hpcc-azurefile/templates/datastorage-sc.yaml


dockerfiles/examples/azure/hpcc-azurefile/templates/dllstorage-pvc.yaml → helm/examples/azure/hpcc-azurefile/templates/dllstorage-pvc.yaml


dockerfiles/examples/azure/hpcc-azurefile/templates/dllstorage-sc.yaml → helm/examples/azure/hpcc-azurefile/templates/dllstorage-sc.yaml


dockerfiles/examples/azure/hpcc-azurefile/values.schema.json → helm/examples/azure/hpcc-azurefile/values.schema.json


dockerfiles/examples/azure/hpcc-azurefile/values.yaml → helm/examples/azure/hpcc-azurefile/values.yaml


dockerfiles/examples/azure/values-auto-azurefile.yaml → helm/examples/azure/values-auto-azurefile.yaml


dockerfiles/examples/azure/values-retained-azurefile.yaml → helm/examples/azure/values-retained-azurefile.yaml


dockerfiles/examples/local/README.md → helm/examples/local/README.md


dockerfiles/examples/local/hpcc-localfile/.helmignore → helm/examples/local/hpcc-localfile/.helmignore


dockerfiles/examples/local/hpcc-localfile/Chart.yaml → helm/examples/local/hpcc-localfile/Chart.yaml


dockerfiles/examples/local/hpcc-localfile/templates/NOTES.txt → helm/examples/local/hpcc-localfile/templates/NOTES.txt


dockerfiles/examples/local/hpcc-localfile/templates/_helpers.tpl → helm/examples/local/hpcc-localfile/templates/_helpers.tpl


dockerfiles/examples/local/hpcc-localfile/templates/dalistorage-pv.yaml → helm/examples/local/hpcc-localfile/templates/dalistorage-pv.yaml


dockerfiles/examples/local/hpcc-localfile/templates/dalistorage-pvc.yaml → helm/examples/local/hpcc-localfile/templates/dalistorage-pvc.yaml


dockerfiles/examples/local/hpcc-localfile/templates/datastorage-pv.yaml → helm/examples/local/hpcc-localfile/templates/datastorage-pv.yaml


dockerfiles/examples/local/hpcc-localfile/templates/datastorage-pvc.yaml → helm/examples/local/hpcc-localfile/templates/datastorage-pvc.yaml


dockerfiles/examples/local/hpcc-localfile/templates/dllstorage-pv.yaml → helm/examples/local/hpcc-localfile/templates/dllstorage-pv.yaml


dockerfiles/examples/local/hpcc-localfile/templates/dllstorage-pvc.yaml → helm/examples/local/hpcc-localfile/templates/dllstorage-pvc.yaml


dockerfiles/examples/local/hpcc-localfile/values.schema.json → helm/examples/local/hpcc-localfile/values.schema.json


dockerfiles/examples/local/hpcc-localfile/values.yaml → helm/examples/local/hpcc-localfile/values.yaml


dockerfiles/examples/local/values-localfile.yaml → helm/examples/local/values-localfile.yaml


dockerfiles/examples/nfs/README.md → helm/examples/nfs/README.md


dockerfiles/examples/nfs/hpcc-nfs/.helmignore → helm/examples/nfs/hpcc-nfs/.helmignore


dockerfiles/examples/nfs/hpcc-nfs/Chart.yaml → helm/examples/nfs/hpcc-nfs/Chart.yaml


dockerfiles/examples/nfs/hpcc-nfs/templates/NOTES.txt → helm/examples/nfs/hpcc-nfs/templates/NOTES.txt


dockerfiles/examples/nfs/hpcc-nfs/templates/_helpers.tpl → helm/examples/nfs/hpcc-nfs/templates/_helpers.tpl


dockerfiles/examples/nfs/hpcc-nfs/templates/hpcc-volumes.yaml → helm/examples/nfs/hpcc-nfs/templates/hpcc-volumes.yaml


dockerfiles/examples/nfs/hpcc-nfs/templates/nfs-server.yaml → helm/examples/nfs/hpcc-nfs/templates/nfs-server.yaml


dockerfiles/examples/nfs/hpcc-nfs/templates/nfs-volume.yaml → helm/examples/nfs/hpcc-nfs/templates/nfs-volume.yaml


dockerfiles/examples/nfs/hpcc-nfs/values.schema.json → helm/examples/nfs/hpcc-nfs/values.schema.json


dockerfiles/examples/nfs/hpcc-nfs/values.yaml → helm/examples/nfs/hpcc-nfs/values.yaml


dockerfiles/examples/nfs/values-nfs.yaml → helm/examples/nfs/values-nfs.yaml


dockerfiles/hpcc/.helmignore → helm/hpcc/.helmignore


dockerfiles/hpcc/Chart.yaml → helm/hpcc/Chart.yaml


dockerfiles/hpcc/templates/_helpers.tpl → helm/hpcc/templates/_helpers.tpl


dockerfiles/hpcc/templates/dali.yaml → helm/hpcc/templates/dali.yaml


dockerfiles/hpcc/templates/datastorage-pvc.yaml → helm/hpcc/templates/datastorage-pvc.yaml


dockerfiles/hpcc/templates/dllserver-pvc.yaml → helm/hpcc/templates/dllserver-pvc.yaml


dockerfiles/hpcc/templates/eclagent.yaml → helm/hpcc/templates/eclagent.yaml


dockerfiles/hpcc/templates/eclccserver.yaml → helm/hpcc/templates/eclccserver.yaml


dockerfiles/hpcc/templates/esp.yaml → helm/hpcc/templates/esp.yaml


dockerfiles/hpcc/templates/localroxie.yaml → helm/hpcc/templates/localroxie.yaml


dockerfiles/hpcc/templates/roxie.yaml → helm/hpcc/templates/roxie.yaml


dockerfiles/hpcc/templates/service-account.yaml → helm/hpcc/templates/service-account.yaml


dockerfiles/hpcc/templates/thor.yaml → helm/hpcc/templates/thor.yaml


dockerfiles/hpcc/values.schema.json → helm/hpcc/values.schema.json


dockerfiles/hpcc/values.yaml → helm/hpcc/values.yaml