This section will indicate the steps to follow to configure the code repository.
Make a fork of the repository to your work area in GitHub. This way you can modify the code freely.
Clone the repository to your computer:
Change
YOUR-GITHUB-USER
by your user on GitHub.
git clone [email protected]:YOUR-GITHUB-USER/gitops-get-started.git
Access the cloned repository directory:
cd gitops-get-started
Modify the installation file so that it uses your repository as the source of origin:
Change
YOUR-GITHUB-USER
by your user on GitHub.
sed -i "" "s/mmorejon/YOUR-GITHUB-USER/g" scripts/install.sh
Commit the changes and send them to your repository on GitHub:
git add scripts/install.sh
git commit -sm 'Change github repository.'
git push origin master
Next: Setup Digital Ocean