Skip to content

Instantly share code, notes, and snippets.

@dedoussis
Last active March 31, 2022 09:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dedoussis/0bd4ae3806e63a8bbbb78c4b5fd74795 to your computer and use it in GitHub Desktop.
Save dedoussis/0bd4ae3806e63a8bbbb78c4b5fd74795 to your computer and use it in GitHub Desktop.
Support request flow
flowchart TD
    support_request(You have a support request)
    squad_member_decision{Can a fellow engineer of your team help?}
    devops_champion_decision{Can the DevOps champion of your team help?}
    sre_decision{Can the SRE of your team help?}
    cloud_support_ask(Ask cloud support)
    resolved(Resolved)

    support_request-->squad_member_decision
    squad_member_decision--Yes-->resolved
    squad_member_decision--No-->devops_champion_decision
    devops_champion_decision--Yes-->resolved
    devops_champion_decision--No-->sre_decision
    sre_decision--Yes-->resolved
    sre_decision--No-->cloud_support_ask
    cloud_support_ask-->resolved
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment