File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -576,14 +576,9 @@ validate-examples: api/jsonschema/schema.json
576576 cd examples && go test
577577
578578# pre-push
579-
580- <<<<<<< HEAD
581- .PHONY : pre-commit
582- pre-commit : codegen lint test start
583- ====== =
584579.git/hooks/commit-msg : hack/git/hooks/commit-msg
585580 cp -v hack/git/hooks/commit-msg .git/hooks/commit-msg
586- >>>>>>> 0fb104481... build : prevent bad commit messages, fix broken builds ( # 7086)
581+
587582
588583.PHONY : githooks
589584githooks : .git/hooks/commit-msg
Original file line number Diff line number Diff line change @@ -75,6 +75,13 @@ const (
7575 // LabelKeyOnExit is a label applied to Pods that are run from onExit nodes, so that they are not shut down when stopping a Workflow
7676 LabelKeyOnExit = workflow .WorkflowFullName + "/on-exit"
7777
78+ // LabelKeyConfigMapType is the label key for the type of configmap.
79+ LabelKeyConfigMapType = "workflows.argoproj.io/configmap-type"
80+ // LabelValueTypeConfigMapCache is a key for configmaps that are memoization cache.
81+ LabelValueTypeConfigMapCache = "Cache"
82+ // LabelValueTypeConfigMapParameter is a key for configmaps that contains parameter values.
83+ LabelValueTypeConfigMapParameter = "Parameter"
84+
7885 // ExecutorArtifactBaseDir is the base directory in the init container in which artifacts will be copied to.
7986 // Each artifact will be named according to its input name (e.g: /argo/inputs/artifacts/CODE)
8087 ExecutorArtifactBaseDir = "/argo/inputs/artifacts"
You can’t perform that action at this time.
0 commit comments