commit d712883fef4cc2e40ed956298be56819a56aa1e3 Author: Mike Phares Date: Fri May 19 10:26:32 2023 -0700 Examples diff --git a/Applications/OpenInsight/Create New OpenInsight User.md b/Applications/OpenInsight/Create New OpenInsight User.md new file mode 100644 index 0000000..2ef1ee8 --- /dev/null +++ b/Applications/OpenInsight/Create New OpenInsight User.md @@ -0,0 +1,20 @@ +1. From OpenInsight developer screen → Go to Database Manager + - Database -> + - User Management -> + - Insert New User name + - Click Add + - Select Password Never Expires + - Save +2. From SRP → SRP Computer Solutions, Inc. → SRP Utilities → SRP_Editor add to APP_INFO -> AD_TO_LSL_USER_MAP in alphabetical order + - Field 2 - Enter in OI name(All Upercase, take note of second pos number + - Field 1- Enter in AD Name in same position +3. User Config in OI UI + - Open new user account + - Enter in their info +4. Password First Initial-year-last initial-qtr# +5. Next go to AD Manager + - Add user to IFX-RDA-iApps-OpenInsight-MES + - Add user to MES-APP-OpenInsight-Users + - Link to AD Group Editor: + +https://idms-web.infineon.com/ADGroupEditor/ADGroups/SearchGroups \ No newline at end of file diff --git a/DevOps/DNS and SSL.md b/DevOps/DNS and SSL.md new file mode 100644 index 0000000..3fa229b --- /dev/null +++ b/DevOps/DNS and SSL.md @@ -0,0 +1,27 @@ +# DNS Order + +https://smptools.infineon.com/smptinyurl/orderable/?name=SSO-New%20DNS%20Entry%20%281%29 + + +![](Images\image-2023-4-26_12-24-36.png) + +# Server Certificate (SSL/TLS) Order + +https://smptools.infineon.com/smptinyurl/orderable/?name=SSO-Certificate%20Request + +```bash +cd "C:\Program Files\Git\usr\bin" +openssl +req -x509 -nodes -days 365 -newkey rsa:2048 -keyout L:\Git\NGINX-Conf\conf\includes\localhost.key -out L:\Git\NGINX-Conf\conf\includes\localhost.crt -config L:\Git\NGINX-Conf\conf\includes\localhost.conf +req -newkey rsa:2048 -keyout L:\Git\NGINX-Conf\conf\includes\localhost.key -out L:\Git\NGINX-Conf\conf\includes\certificate-signing-request.csr -config L:\Git\NGINX-Conf\conf\includes\localhost.conf +``` + +![](Images\image-2023-4-26_12-25-33.png) + +```bash +# ssl_certificate "includes/localhost.crt"; +# ssl_certificate_key "includes/localhost.key"; +ssl_certificate "includes/eaf-dev-reporting.mes.infineon.com.cer"; +ssl_password_file "includes/eaf-dev-reporting.mes.infineon.com.pass"; +ssl_certificate_key "includes/eaf-dev-reporting.mes.infineon.com.key"; +``` diff --git a/DevOps/Images/image-2023-4-26_12-24-36.png b/DevOps/Images/image-2023-4-26_12-24-36.png new file mode 100644 index 0000000..1937086 Binary files /dev/null and b/DevOps/Images/image-2023-4-26_12-24-36.png differ diff --git a/DevOps/Images/image-2023-4-26_12-25-33.png b/DevOps/Images/image-2023-4-26_12-25-33.png new file mode 100644 index 0000000..4b1f70b Binary files /dev/null and b/DevOps/Images/image-2023-4-26_12-25-33.png differ diff --git a/DevOps/Work Items.md b/DevOps/Work Items.md new file mode 100644 index 0000000..4fca112 --- /dev/null +++ b/DevOps/Work Items.md @@ -0,0 +1,50 @@ +* Work Item "plan-track-work" https://learn.microsoft.com/en-us/azure/devops/boards/get-started/plan-track-work?view=azure-devops&tabs=agile-process + * Epic (Maybe Mesa FI Roadmap session Item) + * Test Case (Checklist) + * Feature (Mesa FI Roadmap session Item) https://ishare.na.infineon.com/sites/MesaFI/Libraries/Forms/AllItems.aspx?RootFolder=%2Fsites%2FMesaFI%2FLibraries%2FRoadmap%20Workshops&View=%7B7FA76ABF%2D0C30%2D4681%2D81AC%2D828C653927F2%7D + * Nested User Stories + * Nested Test Case + * Task + * Child of User Story + * Internal FI request + * Will be created by EAF Cell Instance after 60 seconds + * If fields Req, Submitted and Requestor are populated + * System.AreaPath + * Mesa_FI + * System.IterationPath + * Mesa_FI + * Title + * {fIBacklogMesa.Requestor.Split(' ').First()}{keySection}{fIBacklogMesa.Req} + * Description + * Req:{fiBacklogMesa.Req}; Submitted:{(dateTime == DateTime.MinValue ? fiBacklogMesa.Submitted : dateTime.ToString("d-MMM-yy"))}; Requestor:{fiBacklogMesa.Requestor}; AssignedTo:{fiBacklogMesa.AssignedTo}; SecondResource:{fiBacklogMesa.SecondResource}; Systems:{fiBacklogMesa.SystemS}; + * User Story (Backlog record) + * User Story has + * Title (Subject - from Requestor) + * Assigned to (Assigned To ) + * State & Reason (Status) + 1. Active & Implementation Started > In process + 2. Closed & Acceptance tests pass > CMP + 3. New & Moved to backlog > Open + 4. Removed & Removed from backlog > CNCL + 5. Resolved & Cope complete and unit tests pass > UAT + 6. _? (Vote either 3. | 4.) > Hold + * Area (System) + * Mesa_FI if multiple applications (Tasks will be one area) + * Iteration "The iteration within which this user story will be implemented [Field Name: Iteration Path]" + * Mesa_FI\(Default) + * Description (Description) + * Discussion (Updates) + * Try to keep in sync + * Priority (Priority but out of sync okay) + * Development + * Link Automated tests + * Link builds + * Link Releases + * Related Work + * Parent (Work Item - Feature) + * Child (Requestor if no Work Item - Feature) + * Link EAF CI created task matching Backlog Req + * Children + * To track sub tasks + * Bug (Backlog record) + * same as User Story \ No newline at end of file