weaveworks / pipeline-controller

This repository contains the Pipeline CRD and associated controller for Weave GitOps Enterprise.
1 stars 4 forks source link

adding pipeline templates chart #155

Closed enekofb closed 1 year ago

enekofb commented 1 year ago

closes https://github.com/weaveworks/pipeline-controller/issues/46

Tested via

➜  charts git:(issues/46) ✗ helm install --dry-run --debug pipeline-controller --generate-name --set templates.enabled=true | grep GitOpsTemplate -A 10                                         <aws:sts>
install.go:178: [debug] Original chart version: ""
install.go:195: [debug] CHART PATH: /Users/enekofb/projects/github.com/weaveworks/pipeline-controller/charts/pipeline-controller

install.go:210: [debug] WARNING: This chart or one of its subcharts contains CRDs. Rendering may fail or contain inaccuracies.
kind: GitOpsTemplate
metadata:
  name: pipeline-sample
  namespace: default
  labels:
    weave.works/template-type: pipeline
spec:
  description: a blank pipeline template for development purposes

➜  charts git:(issues/46) ✗ helm install --dry-run --debug pipeline-controller --generate-name --set templates.enabled=false | grep GitOpsTemplate -A 10                                        <aws:sts>
install.go:178: [debug] Original chart version: ""
install.go:195: [debug] CHART PATH: /Users/enekofb/projects/github.com/weaveworks/pipeline-controller/charts/pipeline-controller

install.go:210: [debug] WARNING: This chart or one of its subcharts contains CRDs. Rendering may fail or contain inaccuracies.
➜
enekofb commented 1 year ago

closing in favor of https://github.com/weaveworks/weave-gitops-enterprise/pull/2230