You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Each method has different use-cases that can be tailored according the needs of the organization.
16
16
17
-
## 1. Continuous Integration
17
+
## 1. Build and Deploy from Source Code
18
18
19
-
Continuous Integration Pipeline allows you to build the container image from a source code repository.
19
+
`Build and Deploy from Source Code` workflow allows you to build the container image from a source code repository.
20
20
21
21
1. From the **Applications** menu, select your application.
22
22
2. On the **App Configuration** page, select **Workflow Editor**.
23
-
3. Select **+ New Build Pipeline**.
24
-
4. Select **Continuous Integration**.
23
+
3. Select **+ New Workflow**.
24
+
4. Select **Build and Deploy from source code**.
25
25
5. Enter the following fields on the **Create build pipeline** screen:
26
26
27
27

@@ -173,14 +173,14 @@ Select **Create Pipeline**.
173
173
>
174
174
> **(b)** The total timeout for the execution of the CI pipeline is by default set as 3600 seconds. This default timeout is configurable according to the use case. The timeout can be edited in the configmap of the orchestrator service in the env variable as `env:"DEFAULT_TIMEOUT" envDefault:"3600"`
175
175
176
-
## 2. Linked CI Pipeline
176
+
## 2. Linked Build Pipeline
177
177
178
-
If one code is shared across multiple applications, `Linked CI Pipeline` can be used, and only one image will be built for multiple applications because if there is only one build, it is not advisable to create multiple CI Pipelines.
178
+
If one code is shared across multiple applications, `Linked Build Pipeline` can be used, and only one image will be built for multiple applications because if there is only one build, it is not advisable to create multiple CI Pipelines.
179
179
180
180
1. From the **Applications** menu, select your application.
181
181
2. On the **App Configuration** page, select **Workflow Editor**.
182
-
3. Select **+ New Build Pipeline**.
183
-
4. Select **Linked CI Pipeline**.
182
+
3. Select **+ New Workflow**.
183
+
4. Select **Linked Build Pipeline**.
184
184
5. Enter the following fields on the **Create linked build pipeline** screen:
@@ -189,12 +189,12 @@ If one code is shared across multiple applications, `Linked CI Pipeline` can be
189
189
* Select the source CI pipeline from the application that you selected above.
190
190
* Enter a name for the linked CI pipeline.
191
191
192
-
Select**Create Linked CI Pipeline**.
192
+
Click**Create Linked CI Pipeline**.
193
193
194
194
After creating a linked CI pipeline, you can create a CD pipeline.
195
195
Builds cannot be triggered from a linked CI pipeline; they can only be triggered from the source CI pipeline. There will be no images to deploy in the CD pipeline created from the 'linked CI pipeline' at first. To see the images in the CD pipeline of the linked CI pipeline, trigger build in the source CI pipeline. The build images will now be listed in the CD pipeline of the 'linked CI pipeline' whenever you trigger a build in the source CI pipeline.
196
196
197
-
## 3. Incoming Webhook
197
+
## 3. Deploy Image from External Service
198
198
199
199
The CI pipeline can receive container images from an external source via webhook API.
0 commit comments