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
I am deploying Siebel 18 using Ansible uri (rest api) and I was successful until I reached the gateway cluster where I need to do the manual equivalent of clicking + (meaning add node service or node registry).
Hi
I am deploying Siebel 18 using Ansible uri (rest api) and I was successful until I reached the gateway cluster where I need to do the manual equivalent of clicking + (meaning add node service or node registry).
The code shown below,
uri:
url: "https://{{hostvars[groups['gateway.test.com'][0]]['ansible_default_ipv4']['address']}}:8111/siebel/v1.0/cloudgateway/deployments/gatewaycluster/"
force_basic_auth: yes
user: sadmin
password: sadmin
validate_certs: no
method: POST
body_format: json
return_content: yes
timeout: 600
body:
DeploymentInfo:
ProfileName: sib_gatewaycluster_profile
Action: Deploy
GatewayClusterNodeServiceList:
PhysicalHostIP: gateway.test.com:8011
PhysicalHostIP: web.test.com:8011
PhysicalHostIP: app.test.com:8011
GatewayClusterNodeRegistryList:
PhysicalHostIP: gateway.test.com:8011
PhysicalHostIP: web.test.com:8011
PhysicalHostIP: app.test.com:8011
environment:
https_proxy: ""
register: deploy_gateway_cluster_registries_profile
Is having this error,
atal: [10.1.2.6]: FAILED! => {"changed": false, "connection": "close", "content": "Unrecognized field "GatewayClusterNodeRegistry" (class com.siebel.opcgw.cloudgateway.config.gateway.GatewayClusterDeployment), not marked as ignorable (5 known properties: "DeploymentInfo", "RegistryClusterStatus", "GatewayClusterNodeRegistryList", "ServiceClusterStatus", "GatewayClusterNodeServiceList"])\n at [Source: (String)"{"GatewayClusterNodeRegistry": {"PhysicalHostIP":
So I don't know the equivalent of click + as show here,
So before the code,
body:
DeploymentInfo:
ProfileName: sib_gatewaycluster_profile
Action: Deploy
There should be a command that is equivalent to click +.
Please help.
The text was updated successfully, but these errors were encountered: