copyright | lastupdated | keywords | subcollection | ||
---|---|---|---|---|---|
|
2025-01-17 |
schematics agent deploying, deploying agent, agent deploy, command-line, api, ui |
schematics |
{{site.data.keyword.attribute-definition-list}}
{: #update-agent-overview}
Update an agent configuration in the currently selected {{site.data.keyword.bpshort}} region to work directly in your cloud infrastructure. Updating an agent does not validate or deploy your agent. Select the agent version to update. You can analyze the activity logs and recover the update. {: shortdesc}
Following are the scenarios that you must use agent upgrade.
- To incorporate the issues, features, or vulnerable images by {{site.data.keyword.bpshort}}. For example, you are using agent version is
1.0.0
. If {{site.data.keyword.bpshort}} releasesv1.0.x
, you can use agent update to upgradev1.0.0
-v1.1.1
. - To update an agent metadata such as
name
,description
,tags
,resource group
,version
, andagent_metadata
attributes. - You can use
agent update
to revoke the updated version to its existing version.
Agent update cannot be done on a deployed agent through terraform init
, terraform plan
, and terraform apply
on the workspace with the deployed agent.
{: important}
{: #update-prereq}
Review and select your agent version to update. {: shortdesc}
{: #update-agent-ui} {: ui}
Update your agent configuration by choosing the cluster and {{site.data.keyword.cos_full_notm}} of your choice.
- Log in to {{site.data.keyword.cloud_notm}} console{: external}.
- Click the Menu icon > Platform Automation > Schematics > Extensions{: external}.
- Select your agent:
- Select Actions > Edit Agent
- You can edit the Description, Cluster, COS instance name, COS bucket name, COS bucket region, or Agent version as in the requirement.
- Select your agent:
- Click Update and validate to validate the cluster and {{site.data.keyword.cos_full_notm}} configuration.
- Click Deploy to redeploy an agent.
{: #update-agent-cli} {: cli}
Select the {{site.data.keyword.cloud_notm}} region where you want to update and manage your agent. Set the CLI region command by running ibmcloud target -r <region>
. Select the same region as the location
specified on the agent create
command. The {{site.data.keyword.cos_full_notm}} bucket location must be of the form eu-gb
or us-south
and not a city name. For more information, see the agent update command.
Example
ibmcloud schematics agent update --id AGENT_ID --location <us-south> --agent-location <us-south> --version <1.0.0> --infra-type <ibm_kubernetes> --cluster-id <cg3fgvad0dak571xxx> --cluster-resource-group <Default> --cos-instance-name <agent-cos-instance> --cos-bucket <agent-cos-bucket> --cos-location <us-east> --resource-group <Default>
{: pre}
{: #verify-agent-update-cli} {: cli}
ibmcloud schematics agent get --id agent-ga-prod-cli-jan-10.soA.cd1c
{: pre}
{: #update-agent-api} {: api}
Follow the steps to update an IAM access token and authenticate with {{site.data.keyword.bpshort}} through the API. For more information, see Update an agent.
You can use the refresh_token
to get a new IAM access token if you IAM token is expired.
{: important}
Example
curl -X PUT https://schematics.cloud.ibm.com/v2/agents/{agent_id} \-H 'Authorization: Bearer <Auth Key>' -H 'X-Feature-Agents: true' -H 'refresh_token: <refresh_token> ' -d '{
"name": "AgentName",
"description": "New Description",
"resource_group": "Default",
"tags": [
"tag1",
"tag2"
],
"version": "v1.0.0",
"schematics_location": "us-south",
"agent_location": "us-south",
"agent_infrastructure": {
"infra_type": "ibm_kubernetes",
"cluster_id": "cluster_id",
"cluster_resource_group": "Default",
"cos_instance_name": "blueprint_basic",
"cos_bucket_name": "sample_bucket_name",
"cos_bucket_region": "us-east"
},
"agent_inputs": [
{
"name": "ibmcloud_api_key",
"value": "<api_key of the account where cluster and cos are present>",
"metadata": {
"secure": true
}
},
{
"name": "ansible_pull_ibmcloud_api_key",
"value": "jenkins api_key for pulling agents images",
"metadata": {
"secure": true
}
},
{
"name": "devops_api_key",
"value": "api_key where you want to create agent and run fvts",
"metadata": {
"secure": true
}
}
],
"user_state": {
"state": "enable"
}
}'
{: codeblock}
Verify that the agent definition is created successfully as shown in the output. Record the agent ID for use in subsequent commands. For example, agentb1-gsmforvpc.soA.115c
.
Now, run the agent deploy
API with the agent ID
to update the {{site.data.keyword.bpshort}} workspace that deploys the agent. The agent deploy
operation starts both the agent validate
, and agent deploy
operations to setup the agent.
Syntax
PUT /v2/agents/<enter your agentID>/deploy HTTP/1.1
Host: schematics.cloud.ibm.com
Content-Type: application/json
Authorization: Bearer
{: codeblock}
{: #agent_version-releases}
Find a summary of changes for each version of {{site.data.keyword.bpshort}} Agents. Be sure to keep your {{site.data.keyword.bpshort}} Agents up-to-date so that you can use all the available features. {: shortdesc}
Version | Release date | Changes |
---|---|---|
1.3.0 | 30 October 2024 | Supports schematics-agent-ansible-job instead of an existing schematics-ansible-job and Terraform version 1.9 |
1.2.0 | 23 September 2024 | Supports Terraform version 1.5 and 1.6 |
1.1.1 | 23 July 2024 | Enhanced the agent deletion timeout period and agent deploy issues are fixed. |
1.1.0 | 19 March 2024 | Added support for the {{site.data.keyword.bpshort}} Agents on the {{site.data.keyword.redhat_openshift_notm}} {{site.data.keyword.containershort_notm}}. |
1.0.0 | 10 January 2024 | {{site.data.keyword.bpshort}} support for agent is generally available (GA) with full production support. For more information, see Release note. |
{: caption="{{site.data.keyword.bpshort}} Agents version history" caption-side="bottom"} |
{: #agent-update-nextsteps}
- You can delete an agent, display an agent, or create an agent.
- You can check out the agent FAQ for any common questions that are related to deleting an agent.