Kubespray (kubespray) in own ansible playbooks repo
-
- All forked public repos at github will be also public, so never commit sensitive data to your public forks.
- List of all forked repos could be retrieved from github page of original project.
- All forked public repos at github will be also public, so never commit sensitive data to your public forks.
Add forked repo as submodule to desired folder in your existent ansible repo(for example 3d/kubespray):Git will create .gitmodules file in your existent ansible repo:
Configure git to show submodule status:
git config --global status.submoduleSummary true
Add original kubespray repo as upstream:
git remote add upstream https://github.com/kubernetes-sigs/kubespray.git
Sync your master branch with upstream:
git checkout master
git fetch upstream
git merge upstream/master
git push origin master
Create a new branch which you will use in your working environment:
git checkout -b work
Never use master branch of your repository for your commits.Modify path to library and roles in your ansible.cfg file (role naming should be uniq, you may have to rename your existent roles if they have same names as kubespray project):
Modify your ansible inventory file by adding mapping of your existent groups (if any) to kubespray naming.For example:
#Kargo groups:
[kube-node:children]
kubenode
[k8s-cluster:children]
kubernetes
[etcd:children]
kubemaster
kubemaster-ha
[kube-master:children]
kubemaster
kubemaster-ha
[kubespray:children]
- Last entry here needed to apply kubespray.yml config file, renamed from all.yml of kubespray project.
Now you can include kubespray tasks in you existent playbooks by including cluster.yml file:
Or your could copy separate tasks from cluster.yml into your ansible repository.
Commit changes to your ansible repo. Keep in mind, that submodule folder is just a link to the git commit hash of your forked repo.When you update your “work” branch you need to commit changes to ansible repo as well.Other members of your team should use ,
git submodule update --init
to get actual code from submodule.
Contributing
If you made useful changes or fixed a bug in existent kubespray repo, use this flow for PRs to original kubespray repo.
Sign the CNCF CLA.
Setup desired user.name and user.email for submodule.If kubespray is only one submodule in your repo you could use something like:
git submodule foreach --recursive 'git config user.name "First Last" && git config user.email "your-email-addres@used.for.cncf"'
Sync with upstream master:
git fetch upstream
git merge upstream/master
git push origin master
Create new branch for the specific fixes that you want to contribute:
git checkout -b fixes-name-date-index
Branch name should be self explaining to you, adding date and/or index will help you to track/delete your old PRs.Find git hash of your commit in “work” repo and apply it to newly created “fix” repo:
If your have several temporary-stage commits - squash them using Also you could use interactive rebase (
git rebase -i HEAD~10
) to delete commits which you don’t want to contribute into original repo.When your changes is in place, you need to check upstream repo one more time because it could be changed during your work.Check that you’re on correct branch:
git status
And pull changes from upstream (if any):git pull --rebase upstream master
Open you forked repo in browser, on the main page you will see proposition to create pull request for your newly created branch. Check proposed diff of your PR. If something is wrong you could safely delete “fix” branch on github using
git push origin --delete fixes-name-date-index
, and start whole process from the beginning.If everything is fine - add description about your changes (what they do and why they’re needed) and confirm pull request creation.