Skip to content

Archiving Deployments

Aron Heesakkers edited this page Jun 7, 2021 · 2 revisions

Archive sprint in docs repository.

Prerequisites:

  • Should have cloned FIPost/docs locally.
  • Should have a working deployed microk8s environment as 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 ubuntu@fipost.nl:/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

Clone this wiki locally