Skip to content

Commit e6d3aad

Browse files
Kersten RichterGitHub Enterprise
authored andcommitted
Merge pull request #475 from cloud-docs/next-publish-push
Next publish push
2 parents aa5ad0e + 1b6aeac commit e6d3aad

13 files changed

+36
-33
lines changed

app-domainmapping.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
copyright:
44
years: 2022, 2023
5-
lastupdated: "2023-11-16"
5+
lastupdated: "2023-12-19"
66

77
keywords: domain mapping, custom domain, 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, domain mappings, custom domain mappings, CNAME, TLS, TLS secret, private key, certificate
88

@@ -51,7 +51,7 @@ Before you begin
5151

5252
* [Obtain a custom domain from a domain registrar and its signed TLS certificate and private key](/docs/codeengine?topic=codeengine-domain-mappings#prepare-custom-domain).
5353
* [Create a project](/docs/codeengine?topic=codeengine-manage-project).
54-
* [Create an app](/docs/codeengine?topic=codeengine-deploy-app#deploy-app-console).
54+
* [Create an app](/docs/codeengine?topic=codeengine-deploy-app&interface=ui#deploy-app-console).
5555

5656

5757
1. From the [{{site.data.keyword.codeengineshort}} Projects page](https://cloud.ibm.com/codeengine/projects){: external}, go to your project.
@@ -109,7 +109,7 @@ Before you begin
109109
* Obtain the signed TLS certificate and the private key for your custom domain.
110110
* Set up your [{{site.data.keyword.codeengineshort}} CLI](/docs/codeengine?topic=codeengine-install-cli) environment.
111111
* [Create a project](/docs/codeengine?topic=codeengine-manage-project).
112-
* [Create an app](/docs/codeengine?topic=codeengine-deploy-app#deploy-app-cli).
112+
* [Create an app](/docs/codeengine?topic=codeengine-deploy-app&interface=cli#deploy-app-cli).
113113
114114
When your domain name is registered, you have a signed TLS certificate and its matching private key for this domain, and you have an existing {{site.data.keyword.codeengineshort}} application, you are ready to add a custom domain mapping to this application. You can use the **`domainmapping create`** command in the CLI to create a custom domain mapping with your {{site.data.keyword.codeengineshort}} application.
115115

appdeploy-update.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
copyright:
44
years: 2020, 2023
5-
lastupdated: "2023-09-19"
5+
lastupdated: "2023-12-19"
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

@@ -46,7 +46,7 @@ When you deploy your updated app, the latest version of your referenced containe
4646
## Updating your app from the console
4747
{: #update-app-console}
4848

49-
Update the application that you created in [Deploying an application from a public registry from the console](/docs/codeengine?topic=codeengine-deploy-app#deploy-app-console) to add an environment variable.
49+
Update the application that you created in [Deploying an application from a public registry from the console](/docs/codeengine?topic=codeengine-deploy-app&interface=ui#deploy-app-console) to add an environment variable.
5050

5151
1. Navigate to your application page. One way to navigate to your application page is to
5252
* Locate the [{{site.data.keyword.codeengineshort}} Projects page](https://cloud.ibm.com/codeengine/projects){: external}.
@@ -104,7 +104,7 @@ By changing the visibility of your app, the change is effective immediately. It
104104
To update your app with the CLI, use the **`app update`** command. This command requires the name of the app that you want to update and also allows other optional arguments. For a complete listing of options, see the [**`ibmcloud ce app update`**](/docs/codeengine?topic=codeengine-cli#cli-application-update) command.
105105
{: shortdesc}
106106

107-
Update the application that you created in [Deploying an application with the CLI](/docs/codeengine?topic=codeengine-deploy-app#deploy-app-cli) to add an environment variable.
107+
Update the application that you created in [Deploying an application with the CLI](/docs/codeengine?topic=codeengine-deploy-app&interface=cli#deploy-app-cli) to add an environment variable.
108108

109109
The sample `icr.io/codeengine/hello` image reads the environment variable `TARGET`, and prints `Hello ${TARGET}`. If this environment variable is empty, `Hello World` is returned. The following example updates the app to modify the value of the `TARGET` environment variable to `Stranger`. For more information about the code that is used for this example, see [`hello`](https://github.com/IBM/CodeEngine/tree/main/hello){: external}.
110110

configmap.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
copyright:
44
years: 2020, 2023
5-
lastupdated: "2023-09-27"
5+
lastupdated: "2023-12-19"
66

77
keywords: configmaps with code engine, key references with code engine, key-value pair with code engine, setting up configmaps with code engine, configmaps, environment variables
88

@@ -266,7 +266,7 @@ The following example describes how to reference an existing configmap with an a
266266
```
267267
{: pre}
268268
269-
2. [Deploy an app](/docs/codeengine?topic=codeengine-deploy-app#deploy-app-cli) and reference the `myliteralconfigmap` configmap. For this example, create an app that uses the `hello` image. When a request is sent to this sample app, the app reads the environment variable `TARGET` and prints `Hello ${TARGET}`. If this environment variable is empty, `Hello World` is returned. Reference the `myliteralconfigmap` configmap. For more information about the code that is used for this example, see [`hello`](https://github.com/IBM/CodeEngine/tree/main/hello){: external}.
269+
2. [Deploy an app](/docs/codeengine?topic=codeengine-deploy-app&interface=cli#deploy-app-cli) and reference the `myliteralconfigmap` configmap. For this example, create an app that uses the `hello` image. When a request is sent to this sample app, the app reads the environment variable `TARGET` and prints `Hello ${TARGET}`. If this environment variable is empty, `Hello World` is returned. Reference the `myliteralconfigmap` configmap. For more information about the code that is used for this example, see [`hello`](https://github.com/IBM/CodeEngine/tree/main/hello){: external}.
270270
271271
```txt
272272
ibmcloud ce app create --name myhelloapp --image icr.io/codeengine/hello --env-from-configmap myliteralconfigmap

environment-vars.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
copyright:
44
years: 2022, 2023
5-
lastupdated: "2023-07-07"
5+
lastupdated: "2023-12-19"
66

77
keywords: environment variables with code engine, environment variables, creating environment variables, working with environment variables, key-value pair
88

@@ -41,7 +41,7 @@ Before you begin
4141

4242

4343
1. To open the dialog to define your environment variable on the Add environment variable page, complete one of the following choices.
44-
* If you are [creating an app](/docs/codeengine?topic=codeengine-deploy-app#deploy-app-console), from the Create application page, expand the **Environment variables (optional)** section. You can add one or more environment variables to the app that you are creating. Click **Add** to open the Add environment variable page.
44+
* If you are [creating an app](/docs/codeengine?topic=codeengine-deploy-app&interface=ui#deploy-app-console), from the Create application page, expand the **Environment variables (optional)** section. You can add one or more environment variables to the app that you are creating. Click **Add** to open the Add environment variable page.
4545
* If you are [creating a job](/docs/codeengine?topic=codeengine-create-job#create-job-ui), from the Create job page, expand the **Environment variables (optional)** section. Click **Add** to open the Add environment variable page.
4646
* If you are [creating a function](/docs/codeengine?topic=codeengine-fun-create-inlinecode#fun-create-inline-console), from the Create function page, expand the **Environment variables (optional)** section. Click **Add** to open the Add environment variable page.
4747
* If you are updating an existing workload to add environment variables, go to the existing app, job, or function. From the **Configuration** tab, click **Environment variables**. For apps, click **Edit and create a new revision**, and then click **Add environment variable**. For jobs and functions, click **Add environment variable** to open the Add environment variable page.

iam.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
copyright:
44
years: 2023
5-
lastupdated: "2023-09-27"
5+
lastupdated: "2023-12-19"
66

77
keywords: IAM access for code engine, permissions for code engine, identity and access management for code engine, roles for code engine, actions for code engine, assigning access for code engine, user access, access, platform roles, service roles
88

@@ -54,8 +54,8 @@ To manage access or assign new access for users by using access groups, you must
5454

5555
Choose any of the following actions to manage access groups in the {{site.data.keyword.cloud_notm}}:
5656

57-
* [Creating an access group](/docs/account?topic=account-groups#create_ag).
58-
* [Assigning access to a group](/docs/account?topic=account-groups#access_ag).
57+
* [Creating an access group](/docs/account?topic=account-groups&interface=ui#create_ag).
58+
* [Assigning access to a group](/docs/account?topic=account-groups&interface=ui#access_ag).
5959

6060
For more information about IAM commands, see the [IAM CLI reference docs](/docs/account?topic=account-ibmcloud_commands_iam).
6161

@@ -67,8 +67,8 @@ To manage access or assign new access for users by using IAM policies, you must
6767
Choose any of the following actions to manage IAM policies in the {{site.data.keyword.cloud_notm}}:
6868

6969
* To grant permissions to a user, see [Assigning access](/docs/account?topic=account-assign-access-resources#assign-new-access).
70-
* To revoke permissions, see [Removing access](/docs/account?topic=account-assign-access-resources#removing-access-console).
71-
* To review a user's permissions, see [Reviewing your assigned access](/docs/account?topic=account-assign-access-resources#review-your-access-console).
70+
* To revoke permissions, see [Removing access](/docs/account?topic=account-assign-access-resources&interface=ui#removing-access-console).
71+
* To review a user's permissions, see [Reviewing your assigned access](/docs/account?topic=account-assign-access-resources&interface=ui#review-your-access-console).
7272

7373
For more information about IAM commands, see the [IAM CLI reference docs](/docs/account?topic=account-ibmcloud_commands_iam).
7474

landing.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"title": "Code Engine",
3-
"lastupdated": "2023-12-12",
3+
"lastupdated": "2023-12-19",
44
"introduction": "Find out how you can use Code Engine to run your containerized workloads",
55
"section_devtools": {
66
"api": "/apidocs/codeengine/v2",

logging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
copyright:
44
years: 2020, 2023
5-
lastupdated: "2023-09-06"
5+
lastupdated: "2023-12-19"
66

77
keywords: logging for code engine, logs for code engine, job logs for code engine, app logs for code engine, build logs for code engine, logs
88

@@ -82,7 +82,7 @@ conform to [limits for {{site.data.keyword.la_full_notm}} logs](/docs/log-analys
8282

8383
Your {{site.data.keyword.la_short}} instance is now configured such that it can receive platform logging for your {{site.data.keyword.codeengineshort}} app.
8484

85-
Alternatively, you can configure a {{site.data.keyword.la_short}} instance by using the [Observability dashboard](https://cloud.ibm.com/observe/logging) to create the instance, and then by [configuring platform logs](/docs/log-analysis?topic=log-analysis-config_svc_logs#config_svc_logs_ui). After you create your instance, click **Configure platform logs**. Select the {{site.data.keyword.la_short}} instance to receive the platform log data by specifying a region and your log instance. You can also apply [filters for your search](#view-logs-filters) in {{site.data.keyword.la_short}} for your {{site.data.keyword.codeengineshort}} log data.
85+
Alternatively, you can configure a {{site.data.keyword.la_short}} instance by using the [Observability dashboard](https://cloud.ibm.com/observe/logging) to create the instance, and then by [configuring platform logs](/docs/log-analysis?topic=log-analysis-config_svc_logs&interface=ui#config_svc_logs_ui). After you create your instance, click **Configure platform logs**. Select the {{site.data.keyword.la_short}} instance to receive the platform log data by specifying a region and your log instance. You can also apply [filters for your search](#view-logs-filters) in {{site.data.keyword.la_short}} for your {{site.data.keyword.codeengineshort}} log data.
8686

8787
### Viewing job logs from the console
8888
{: #view-joblogs-ui}

servicebind-config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
copyright:
44
years: 2020, 2023
5-
lastupdated: "2023-07-07"
5+
lastupdated: "2023-12-19"
66

77
keywords: binding in code engine, service bind in code engine, integrating services in code engine, integrating service with app in code engine, integrating service with job in code engine, adding credentials for service in code engine, service bind, access, prefix, CE_SERVICES, bind, bound, unbinding, project, integrating service with function in code engine
88

@@ -24,7 +24,7 @@ Before you begin
2424

2525
* [Create a project](/docs/codeengine?topic=codeengine-manage-project).
2626
* Create a {{site.data.keyword.codeengineshort}} workload to bind to your service instance. The workload that you want to bind to the service instance must exist.
27-
* [Create an app](/docs/codeengine?topic=codeengine-deploy-app#deploy-app-console)
27+
* [Create an app](/docs/codeengine?topic=codeengine-deploy-app&interface=ui#deploy-app-console)
2828
* [Create a job](/docs/codeengine?topic=codeengine-create-job#create-job-ui)
2929
* [Create a function](/docs/codeengine?topic=codeengine-fun-create-inlinecode)
3030
* Create the service instance that you want to bind to your {{site.data.keyword.codeengineshort}} workload.

sitemap.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
copyright:
44
years: 2023
5-
lastupdated: "2023-12-12"
5+
lastupdated: "2023-12-19"
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

@@ -2224,11 +2224,11 @@ Find what you are looking for in the compilation of {{site.data.keyword.codeengi
22242224

22252225
[Deploying app workloads from images in a public registry](/docs/codeengine?topic=codeengine-deploy-app#deploy-app)
22262226

2227-
* [Deploying an app from the console](/docs/codeengine?topic=codeengine-deploy-app#deploy-app-console)
2227+
* [Deploying an app from the console](/docs/codeengine?topic=codeengine-deploy-app&interface=ui#deploy-app-console)
22282228

2229-
* [Deploying an app with the CLI](/docs/codeengine?topic=codeengine-deploy-app#deploy-app-cli)
2229+
* [Deploying an app with the CLI](/docs/codeengine?topic=codeengine-deploy-app&interface=cli#deploy-app-cli)
22302230

2231-
* [Next steps](/docs/codeengine?topic=codeengine-deploy-app#nextsteps-appdeploypub)
2231+
* [Next steps](/docs/codeengine?topic=codeengine-deploy-app&interface=cli#nextsteps-appdeploypub)
22322232

22332233
[Deploying app workloads from images in {{site.data.keyword.registrylong_notm}}](/docs/codeengine?topic=codeengine-deploy-app-crimage#deploy-app-crimage)
22342234

subscription-cos.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
copyright:
44
years: 2020, 2023
5-
lastupdated: "2023-02-21"
5+
lastupdated: "2023-12-19"
66

77
keywords: cos event, object storage event, event producers, code engine, events, header, environment variables, subscription, subscribing
88

@@ -71,7 +71,7 @@ You can create and update {{site.data.keyword.cos_full_notm}} event subscription
7171
Before you begin
7272

7373
* [Create a project](/docs/codeengine?topic=codeengine-manage-project).
74-
* [Create an application](/docs/codeengine?topic=codeengine-deploy-app#deploy-app-console). For example, create an application that is called `myapp` that uses the `icr.io/codeengine/cos-event` image. This image is built from `cos-listen.go`, available from the [Samples for {{site.data.keyword.codeenginefull_notm}} GitHub repo](https://github.com/IBM/CodeEngine/tree/main/cos-event){: external}.
74+
* [Create an application](/docs/codeengine?topic=codeengine-deploy-app&interface=ui#deploy-app-console). For example, create an application that is called `myapp` that uses the `icr.io/codeengine/cos-event` image. This image is built from `cos-listen.go`, available from the [Samples for {{site.data.keyword.codeenginefull_notm}} GitHub repo](https://github.com/IBM/CodeEngine/tree/main/cos-event){: external}.
7575

7676
Complete the following steps to create and update an {{site.data.keyword.cos_full_notm}} event subscription for an application from the console.
7777

0 commit comments

Comments
 (0)