Skip to content

Commit 03fcdd3

Browse files
author
Lyubo Kamenov
authored
Revert "update to 0.13 (#49)" (#51)
This reverts commit f62bd7c.
1 parent f62bd7c commit 03fcdd3

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

controllers/conduit_containers.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,11 @@ func ConduitInitContainers(cc []*v1alpha.ConduitConnector) []corev1.Container {
134134
func ConduitRuntimeContainer(image, version string, envVars []corev1.EnvVar) corev1.Container {
135135
args := []string{
136136
"/app/conduit",
137-
"run",
138137
"-pipelines.path", v1alpha.ConduitPipelineFile,
139138
"-connectors.path", v1alpha.ConduitConnectorsPath,
140139
"-db.type", "sqlite",
141140
"-db.sqlite.path", v1alpha.ConduitDBPath,
142-
"-pipelines.exit-on-degraded",
141+
"-pipelines.exit-on-error",
143142
"-processors.path", v1alpha.ConduitProcessorsPath,
144143
}
145144

controllers/conduit_containers_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,12 +197,11 @@ func Test_ConduitRuntimeContainer(t *testing.T) {
197197
ImagePullPolicy: corev1.PullAlways,
198198
Args: []string{
199199
"/app/conduit",
200-
"run",
201200
"-pipelines.path", "/conduit.pipelines/pipeline.yaml",
202201
"-connectors.path", "/conduit.storage/connectors",
203202
"-db.type", "sqlite",
204203
"-db.sqlite.path", "/conduit.storage/db",
205-
"-pipelines.exit-on-degraded",
204+
"-pipelines.exit-on-error",
206205
"-processors.path",
207206
"/conduit.storage/processors",
208207
},

0 commit comments

Comments
 (0)