This project is mirrored from https://gitee.com/cowcomic/pixie.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
  1. 15 May, 2021 2 commits
    • Michelle Nguyen's avatar
      PC-915 Add admin UI for managing orgs · f9ad5444
      Michelle Nguyen authored
      Summary:
      add admin UI for users to manage org settings.
      screenshot:
      {F156675}
      
      Test Plan: tried with staging + yarn dev
      
      Reviewers: nlanam, philkuz, vihang
      
      Reviewed By: nlanam
      
      JIRA Issues: PC-915
      
      Differential Revision: https://phab.corp.pixielabs.ai/D8631
      
      GitOrigin-RevId: 38f8b4a8c9283461e4e28b3784df732d6212d2cd
      f9ad5444
    • Michelle Nguyen's avatar
      PC-898 Add admin UI for managing org users · 251bed55
      Michelle Nguyen authored
      Summary:
      This diff adds the admin UI page where users can go and approve other users. the button will only show up if the user is unapproved.
      screenshot:
      {F156630}
      
      Test Plan: updated staging with latest backend changes, and used yarn dev
      
      Reviewers: nlanam, philkuz, vihang
      
      Reviewed By: nlanam, philkuz
      
      JIRA Issues: PC-898
      
      Differential Revision: https://phab.corp.pixielabs.ai/D8625
      
      GitOrigin-RevId: 2365aa4ddf5201b1ff68e532563bb66ad7876b5f
      251bed55
  2. 14 May, 2021 30 commits
  3. 13 May, 2021 8 commits
    • Michelle Nguyen's avatar
      PP-2736 Update vz hearbeat proto to contain autoUpdate config · 45cd44de
      Michelle Nguyen authored
      Summary:
      we are moving the autoupdate config to helm charts, which ultimately leads to a configmap.
      this diff adds autoUpdate to the heartbeat, so that the vizier can inform vzmgr of whether autoupdate is disabled or not.
      
      Test Plan: n/a
      
      Reviewers: zasgar, vihang, nserrino
      
      Reviewed By: vihang
      
      JIRA Issues: PP-2736
      
      Differential Revision: https://phab.corp.pixielabs.ai/D8601
      
      GitOrigin-RevId: 68b6aab8e1e13367d988376513e59d71902e096e
      45cd44de
    • Michelle Nguyen's avatar
      PP-2736 Disable users to enable/disable auto-update from CLI · 34cf0492
      Michelle Nguyen authored
      Summary: we are updating autoUpdate so that users can disable/enable it from a helm chart config. this means we should disable our old scheme of changing autoupdate, as we want to avoid a complex splitbrain problem where it can be updated from two separate methods
      
      Test Plan: tried it out, `px config update` will complain this field is no longer update-able through this method
      
      Reviewers: vihang, zasgar, nserrino
      
      Reviewed By: vihang
      
      JIRA Issues: PP-2736
      
      Differential Revision: https://phab.corp.pixielabs.ai/D8600
      
      GitOrigin-RevId: 94de2e6594bf19c895dc9d62163cc91d9604e12e
      34cf0492
    • Michelle Nguyen's avatar
      PC-900 Add UpdateOrgUser proto in profile service · aa26bd54
      Michelle Nguyen authored
      Summary: this diff updates UpdateUser so that we can also set the "isApproved" field. there are permission checks to make sure the user can update their profile picture/another user is authorized to approve the user.
      
      Test Plan: existing tests pass  + new unit tests
      
      Reviewers: vihang, philkuz, nserrino
      
      Reviewed By: vihang, philkuz
      
      Differential Revision: https://phab.corp.pixielabs.ai/D8570
      
      GitOrigin-RevId: db872709324060f144241c85e6b3e1de1c577c3e
      aa26bd54
    • Michelle Nguyen's avatar
      Revert "[PC-674] UI Performance Improvements; start to untangle state management" · 19c20562
      Michelle Nguyen authored
      Summary:
      This reverts commit ed05cc19bb9ace61579aa5591ed9d552f2917dc2.
      this introduces a few bugs, such as breaking tracepoint execution, and incorrect handling of error states when a user runs an invalid script.
      
      Test Plan: ran on staging. confirmed the existing bugs are gone.
      
      Reviewers: vihang, nlanam
      
      Reviewed By: vihang, nlanam
      
      Differential Revision: https://phab.corp.pixielabs.ai/D8599
      
      GitOrigin-RevId: 676173af1221c4e3dc3cacce57ef5a59284d5bfd
      19c20562
    • Vihang Mehta's avatar
      Remove/reserve some deprecated proto fields · cfe03a4f
      Vihang Mehta authored
      Summary: Move reserved to the bottom, remove fields marked as deprecated.
      
      Test Plan: Existing tests.
      
      Reviewers: zasgar
      
      Reviewed By: zasgar
      
      Differential Revision: https://phab.corp.pixielabs.ai/D8560
      
      GitOrigin-RevId: 6d028b664deaa54105d0983b677a9e1ea76f8ccd
      cfe03a4f
    • Vihang Mehta's avatar
      Fix hydra clients valid callbacks · 8714b413
      Vihang Mehta authored
      Summary: TSIA
      
      Test Plan: Ran it
      
      Reviewers: philkuz
      
      Reviewed By: philkuz
      
      Differential Revision: https://phab.corp.pixielabs.ai/D8592
      
      GitOrigin-RevId: 9533ab31b40dc59011d0cdaef840a7e6ce83ce10
      8714b413
    • Omid Azizi's avatar
      Test for BPF map leaks caused by Unix Domain Sockets · d7e12450
      Omid Azizi authored
      Summary:
      This contains a disabled test that demonstrates that we have a BPF map leak with Unix domain sockets.
      
      Next step will be to figure out how to fix the BPF map leak.
      
      Test Plan: This is a demonstrative test.
      
      Reviewers: #stirling, yzhao
      
      Reviewed By: #stirling, yzhao
      
      Subscribers: yzhao
      
      JIRA Issues: PP-2735
      
      Differential Revision: https://phab.corp.pixielabs.ai/D8580
      
      GitOrigin-RevId: 52dcb288b3ef108ecb7a4708fe7b4e20f187de21
      d7e12450
    • Omid Azizi's avatar
      UnixSocket class · dcdc4e22
      Omid Azizi authored
      Summary: Parallels TCPSocket. To be used in a test for leaking BPF map entries.
      
      Test Plan: Test included.
      
      Reviewers: #stirling, yzhao
      
      Reviewed By: #stirling, yzhao
      
      Subscribers: yzhao
      
      JIRA Issues: PP-2735
      
      Differential Revision: https://phab.corp.pixielabs.ai/D8579
      
      GitOrigin-RevId: d0d60edb0ff36291bbc672bb1c7a5d435d3a5641
      dcdc4e22