Skip to content
This repository was archived by the owner on Mar 18, 2023. It is now read-only.

Latest commit

 

History

History
28 lines (22 loc) · 637 Bytes

File metadata and controls

28 lines (22 loc) · 637 Bytes

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