Helm Charts for deploying various components of the Ploigos project.
A Helm chart for Kubernetes to deploy the cluster level resources required to deploy and run Ploigos Workflows using Tekton.
A Helm chart for Kubernetes to install the Ploigos Workflow (Standard) run by Tekton for a given application service.
A Helm chart for Kubernetes to install the Ploigos Workflow (Minimal) run by Tekton for a given application service.
A Helm chart for Kubernetes to install the shared resources for a Ploigos Workflow run by Tekton for a given application service.
Not intended to be used on its own but rather as a sub chart for a specific Workflow.
A Helm chart for Kubernetes to install the shared resources for a Ploigos Workflow run by any workflow executor service (ex: Tekton, DronCI, Jenkins, etc).
This is meant to be a child chart of other charts for specific tools to implement specific Workflows for specific workflow executor services.
- Install helm
- Install chart-releaser
- Install or have access to a Kubernetes cluster
- Kind
- this is what the Github Action uses
- Minishift
- Red Hat CodeReady Containers
- Kind
Create local Kind cluster
If you want to use a local Kind cluster to do your testing here is how you can set it up.
kind create cluster --name ploigos-test
kubectl config use-context kind-ploigos-test
echo "Install ingress controller"
helm repo add haproxy-ingress https://haproxy-ingress.github.io/charts
helm upgrade --install haproxy-ingress haproxy-ingress/haproxy-ingress \
--create-namespace --namespace=ingress-controller \
--set controller.hostNetwork=true
kubectl apply -f - <<EOF
apiVersion: networking.k8s.io/v1
kind: IngressClass
metadata:
name: haproxy
annotations:
ingressclass.kubernetes.io/is-default-class: 'true'
spec:
controller: haproxy-ingress.github.io/controller
EOF
echo "Install tekton"
kubectl apply --filename https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.22.0/release.yaml
kubectl apply --filename https://storage.googleapis.com/tekton-releases/triggers/previous/v0.12.0/release.yaml
ct lint \
--chart-dirs charts/ploigos-workflow/ \
--all \
--validate-maintainers=false \
--validate-chart-schema=false
NOTE this will install (then uninstall) these charts against the target kube cluster, so be aware of what that means.
kubectl config use-context kind-ploigos-test
ct install \
--chart-dirs charts/ploigos-workflow/ \
--all
All releases get pushed as artifacts to this Github repository and indexed on the gh-pages
branch.
Github actions will take any merge to main
branch will cause an "edge" type release.
Create a release of vSEM_VER
so, v0.42.0
. Github Actions will do the rest.