Skip to content
This repository has been archived by the owner on Mar 18, 2023. It is now read-only.
/ sadpandaops Public archive

A CICD tool for those with limited power.

License

Notifications You must be signed in to change notification settings

stenic/sadpandaops

Repository files navigation

SadPandaOps

A CICD tool for those with limited power.

How does it work

You deploy sadpandaops into your namespace. A pod will be started that will periodically fetch your git repository and check for changes. If a change is detected, a helm apply will be performed.

Example

# Source of my-values.yaml
sadpandaops:
  releaseName: "example"
  clusterRole: admin
  repository:
    url: "git@github.com:NoUseFreak/somerepo.git"
    path: "path/to/helm/chart"
    sshKey: |
      -----BEGIN OPENSSH PRIVATE KEY-----
      aaabbb...
helm upgrade --install spo charts/sadpandaops --values ./my-values.yaml