chore: refactored for helm management of pipeline objects
This commit is contained in:
23
charts/conversion-engine/.helmignore
Normal file
23
charts/conversion-engine/.helmignore
Normal file
@@ -0,0 +1,23 @@
|
||||
# Patterns to ignore when building packages.
|
||||
# This supports shell glob matching, relative path matching, and
|
||||
# negation (prefixed with !). Only one pattern per line.
|
||||
.DS_Store
|
||||
# Common VCS dirs
|
||||
.git/
|
||||
.gitignore
|
||||
.bzr/
|
||||
.bzrignore
|
||||
.hg/
|
||||
.hgignore
|
||||
.svn/
|
||||
# Common backup files
|
||||
*.swp
|
||||
*.bak
|
||||
*.tmp
|
||||
*.orig
|
||||
*~
|
||||
# Various IDEs
|
||||
.project
|
||||
.idea/
|
||||
*.tmproj
|
||||
.vscode/
|
||||
6
charts/conversion-engine/Chart.lock
Normal file
6
charts/conversion-engine/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: file://../../common
|
||||
version: 0.1.0
|
||||
digest: sha256:dd0c1a55ae9ff1f26b9173be4e954796ab5aafd5aed0828b443dc68684e8d592
|
||||
generated: "2023-10-06T22:08:04.524035034-06:00"
|
||||
28
charts/conversion-engine/Chart.yaml
Normal file
28
charts/conversion-engine/Chart.yaml
Normal file
@@ -0,0 +1,28 @@
|
||||
apiVersion: v2
|
||||
name: conversion-engine
|
||||
description: A Helm chart for Kubernetes
|
||||
|
||||
# A chart can be either an 'application' or a 'library' chart.
|
||||
#
|
||||
# Application charts are a collection of templates that can be packaged into versioned archives
|
||||
# to be deployed.
|
||||
#
|
||||
# Library charts provide useful utilities or functions for the chart developer. They're included as
|
||||
# a dependency of application charts to inject those utilities and functions into the rendering
|
||||
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
|
||||
type: application
|
||||
|
||||
# This is the chart version. This version number should be incremented each time you make changes
|
||||
# to the chart and its templates, including the app version.
|
||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||
version: 0.1.0
|
||||
|
||||
# This is the version number of the application being deployed. This version number should be
|
||||
# incremented each time you make changes to the application. Versions are not expected to
|
||||
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||
# It is recommended to use it with quotes.
|
||||
appVersion: "1.16.0"
|
||||
dependencies:
|
||||
- name: common
|
||||
version: 0.1.0
|
||||
repository: file://../../common
|
||||
BIN
charts/conversion-engine/charts/common-0.1.0.tgz
Normal file
BIN
charts/conversion-engine/charts/common-0.1.0.tgz
Normal file
Binary file not shown.
1
charts/conversion-engine/templates/eventlistener.yaml
Normal file
1
charts/conversion-engine/templates/eventlistener.yaml
Normal file
@@ -0,0 +1 @@
|
||||
{{- template "common.eventlistener" . -}}
|
||||
1
charts/conversion-engine/templates/pipeline.yaml
Normal file
1
charts/conversion-engine/templates/pipeline.yaml
Normal file
@@ -0,0 +1 @@
|
||||
{{- template "common.pipeline" . -}}
|
||||
@@ -0,0 +1,2 @@
|
||||
{{- template "common.task-copy-shared-utilities" . -}}
|
||||
|
||||
1
charts/conversion-engine/templates/task-git-clone.yaml
Normal file
1
charts/conversion-engine/templates/task-git-clone.yaml
Normal file
@@ -0,0 +1 @@
|
||||
{{- template "common.task-git-clone" . -}}
|
||||
2
charts/conversion-engine/templates/task-git-semver.yaml
Normal file
2
charts/conversion-engine/templates/task-git-semver.yaml
Normal file
@@ -0,0 +1,2 @@
|
||||
{{- template "common.task-git-semver" . -}}
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
{{- template "common.task-gitea-set-status" . -}}
|
||||
@@ -0,0 +1 @@
|
||||
{{- template "common.golangci-lint" . -}}
|
||||
@@ -0,0 +1 @@
|
||||
{{- template "common.task-helm-upgrade-from-source" . -}}
|
||||
@@ -0,0 +1 @@
|
||||
{{- template "common.task-openshift-client" . -}}
|
||||
1
charts/conversion-engine/templates/task-promote.yaml
Normal file
1
charts/conversion-engine/templates/task-promote.yaml
Normal file
@@ -0,0 +1 @@
|
||||
{{- template "common.promote" . -}}
|
||||
1
charts/conversion-engine/templates/task-s2i-go.yaml
Normal file
1
charts/conversion-engine/templates/task-s2i-go.yaml
Normal file
@@ -0,0 +1 @@
|
||||
{{- template "common.s2i-go" . -}}
|
||||
1
charts/conversion-engine/templates/triggerbinding.yaml
Normal file
1
charts/conversion-engine/templates/triggerbinding.yaml
Normal file
@@ -0,0 +1 @@
|
||||
{{- template "common.triggerbinding" . -}}
|
||||
1
charts/conversion-engine/templates/triggertemplate.yaml
Normal file
1
charts/conversion-engine/templates/triggertemplate.yaml
Normal file
@@ -0,0 +1 @@
|
||||
{{- template "common.triggertemplate" . -}}
|
||||
25
charts/conversion-engine/values.yaml
Normal file
25
charts/conversion-engine/values.yaml
Normal file
@@ -0,0 +1,25 @@
|
||||
# Default values for notification.
|
||||
# This is a YAML-formatted file.
|
||||
# Declare variables to be passed into your templates.
|
||||
|
||||
nameOverride: ""
|
||||
fullnameOverride: ""
|
||||
|
||||
serviceAccount: pipeline
|
||||
storageClassName: nfs-client
|
||||
gitHostname: git.endofday.com
|
||||
quayHostname: quay01.ipa.endofday.com
|
||||
organizationName: goghvideo
|
||||
helmRepoUrl: https://git.endofday.com/goghvideo/helm.git
|
||||
eventlistener:
|
||||
triggerBinding: gitea
|
||||
interceptors:
|
||||
secretKey: sharedSecret
|
||||
secretName: webhook-secret
|
||||
eventTypes:
|
||||
- pull_request
|
||||
additionalFilter:
|
||||
- name: filter
|
||||
value: |
|
||||
body.action in ["opened"]
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
apiVersion: v2
|
||||
name: notification
|
||||
Name: notification
|
||||
description: A Helm chart for Kubernetes
|
||||
|
||||
# A chart can be either an 'application' or a 'library' chart.
|
||||
|
||||
Binary file not shown.
1
charts/notification/templates/task-git-clone.yaml
Normal file
1
charts/notification/templates/task-git-clone.yaml
Normal file
@@ -0,0 +1 @@
|
||||
{{- template "common.task-git-clone" . -}}
|
||||
@@ -6,7 +6,11 @@ nameOverride: ""
|
||||
fullnameOverride: ""
|
||||
|
||||
serviceAccount: pipeline
|
||||
storageClassName: nfs-client
|
||||
gitHostname: git.endofday.com
|
||||
quayHostname: quay01.ipa.endofday.com
|
||||
organizationName: goghvideo
|
||||
helmRepoUrl: https://git.endofday.com/goghvideo/helm.git
|
||||
eventlistener:
|
||||
triggerBinding: gitea
|
||||
interceptors:
|
||||
|
||||
23
charts/upload-to-nextcloud/.helmignore
Normal file
23
charts/upload-to-nextcloud/.helmignore
Normal file
@@ -0,0 +1,23 @@
|
||||
# Patterns to ignore when building packages.
|
||||
# This supports shell glob matching, relative path matching, and
|
||||
# negation (prefixed with !). Only one pattern per line.
|
||||
.DS_Store
|
||||
# Common VCS dirs
|
||||
.git/
|
||||
.gitignore
|
||||
.bzr/
|
||||
.bzrignore
|
||||
.hg/
|
||||
.hgignore
|
||||
.svn/
|
||||
# Common backup files
|
||||
*.swp
|
||||
*.bak
|
||||
*.tmp
|
||||
*.orig
|
||||
*~
|
||||
# Various IDEs
|
||||
.project
|
||||
.idea/
|
||||
*.tmproj
|
||||
.vscode/
|
||||
6
charts/upload-to-nextcloud/Chart.lock
Normal file
6
charts/upload-to-nextcloud/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: file://../../common
|
||||
version: 0.1.0
|
||||
digest: sha256:dd0c1a55ae9ff1f26b9173be4e954796ab5aafd5aed0828b443dc68684e8d592
|
||||
generated: "2023-10-06T22:08:04.524035034-06:00"
|
||||
28
charts/upload-to-nextcloud/Chart.yaml
Normal file
28
charts/upload-to-nextcloud/Chart.yaml
Normal file
@@ -0,0 +1,28 @@
|
||||
apiVersion: v2
|
||||
name: upload-to-nextcloud
|
||||
description: A Helm chart for Kubernetes
|
||||
|
||||
# A chart can be either an 'application' or a 'library' chart.
|
||||
#
|
||||
# Application charts are a collection of templates that can be packaged into versioned archives
|
||||
# to be deployed.
|
||||
#
|
||||
# Library charts provide useful utilities or functions for the chart developer. They're included as
|
||||
# a dependency of application charts to inject those utilities and functions into the rendering
|
||||
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
|
||||
type: application
|
||||
|
||||
# This is the chart version. This version number should be incremented each time you make changes
|
||||
# to the chart and its templates, including the app version.
|
||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||
version: 0.1.0
|
||||
|
||||
# This is the version number of the application being deployed. This version number should be
|
||||
# incremented each time you make changes to the application. Versions are not expected to
|
||||
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||
# It is recommended to use it with quotes.
|
||||
appVersion: "1.16.0"
|
||||
dependencies:
|
||||
- name: common
|
||||
version: 0.1.0
|
||||
repository: file://../../common
|
||||
BIN
charts/upload-to-nextcloud/charts/common-0.1.0.tgz
Normal file
BIN
charts/upload-to-nextcloud/charts/common-0.1.0.tgz
Normal file
Binary file not shown.
1
charts/upload-to-nextcloud/templates/eventlistener.yaml
Normal file
1
charts/upload-to-nextcloud/templates/eventlistener.yaml
Normal file
@@ -0,0 +1 @@
|
||||
{{- template "common.eventlistener" . -}}
|
||||
1
charts/upload-to-nextcloud/templates/pipeline.yaml
Normal file
1
charts/upload-to-nextcloud/templates/pipeline.yaml
Normal file
@@ -0,0 +1 @@
|
||||
{{- template "common.pipeline" . -}}
|
||||
@@ -0,0 +1,2 @@
|
||||
{{- template "common.task-copy-shared-utilities" . -}}
|
||||
|
||||
1
charts/upload-to-nextcloud/templates/task-git-clone.yaml
Normal file
1
charts/upload-to-nextcloud/templates/task-git-clone.yaml
Normal file
@@ -0,0 +1 @@
|
||||
{{- template "common.task-git-clone" . -}}
|
||||
@@ -0,0 +1,2 @@
|
||||
{{- template "common.task-git-semver" . -}}
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
{{- template "common.task-gitea-set-status" . -}}
|
||||
@@ -0,0 +1 @@
|
||||
{{- template "common.golangci-lint" . -}}
|
||||
@@ -0,0 +1 @@
|
||||
{{- template "common.task-helm-upgrade-from-source" . -}}
|
||||
@@ -0,0 +1 @@
|
||||
{{- template "common.task-openshift-client" . -}}
|
||||
1
charts/upload-to-nextcloud/templates/task-promote.yaml
Normal file
1
charts/upload-to-nextcloud/templates/task-promote.yaml
Normal file
@@ -0,0 +1 @@
|
||||
{{- template "common.promote" . -}}
|
||||
1
charts/upload-to-nextcloud/templates/task-s2i-go.yaml
Normal file
1
charts/upload-to-nextcloud/templates/task-s2i-go.yaml
Normal file
@@ -0,0 +1 @@
|
||||
{{- template "common.s2i-go" . -}}
|
||||
1
charts/upload-to-nextcloud/templates/triggerbinding.yaml
Normal file
1
charts/upload-to-nextcloud/templates/triggerbinding.yaml
Normal file
@@ -0,0 +1 @@
|
||||
{{- template "common.triggerbinding" . -}}
|
||||
@@ -0,0 +1 @@
|
||||
{{- template "common.triggertemplate" . -}}
|
||||
25
charts/upload-to-nextcloud/values.yaml
Normal file
25
charts/upload-to-nextcloud/values.yaml
Normal file
@@ -0,0 +1,25 @@
|
||||
# Default values for notification.
|
||||
# This is a YAML-formatted file.
|
||||
# Declare variables to be passed into your templates.
|
||||
|
||||
nameOverride: ""
|
||||
fullnameOverride: ""
|
||||
|
||||
serviceAccount: pipeline
|
||||
storageClassName: nfs-client
|
||||
gitHostname: git.endofday.com
|
||||
quayHostname: quay01.ipa.endofday.com
|
||||
organizationName: goghvideo
|
||||
helmRepoUrl: https://git.endofday.com/goghvideo/helm.git
|
||||
eventlistener:
|
||||
triggerBinding: gitea
|
||||
interceptors:
|
||||
secretKey: sharedSecret
|
||||
secretName: webhook-secret
|
||||
eventTypes:
|
||||
- pull_request
|
||||
additionalFilter:
|
||||
- name: filter
|
||||
value: |
|
||||
body.action in ["opened"]
|
||||
|
||||
Reference in New Issue
Block a user