Skip to content

Commit

Permalink
Merge fe5a15d into f1ba469
Browse files Browse the repository at this point in the history
  • Loading branch information
sidpremkumar committed May 21, 2020
2 parents f1ba469 + fe5a15d commit 5e8ebb0
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Sync2Jira documentation
quickstart
config-file
continuous_deployment
sync_page


.. toctree::
Expand Down
22 changes: 22 additions & 0 deletions docs/source/sync_page.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Sync Page
======================
We noticed that sometimes tickets would be lost and not sync. This would require taking down the entire service in order to re-sync that one ticket. To fix this we created a flask micro-service that provides a UI for users to sync individual repos.

The following environmental variables will have to be set:

Related to OpenShift:
1. :code:`CA_URL` :: CA URL used for sync2jira
2. :code:`DEFAULT_SERVER` :: Default server to use for mailing
3. :code:`DEFAULT_FROM` :: Default from to use for mailing
4. :code:`USER` :: JIRA username
5. :code:`CONFLUENCE_SPACE` :: Confluence space (should be set to "mock_confluence_space" as we don't want any confluence syncing)
6. :code:`INITIALIZE` :: True/False Initialize our repos on startup (Should be set to "0")
7. :code:`IMAGE_URL` :: Image URL:TAG to pull from
8. :code:`JIRA_PNT_PASS` :: PNT password in base64
9. :code:`JIRA_OMEGAPRIME_PASS` :: Omegaprime password in base64
10. :code:`GITHUB_TOKEN` :: GitHub token in base64
11. :code:`PAAS_DOMAIN` :: Domain to use for the service

You can also use the OpenShift template to quickly deploy this service (it can be found in the repo under :code:`openshift/sync2jira-sync-page-template.yaml`)

Once deployed, you can go to the url :code:`sync2jira-page-sync.PAAS_DOMAIN` to select and sync individual repos!
4 changes: 2 additions & 2 deletions openshift/sync2jira-sync-page-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ parameters:
displayName: Confluence space
required: true
value: "mock_confluence_space"
- name: INITILIZE
displayName: True/False Initilize our repos on startup
- name: INITIALIZE
displayName: True/False Initialize our repos on startup
value: "0"
- name: IMAGE_URL
displayName: Image URL:TAG to pull from
Expand Down

0 comments on commit 5e8ebb0

Please sign in to comment.