Add scenario question

This commit is contained in:
abregman 2019-12-05 00:24:31 +02:00
parent c0e52f6e47
commit 3a2f0c64a6
3 changed files with 16 additions and 3 deletions

View File

@ -1,12 +1,12 @@
# DevOps Interview Questions # DevOps Interview Questions
:information_source:  This repository contains interview questions on various DevOps and SRE related topics :information_source:  This repository contains questions on various DevOps and SRE related topics
:bar_chart:  There are currently **582** questions :bar_chart:  There are currently **582** questions
:books:  To learn more about DevOps check the resources in [DevOpsBit.com](https://devopsbit.com) :books:  To learn more about DevOps check the resources in [DevOpsBit.com](https://devopsbit.com)
:warning:  The purpose of this repo is to help you test your knowledge and/or prepare for interviews. It doesn't represents a DevOps interview. Please read [Q&A](common-qa.md) for more details :warning:  The purpose of this repo is to help you test your knowledge and prepare for interviews. It doesn't represents a DevOps interview. Please read [Q&A](common-qa.md) for more details
:pencil:  You can add more questions & answers by submitting pull requests :) You can read more about it [here](CONTRIBUTING.md) :pencil:  You can add more questions & answers by submitting pull requests :) You can read more about it [here](CONTRIBUTING.md)
@ -4198,6 +4198,7 @@ Below you can find several scenario questions:
* [Cloud Slack bot](scenarios/cloud_slack_bot.md) * [Cloud Slack bot](scenarios/cloud_slack_bot.md)
* [Jenkins: writing scripts](scenarios/jenkins_scripts.md) * [Jenkins: writing scripts](scenarios/jenkins_scripts.md)
* [Jenkins: writing pipelines](scenarios/jenkins_pipelines.md) * [Jenkins: writing pipelines](scenarios/jenkins_pipelines.md)
* [CI for open source project](scenarios/ci_for_open_source_project.md)
## Credits ## Credits

View File

@ -0,0 +1,12 @@
## CI for Open Source Project
1. Choose an open source project from Github and fork it
2. Create a CI pipeline/workflow for the project you forked
3. The CI pipeline/workflow will include anything that is relevant to the project you forked. For example:
* If it's a Python project, you will run PEP8
* If the project has unit tests directory, you will run these unit tests as part of the CI
4. In a separate file, describe what is running as part of the CI and why you chose to include it. You can also describe any thoughts, dilemmas, challenge you had
### Bonus
Containerize the app of the project you forked using any containerization technology you want.

View File

@ -1,3 +1,3 @@
#!/bin/bash #!/bin/bash
echo $((6 + $(cat README.md | grep \<\/summary\> | wc -l))) echo $((7 + $(cat README.md | grep \<\/summary\> | wc -l)))