The private CA signed certificate can cause SSL error in Python if the it is not trusted. How to manage it? Well, it really depends on the Python module that you use. I will give a few examples that I have seen so far. pip Pip is the popular python package manage tool. To check … Continue reading Manage Private CA file in Python
Category: Scripting
git sparse-checkout command for monorepo
We are implementing monorepo internally to let all teams work closely. As there are dependencies between each team's work, it is important to understand and track the cross-project changes that go into the monorepo. Monorepo is a good practice that brings in better collaboration, but it also introduces some inconveniences. The biggest complaints I heard … Continue reading git sparse-checkout command for monorepo
Ansible example – get dictionary value
Here is a quick sample to show how Ansible can get the value from a dictionary: https://gist.github.com/jc1518/b249a6930a1dc7bfcf85181df02844dd To test it: ansible-playbook accounts.yaml -e env=dev
Jira sprint query sample
Just remember to add 'includeFutureSprints=true' if you need to find out the future Sprint. By default, it is only up to current Active sprint. Here is a nodejs sample: https://gist.github.com/jc1518/8c0605f9620b976d6ceede659d5b280c
Use includeArchivedSpaces parameter in CQL
By default the archived Confluence space won't be listed the search results in the Confluence UI. This also applies to CQL. If you want to include the archived space in your CQL query result, then you need to add includeArchivedSpaces=true in your CQL query. For example, I want to find out all Confluence spaces (including … Continue reading Use includeArchivedSpaces parameter in CQL