katij-uipath / v23.10_Automation_Suite_Upgrade

0 stars 0 forks source link

Update the cluster config for v22.10 #7

Open katij-uipath opened 1 year ago

katij-uipath commented 1 year ago

Generate a cluster_config.json file based on your current argo setup:

On the primary node run:

alias to move to the current version installer directory

uiv2210

generate a new cluster config file based on your current cluster

./configureUiPathAS.sh config get -o ../../cluster_config.json

Cross reference it with values in your backup v22.4 cluster config in the /opt/UiPathAutomationSuite directory:

To view the 22.4 version backup run: cat /opt/UiPathAutomationSuite/v22.4_cluster_config.json

To edit the 22.10 new cluster config run: vi /opt/UiPathAutomationSuite/cluster_config.json

Notes - The order of parameters will be different between the two files. The order doesn't matter, only the values matter so don't worry about that!

Compare to example here and make manual edits as needed https://docs.uipath.com/automation-suite/docs/advanced-installation-experience

Make sure the following parameters are in the new cluster config. If they do not match below or are not included, edit/add the cluster config to match the below (can copy and paste directly from below):

  "asrobots": {
    "enabled": false,
    "packagecaching": false,
    "packagecachefolder": ""
  },
  "processmining": {
    "enabled": false
  },
"external_object_storage": {
   "enabled": false,
 },

Add certificate section (edit to your certificate path on the primary server):

  "server_certificate": {
    "ca_cert_file": "/opt/UiPathAutomationSuite/certs/2024/cacerts_chain.cer",
    "tls_cert_file": "/opt/UiPathAutomationSuite/certs/2024/tls.crt",
    "tls_key_file": "/opt/UiPathAutomationSuite/certs/2024/cert-decrypted.key"
  },

Save the cluster config with new changes!

katij-uipath commented 1 year ago

updated for v22.10