mirror of
https://github.com/sickcodes/Docker-OSX.git
synced 2026-01-11 21:10:25 +01:00
[PR #124] [MERGED] Add helm chart #700
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/sickcodes/Docker-OSX/pull/124
Author: @cephasara
Created: 1/13/2021
Status: ✅ Merged
Merged: 1/14/2021
Merged by: @sickcodes
Base:
master← Head:master📝 Commits (3)
b28dd70add helm chart for running in Kubernetesa0a3f67add requriment for host machinece3ce48update doc with features📊 Changes
10 files changed (+1585 additions, -0 deletions)
View changed files
➕
helm/.DS_Store(+0 -0)➕
helm/Chart.yaml(+7 -0)➕
helm/README.md(+44 -0)➕
helm/templates/_helpers.tpl(+32 -0)➕
helm/templates/configmap.yaml(+1175 -0)➕
helm/templates/data-pvc.yaml(+28 -0)➕
helm/templates/deployment.yaml(+124 -0)➕
helm/templates/ingress.yaml(+39 -0)➕
helm/templates/service.yaml(+30 -0)➕
helm/values.yaml(+106 -0)📄 Description
Adds helm chart support for
Kuberneteswith minimal documentation.What works:
What doesn't/isn't defined:
I have written this to leverage everything defined in the Dockerfiles, without making changes to them directly, but via Kubernetes configmaps instead. This makes it easier to merge into the existing codebase without breaking anything, albeit this is less optimized as it could be. For example,
mac_hdd_ng.imgis created twice [once in the Dockerfile itself and again with the Kubernetes configmap] as this allows us to update parameters and to maintain persistence.I just want to share this in case anyone else would like to use this and contribute to it. It is by no means perfect--as it has been a hobbyist project for me, but a good starting point for anyone else whom might like to pick it up.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.