From ff68ad438ceb439e8fbb76062998ba98ae65197c Mon Sep 17 00:00:00 2001 From: "Roy,Sownak" Date: Thu, 20 Jul 2023 08:14:01 +0000 Subject: [PATCH] [docs] change to git_access_token Signed-off-by: Roy,Sownak --- docs/source/operations/add_cenm_console_corda.md | 4 ++-- docs/source/operations/adding_new_org_corda.md | 4 ++-- docs/source/operations/fabric_networkyaml.md | 2 +- docs/source/operations/indy_networkyaml.md | 4 ++-- docs/source/operations/install_instantiate_chaincode.md | 2 +- docs/source/operations/upgrading_chaincode.md | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/source/operations/add_cenm_console_corda.md b/docs/source/operations/add_cenm_console_corda.md index f9d2da83f54..d0ec1d962f7 100644 --- a/docs/source/operations/add_cenm_console_corda.md +++ b/docs/source/operations/add_cenm_console_corda.md @@ -106,7 +106,7 @@ network: root_token: "vault_root_token" # Git Repo details which will be used by GitOps/Flux. - # Do not check-in git_password + # Do not check-in git_access_token gitops: git_protocol: "https" # Option for git over https or ssh git_url: "gitops_ssh_url" # Gitops https or ssh url for flux value files like "https://github.com/hyperledger/bevel.git" @@ -115,7 +115,7 @@ network: chart_source: "gitops_charts" # Relative Path where the Helm charts are stored in Git repo git_repo: "gitops_repo_url" # Gitops git repository URL for git push like "github.com/hyperledger/bevel.git" username: "git_username" # Git Service user who has rights to check-in in all branches - password: "git_password" # Git Server user access token (Optional for ssh; Required for https) + password: "git_access_token" # Git Server user access token (Optional for ssh; Required for https) email: "git_email" # Email to use in git config private_key: "path_to_private_key" # Path to private key file which has write-access to the git repo (Optional for https; Required for ssh) diff --git a/docs/source/operations/adding_new_org_corda.md b/docs/source/operations/adding_new_org_corda.md index 780808bb844..c7165b926d8 100644 --- a/docs/source/operations/adding_new_org_corda.md +++ b/docs/source/operations/adding_new_org_corda.md @@ -105,7 +105,7 @@ network: root_token: "vault_root_token" # Git Repo details which will be used by GitOps/Flux. - # Do not check-in git_password + # Do not check-in git_access_token gitops: git_protocol: "https" # Option for git over https or ssh git_url: "gitops_ssh_url" # Gitops https or ssh url for flux value files like "https://github.com/hyperledger/bevel.git" @@ -114,7 +114,7 @@ network: chart_source: "gitops_charts" # Relative Path where the Helm charts are stored in Git repo git_repo: "gitops_repo_url" # Gitops git repository URL for git push like "github.com/hyperledger/bevel.git" username: "git_username" # Git Service user who has rights to check-in in all branches - password: "git_password" # Git Server user access token (Optional for ssh; Required for https) + password: "git_access_token" # Git Server user access token (Optional for ssh; Required for https) email: "git_email" # Email to use in git config private_key: "path_to_private_key" # Path to private key file which has write-access to the git repo (Optional for https; Required for ssh) diff --git a/docs/source/operations/fabric_networkyaml.md b/docs/source/operations/fabric_networkyaml.md index 5a7467a59ba..e89f3bd5c1e 100644 --- a/docs/source/operations/fabric_networkyaml.md +++ b/docs/source/operations/fabric_networkyaml.md @@ -440,7 +440,7 @@ Each organization with type as peer will have a peers service. The snapshot of p maindirectory: "chaincode_main" #The main directory where chaincode is needed to be placed repository: username: "git_username" # Git Service user who has rights to check-in in all branches - password: "git_password" + password: "git_access_token" url: "github.com/hyperledger/bevel.git" branch: develop path: "chaincode_src" #The path to the chaincode diff --git a/docs/source/operations/indy_networkyaml.md b/docs/source/operations/indy_networkyaml.md index 41df09a80ac..e3cfbda23af 100644 --- a/docs/source/operations/indy_networkyaml.md +++ b/docs/source/operations/indy_networkyaml.md @@ -206,7 +206,7 @@ The `vault` field under each organisation contains: For gitops fields the snapshot from the sample configuration file with the example values is below ```yaml # Git Repo details which will be used by GitOps/Flux. - # Do not check-in git_password + # Do not check-in git_access_token gitops: git_protocol: "https" # Option for git over https or ssh git_url: "gitops_ssh_url" # Gitops https or ssh url for flux value files like "https://github.com/hyperledger/bevel.git" @@ -215,7 +215,7 @@ For gitops fields the snapshot from the sample configuration file with the examp chart_source: "gitops_charts" # Relative Path where the Helm charts are stored in Git repo git_repo: "gitops_repo_url" # Gitops git repository URL for git push like "github.com/hyperledger/bevel.git" username: "git_username" # Git Service user who has rights to check-in in all branches - password: "git_password" # Git Server user password/ user token (Optional for ssh; Required for https) + password: "git_access_token" # Git Server user password/ user token (Optional for ssh; Required for https) email: "git_email" # Email to use in git config private_key: "path_to_private_key" # Path to private key file which has write-access to the git repo (Optional for https; Required for ssh) diff --git a/docs/source/operations/install_instantiate_chaincode.md b/docs/source/operations/install_instantiate_chaincode.md index 41ca4645211..5ef1d8afdbc 100644 --- a/docs/source/operations/install_instantiate_chaincode.md +++ b/docs/source/operations/install_instantiate_chaincode.md @@ -44,7 +44,7 @@ network: maindirectory: "chaincode_main" #The main directory where chaincode is needed to be placed repository: username: "git_username" # Git Service user who has rights to check-in in all branches - password: "git_password" + password: "git_access_token" url: "github.com/hyperledger/bevel.git" branch: develop path: "chaincode_src" #The path to the chaincode diff --git a/docs/source/operations/upgrading_chaincode.md b/docs/source/operations/upgrading_chaincode.md index fe0bfc2dfa1..bebb366b801 100644 --- a/docs/source/operations/upgrading_chaincode.md +++ b/docs/source/operations/upgrading_chaincode.md @@ -47,7 +47,7 @@ network: lang: "java" # The chaincode language, optional field with default vaule of 'go'. repository: username: "git_username" # Git Service user who has rights to check-in in all branches - password: "git_password" + password: "git_access_token" url: "github.com/hyperledger/bevel.git" branch: develop path: "chaincode_src" #The path to the chaincode