Archiving Deployments - FIPost/docs GitHub Wiki
Archive sprint in docs repository.
Prerequisites:
- Should have cloned
FIPost/docslocally. - Should have a working deployed
microk8s environmentas described on this page.
Step 1
Go to the folder deployments.
cd docs/deployments
Step 2
Copy the deployment files from the server.
scp -r {username}@{ipaddress or domain name}:{server folder where yaml's are stored} .
Example
scp -r [email protected]:/home/ubuntu/kube_config .
Step 3
Rename the folder to the current sprint. In this example sprint-4 is used.
mv kube_config sprint-4
Step 4
Add, commit and push the changes.
git add .
git commit -m "sprint-4"
git push