Skip to content

Commit 445005d

Browse files
author
cfsdocs
committed
Frances Overby: Merge pull request #3404 from coligo/fmo-upd-15Feb24-a
1 parent 7fd110f commit 445005d

9 files changed

+22
-27
lines changed

batch-tutorial.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
copyright:
44
years: 2020, 2024
5-
lastupdated: "2024-02-14"
5+
lastupdated: "2024-02-15"
66

77
keywords: job tutorial, jobs, images for code engine jobs, tutorial for code engine, job log
88

@@ -56,7 +56,7 @@ After you create your job and specify your workload configuration information, y
5656
Note that when you run your job, the latest version of your referenced container image is downloaded and deployed, unless you specified a tag for the image. If a tag is specified for the image, then the tagged image is used for the job.
5757

5858
1. Navigate to your job page.
59-
* From the [{{site.data.keyword.codeengineshort}} Projects page](https://cloud.ibm.com/codeengine/projects){: external}, click the name of your project. Click **Jobs** to open a listing of your jobs.
59+
* From the [{{site.data.keyword.codeengineshort}} Projects page](https://cloud.ibm.com/codeengine/projects){: external}, click the name of your project. Click **Jobs** to work with your jobs and job runs.
6060
* From the Jobs page, click the **Jobs** tab, and click the name of the job that you want to run.
6161

6262
2. From your job page, click **Submit job** to submit a job that is based on the current configuration.
@@ -98,7 +98,7 @@ You can manage your job by fine tuning your job configuration, which includes up
9898
When the job is in a ready state, you can update the job. Let's update the job that you created previously to change the container image from `icr.io/codeengine/firstjob` to `icr.io/codeengine/testjob` and then update an environment variable. When a request is sent to this `icr.io/codeengine/testjob` sample job, the job reads the environment variable `TARGET` and prints `"Hello ${TARGET}!"`. If this environment variable is empty, `"Hello World!"` is returned. For more information about the code that is used for this example, see [`testjob`](https://github.com/IBM/CodeEngine/tree/main/testjob){: external}.
9999

100100
1. Navigate to your job page.
101-
* From the [{{site.data.keyword.codeengineshort}} Projects page](https://cloud.ibm.com/codeengine/projects){: external}, click the name of your project. Click **Jobs** to open a listing of your jobs.
101+
* From the [{{site.data.keyword.codeengineshort}} Projects page](https://cloud.ibm.com/codeengine/projects){: external}, click the name of your project. Click **Jobs** to work with your jobs and job runs.
102102
* From the Jobs page, click the **Jobs** tab, and click the name of the job that you want to update.
103103

104104
2. From the **Configuration** tab, update the image reference of your job. Provide the name of your image or configure an image. Update the name of the image from `icr.io/codeengine/firstjob` to `icr.io/codeengine/testjob`. Click **Deploy**.

envvar-autoinject.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22

33
copyright:
4-
years: 2020, 2023
5-
lastupdated: "2023-11-30"
4+
years: 2020, 2024
5+
lastupdated: "2024-02-15"
66

77
keywords: applications in code engine, apps in code engine, http requests in code engine, deploy apps in code engine, app workloads in code engine, deploying workloads in code engine, application, app, memory, cpu, environment variables
88

@@ -69,3 +69,5 @@ Note that each job run instance gets its own index from the array of indices tha
6969
While the job itself doesn't have a URL associated with it, the `CE_DOMAIN` and `CE_SUBDOMAIN` values might be useful if you need to reference an application that is running in the same project. The full external URL of this application is `appName.CE_SUBDOMAIN.CE_DOMAIN`. To reference the private URL of an application, use `appName.CE_SUBDOMAIN`.
7070

7171

72+
73+

faq.md

+1-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
copyright:
44
years: 2020, 2024
5-
lastupdated: "2024-01-11"
5+
lastupdated: "2024-02-15"
66

77
keywords: faq for code engine, project faq for code engine, feedback for code engine, code samples for code engine, terms of service for code engine, faq, feedback, terms, code samples, project, code engine, limits
88

@@ -78,13 +78,6 @@ The result of a Docker build that you run on your local system is the same conta
7878
3. You can build your container image by using the [Buildpacks build strategy](/docs/codeengine?topic=codeengine-plan-build#build-strategy) instead of Dockerfile, which detects your sources for various languages and automatically builds a container out of it.
7979
4. If you have an image that was built with a non-Intel based processor, {{site.data.keyword.codeengineshort}} can rebuild it for you.
8080

81-
## Why do images that are built by using a {{site.data.keyword.codeengineshort}} buildpacks build show up in my container registry as being more than 15,000 days old?
82-
{: #buildpacksbld-image-size}
83-
{: faq}
84-
{: support}
85-
86-
Buildpacks create [reproducible builds](https://buildpacks.io/docs/reference/reproducibility/){: external} of container images. When the same sources are built with the same version of the build tool, then the produced image has the same identifier. The identifier of an image is based not only on the files that are inside the image, but also based on dates in the metadata of the image. Part of this metadata is the creation timestamp. The [Buildpacks community](https://buildpacks.io/community){: external} set all these dates in the image metadata to a fixed timestamp in 1980 to achieve reproducibility.
87-
8881
## Why do images that are built with non-Intel processors not work with {{site.data.keyword.codeengineshort}}?
8982
{: #buildimage-nonintel}
9083
{: faq}

fun-work.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
copyright:
44
years: 2023, 2024
5-
lastupdated: "2024-02-14"
5+
lastupdated: "2024-02-15"
66

77
keywords: code engine, function, create function, code engine function, create code engine function
88

@@ -193,7 +193,7 @@ To run your function in {{site.data.keyword.codeengineshort}}, your code must im
193193
- Does not support the `multipart/form-data` request header.
194194

195195

196-
## Options for visibility for a {{site.data.keyword.codeengineshort}} functions
196+
## Options for visibility for a {{site.data.keyword.codeengineshort}} function
197197
{: #optionsvisibilityfun}
198198

199199
With {{site.data.keyword.codeengineshort}}, you can determine the right level of visibility for your function by defining the endpoints, or system domain mappings that are available for receiving requests.
@@ -205,7 +205,7 @@ You can deploy your function with the following visibility levels:
205205

206206
| Setting | Description |
207207
| --------- | ------------------- |
208-
| [internal (project)](#fun-endpoint-projectonly) | A function with this setting can receive requests from components in the same {{site.data.keyword.codeengineshort}} project. Setting an internal (project) endpoint means that your function is not accessible from the public internet and network access is only possible from other {{site.data.keyword.codeengineshort}} components that are running within the same {{site.data.keyword.codeengineshort}} project. This endpoint is always enabled. **IMPORTANT** A function cannot invoke another function, job, or app using the internal routes.|
208+
| [internal (project)](#fun-endpoint-projectonly) | A function with this setting can receive requests from components in the same {{site.data.keyword.codeengineshort}} project. Setting an internal (project) endpoint means that your function is not accessible from the public internet and network access is only possible from other {{site.data.keyword.codeengineshort}} components that are running within the same {{site.data.keyword.codeengineshort}} project. This endpoint is always enabled. **IMPORTANT:** A function cannot invoke another function, job, or app using the internal routes.|
209209
| [public](#fun-endpoint-public) | A function with this setting is exposed to the internet and your {{site.data.keyword.codeengineshort}} project. Setting a public endpoint means that your function can receive requests from the public internet or from components within your {{site.data.keyword.codeengineshort}} project. This setting is the default. |
210210
| [private](#fun-endpoint-private) | A function with this setting is exposed to the {{site.data.keyword.cloud_notm}} private network and your {{site.data.keyword.codeengineshort}} project. Setting a private endpoint means that your function is not accessible from the public internet and network access is only possible from other {{site.data.keyword.cloud_notm}} services by using Virtual Private Endpoints (VPE) or {{site.data.keyword.codeengineshort}} components that are running in the same project.|
211211
{: caption="Table 1. Visibility for functions" caption-side="bottom"}

job-update.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
copyright:
44
years: 2020, 2024
5-
lastupdated: "2024-02-14"
5+
lastupdated: "2024-02-15"
66

77
keywords: jobs in code engine, batch jobs in code engine, running jobs with code engine, creating jobs with code engine, images for jobs in code engine, jobs, job run, environment variables
88

@@ -48,7 +48,7 @@ When you run your updated job, the latest version of your referenced container i
4848
When a job is in ready state, you can update the job. Let's update the `myjob` job that you created previously to change the container image from `icr.io/codeengine/firstjob` to `icr.io/codeengine/testjob` and then subsequently update an environment variable. When a request is sent to this `icr.io/codeengine/testjob` sample job, the job reads the environment variable `TARGET` and prints `"Hello ${TARGET}!"`. If this environment variable is empty, `"Hello World!"` is returned. For more information about the code that is used for this example, see [`testjob`](https://github.com/IBM/CodeEngine/tree/main/testjob){: external}.
4949

5050
1. Navigate to your job page.
51-
* From the [{{site.data.keyword.codeengineshort}} Projects page](https://cloud.ibm.com/codeengine/projects){: external}, click the name of your project. Click **Jobs** to open a listing of your jobs.
51+
* From the [{{site.data.keyword.codeengineshort}} Projects page](https://cloud.ibm.com/codeengine/projects){: external}, click the name of your project. Click **Jobs** to work with your jobs and job runs.
5252
* From the Jobs page, click the **Jobs** tab, and click the name of the job that you want to update.
5353

5454
2. From the **Configuration** tab, update the image reference of your job. Provide the name of your image or configure an image. Update the name of the image from `icr.io/codeengine/firstjob` to `icr.io/codeengine/testjob`. Click **Deploy**.

landing.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"title": "Code Engine",
3-
"lastupdated": "2024-02-14",
3+
"lastupdated": "2024-02-15",
44
"introduction": "Find out how you can use Code Engine to run your containerized workloads",
55
"section_devtools": {
66
"api": "/apidocs/codeengine/v2",

plan-build.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
copyright:
44
years: 2024
5-
lastupdated: "2024-01-08"
5+
lastupdated: "2024-02-15"
66

77
keywords: build for code engine, planning for code engine, source code building for code engine, source code repositories and code engine, image builds for code engine, container image builds for code engine, build strategy for code engine, build size for code engine, build, build run, source repository, image registry
88

@@ -79,6 +79,7 @@ The version of a specific runtime for a Paketo buildpack might differ between re
7979

8080

8181

82+
8283
## Determine the size of the build
8384
{: #build-size}
8485

release-notes.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
copyright:
44
years: 2020, 2024
5-
lastupdated: "2024-02-14"
5+
lastupdated: "2024-02-15"
66

77
keywords: release notes for code engine, updates in code engine, what's new in code engine, document changes in code engine, updates, release notes
88

@@ -24,8 +24,9 @@ Use the release notes to learn about the latest changes to {{site.data.keyword.c
2424
{: #codeengine-feb24}
2525

2626

27+
2728
### 14 February 2024
28-
{: #codeengine-febxx24}
29+
{: #codeengine-feb1424}
2930
{: release-note}
3031

3132
Added the `ibm_codeengine_job_name` attribute to the `ibm_codeengine_jobruns` metric for monitoring job runs in {{site.data.keyword.codeengineshort}}

sitemap.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
copyright:
44
years: 2024
5-
lastupdated: "2024-02-14"
5+
lastupdated: "2024-02-15"
66

77
keywords: sitemap, code engine, about, tutorial, project, app, job, configmaps, secret, event, log, monitor, cli, api, troubleshoot, support, source code, faq, memory, cpu, commands, arguments, release notes
88

@@ -138,7 +138,7 @@ Find what you are looking for in the compilation of {{site.data.keyword.codeengi
138138

139139
* [February 2024](/docs/codeengine?topic=codeengine-codeengine-relnotes#codeengine-feb24)
140140

141-
* [14 February 2024](/docs/codeengine?topic=codeengine-codeengine-relnotes#codeengine-febxx24)
141+
* [14 February 2024](/docs/codeengine?topic=codeengine-codeengine-relnotes#codeengine-feb1424)
142142

143143
* Added the `ibm_codeengine_job_name` attribute to the `ibm_codeengine_jobruns` metric for monitoring job runs in {{site.data.keyword.codeengineshort}}
144144

@@ -2554,7 +2554,7 @@ Find what you are looking for in the compilation of {{site.data.keyword.codeengi
25542554

25552555
* [Function data input/output characteristics](/docs/codeengine?topic=codeengine-fun-work#functions-data)
25562556

2557-
* [Options for visibility for a {{site.data.keyword.codeengineshort}} functions](/docs/codeengine?topic=codeengine-fun-work#optionsvisibilityfun)
2557+
* [Options for visibility for a {{site.data.keyword.codeengineshort}} function](/docs/codeengine?topic=codeengine-fun-work#optionsvisibilityfun)
25582558

25592559
* [Deploying your function with an internal endpoint](/docs/codeengine?topic=codeengine-fun-work#fun-endpoint-projectonly)
25602560

@@ -4091,8 +4091,6 @@ Find what you are looking for in the compilation of {{site.data.keyword.codeengi
40914091

40924092
* [What is the difference between a Docker build on my system and a build in {{site.data.keyword.codeengineshort}}?](/docs/codeengine?topic=codeengine-faqs#dockerbld-cebuild)
40934093

4094-
* [Why do images that are built by using a {{site.data.keyword.codeengineshort}} buildpacks build show up in my container registry as being more than 15,000 days old?](/docs/codeengine?topic=codeengine-faqs#buildpacksbld-image-size)
4095-
40964094
* [Why do images that are built with non-Intel processors not work with {{site.data.keyword.codeengineshort}}?](/docs/codeengine?topic=codeengine-faqs#buildimage-nonintel)
40974095

40984096
* [Do {{site.data.keyword.codeengineshort}} apps support WebSockets?](/docs/codeengine?topic=codeengine-faqs#app-websockets)

0 commit comments

Comments
 (0)