Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] change to git_access_token #2319

Merged
merged 1 commit into from
Jul 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/operations/add_cenm_console_corda.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions docs/source/operations/adding_new_org_corda.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion docs/source/operations/fabric_networkyaml.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/source/operations/indy_networkyaml.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion docs/source/operations/install_instantiate_chaincode.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/source/operations/upgrading_chaincode.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading