forked from argoproj/argo-helm
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…defresh-io/workflows-v3.4.4-cap-CR-20826
- Loading branch information
Showing
39 changed files
with
1,009 additions
and
201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
apiVersion: v2 | ||
appVersion: v3.4.4-cap-CR-20826 | ||
appVersion: v3.5.4 | ||
name: argo-workflows | ||
description: A Helm chart for Argo Workflows | ||
type: application | ||
version: 0.22.10-2-CR-20826 | ||
icon: https://raw.githubusercontent.com/argoproj/argo-workflows/master/docs/assets/argo.png | ||
version: 0.40.9 | ||
icon: https://argoproj.github.io/argo-workflows/assets/logo.png | ||
home: https://github.com/argoproj/argo-helm | ||
sources: | ||
- https://github.com/argoproj/argo-workflows | ||
maintainers: | ||
- name: argoproj | ||
url: https://argoproj.github.io/ | ||
annotations: | ||
artifacthub.io/signKey: | | ||
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252 | ||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc | ||
artifacthub.io/changes: | | ||
- kind: fixed | ||
description: Align changelog structure to show changelogs on Artifact Hub | ||
- kind: added | ||
description: Add MySQL persistence support explicitly on README |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# Test with default values | ||
crds: | ||
install: true | ||
keep: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
artifactRepositoryRef: | ||
# 1st ConfigMap | ||
artifact-repositories: | ||
annotations: | ||
workflows.argoproj.io/default-artifact-repository: default-v1-s3-artifact-repository | ||
# 1st data | ||
default-v1-s3-artifact-repository: | ||
archiveLogs: true | ||
s3: | ||
bucket: my-bucket | ||
endpoint: minio:9000 | ||
insecure: true | ||
accessKeySecret: | ||
name: my-minio-cred | ||
key: accesskey | ||
secretKeySecret: | ||
name: my-minio-cred | ||
key: secretkey | ||
# 2nd data | ||
oss-artifact-repository: | ||
archiveLogs: false | ||
oss: | ||
endpoint: http://oss-cn-zhangjiakou-internal.aliyuncs.com | ||
bucket: $mybucket | ||
accessKeySecret: | ||
name: $mybucket-credentials | ||
key: accessKey | ||
secretKeySecret: | ||
name: $mybucket-credentials | ||
key: secretKey | ||
# 2nd ConfigMap | ||
another-artifact-repositories: | ||
annotations: | ||
workflows.argoproj.io/default-artifact-repository: gcs | ||
gcs: | ||
archiveLogs: false | ||
bucket: my-bucket | ||
keyFormat: prefix/in/bucket/{{workflow.name}}/{{pod.name}} | ||
serviceAccountKeySecret: | ||
name: my-gcs-credentials | ||
key: serviceAccountKey |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Test with artifact repository | ||
crds: | ||
keep: false | ||
|
||
useStaticCredentials: true | ||
artifactRepository: | ||
archiveLogs: false | ||
s3: | ||
accessKeySecret: | ||
name: "{{ .Release.Name }}-minio" | ||
key: accesskey | ||
secretKeySecret: | ||
name: "{{ .Release.Name }}-minio" | ||
key: secretkey | ||
insecure: false | ||
bucket: | ||
endpoint: | ||
region: | ||
roleARN: | ||
useSDKCreds: true | ||
encryptionOptions: | ||
enableEncryption: true | ||
gcs: | ||
bucket: project-argo | ||
keyFormat: "{{ `{{workflow.namespace}}/{{workflow.name}}/{{pod.name}}` }}" | ||
serviceAccountKeySecret: | ||
name: my-gcs-credentials | ||
key: serviceAccountKey | ||
azure: | ||
endpoint: https://mystorageaccountname.blob.core.windows.net | ||
container: my-container-name | ||
blobNameFormat: path/in/container | ||
useSDKCreds: true | ||
accountKeySecret: | ||
name: my-azure-storage-credentials | ||
key: account-access-key | ||
|
||
customArtifactRepository: | ||
artifactory: | ||
repoUrl: https://artifactory.example.com/raw | ||
usernameSecret: | ||
name: artifactory-creds | ||
key: username | ||
passwordSecret: | ||
name: artifactory-creds | ||
key: password |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
crds: | ||
install: true | ||
keep: false | ||
|
||
server: | ||
ingress: | ||
enabled: true | ||
hosts: | ||
- argo-workflows.127.0.0.1.xip.io | ||
- argo-workflows.example.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
crds: | ||
install: true | ||
keep: false | ||
|
||
controller: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
crds: | ||
install: true | ||
keep: false | ||
|
||
workflow: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Sample values for High Availability configuration, following https://argoproj.github.io/argo-workflows/high-availability/ | ||
|
||
controller: | ||
# in v3.0+, a second controller can be ran as a hot-standby: https://argoproj.github.io/argo-workflows/high-availability/#workflow-controller | ||
replicas: 2 # should be strictly greater than PDB minAvailable | ||
# enable PDB with at least one Pod | ||
pdb: | ||
# -- Configure [Pod Disruption Budget] for the controller pods | ||
enabled: true | ||
minAvailable: 1 | ||
|
||
server: | ||
# enable HPA with at least two Pods | ||
autoscaling: | ||
# -- Enable Horizontal Pod Autoscaler ([HPA]) for the Argo Server | ||
enabled: true | ||
# -- Minimum number of replicas for the Argo Server [HPA] | ||
minReplicas: 2 # should be strictly greater than PDB minAvailable | ||
# enable PDB with at least one Pod | ||
pdb: | ||
# -- Configure [Pod Disruption Budget] for the controller pods | ||
enabled: true | ||
minAvailable: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
charts/argo-workflows/templates/controller/artifact-repository-ref-cm.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{{- range $cm_name, $cm_val := .Values.artifactRepositoryRef }} | ||
--- | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ $cm_name }} | ||
namespace: {{ $.Release.Namespace | quote }} | ||
labels: | ||
{{- include "argo-workflows.labels" (dict "context" $ "component" $.Values.controller.name "name" $cm_name) | nindent 4 }} | ||
{{- with $cm_val.annotations }} | ||
annotations: | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
data: | ||
{{- range $data_key, $data_val := (omit $cm_val "annotations") }} | ||
{{- $data_key | nindent 2 }}: | | ||
{{- toYaml $data_val | nindent 4 }} | ||
{{- end }} | ||
{{- end }} |
Oops, something went wrong.