Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions argo-workflows/component-constructor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@ components:
helmChart: argo-workflows:1.0.14
helmRepository: https://argoproj.github.io/argo-helm

- name: argo-workflows-chart-values-template
type: yaml
version: "1.0.14"
labels:
- name: opendefense.cloud/helm/values-for
value: argo-workflows-chart
relation: local
input:
type: file
path: values.yaml.tpl

# Workflow Controller Container Image
- name: argo-workflows-controller-image
type: ociImage
Expand Down
11 changes: 11 additions & 0 deletions artifact-conduit/component-constructor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,17 @@ components:
type: ociArtifact
imageReference: ghcr.io/opendefensecloud/charts/arc:v0.2.2

- name: arc-chart-values-template
type: yaml
version: "v0.2.2"
labels:
- name: opendefense.cloud/helm/values-for
value: arc-chart
relation: local
input:
type: file
path: values.yaml.tpl

# API Server Container Image
- name: arc-apiserver-image
type: ociImage
Expand Down
17 changes: 17 additions & 0 deletions artifact-conduit/values.yaml.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{{- $apiserver := index .OCIResources "arc-apiserver-image" }}
apiserver:
image:
repository: "{{ $apiserver.Host }}/{{ $apiserver.Repository }}"
tag: "{{ $apiserver.Tag }}"

{{- $controller := index .OCIResources "arc-controller-manager-image" }}
controller:
image:
repository: "{{ $controller.Host }}/{{ $controller.Repository }}"
tag: "{{ $controller.Tag }}"

{{- $etcd := index .OCIResources "etcd-image" }}
etcd:
image:
repository: "{{ $etcd.Host }}/{{ $etcd.Repository }}"
tag: "{{ $etcd.Tag }}"