Skip to content

Commit 7933f95

Browse files
terrytangyuansarabala1979
authored andcommitted
fix: makefile and common variable
Signed-off-by: Saravanan Balasubramanian <[email protected]>
1 parent 0eec0f0 commit 7933f95

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

Makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff 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
589584
githooks: .git/hooks/commit-msg

workflow/common/common.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)