How to public your posts to github-page?
- Fork the repo https://github.com/vietkubers/vietkubers.github.io to your Github account
- Clone the above forked repo to your local directory
$ git clone https://github.com/$USER/vietkubers.github.io.git
- Create a markdown file in folder _post and name it as
yyyy-mm-dd-name-of-article.md
$ cd vietkubers.github.io.git/_post $ touch yyyy-mm-dd-name-of-article.md
- Modify the created post with declaration section as:
--- title: Deploying multiple nodes with Kubeadm tags: [linux, tutorials, kubernetes] keywords: linux, networking last_updated: November 21, 2018 sidebar: mydoc_sidebar permalink: yyyy-mm-dd-name-of-article.html folder: mydoc ---
Please refer to this example post for more details.
- Commit, push and create your Pull Request
For the step-by-step process, refer to this article [1]
Reference
[1] https://vietkubers.github.io/linux/tutorials/kubernetes/2018/11/16/github-workflow.html
Author: truongnh1992