<template> <div class="services"> <PageHeader title="SERVICES" /> <h2> PLATFORM ONE ENTERPRISE SERVICES </h2> <p class="section-description mx-auto px-5"> Platform One provides additional pay-per-use services and contract vehicles to facilitate teams' adoption and move to DevSecOps. The list of services will continuously evolve. </p> <div class="container text-left"> <div class="row "> <div class="col-lg-5"> <h4 class="title">CUSTOM DEVELOPMENT SERVICES</h4> <ul> <li> Build and deliver new and accredited custom software applications (microservices) by leveraging the Platform One pipeline and following Platform One's DoD Continuous Authority to Operate (cATO) (pay per app) </li> <li> To learn more about these capabilities, please contact <a href="mailto:usaf.cso@mail.mil?subject=Platform One Custom Development Services Question" > usaf.cso@mail.mil </a> with Subject: "Platform One Custom Development Services Question" </li> </ul> </div> <div class="col-lg-5"> <h4 class="title"> PLATFORM ONE <br />CYBERSECURITY/PEN-TESTING SERVICES </h4> <ul> <li> Ability to pen-test a DevSecOps environment at various classification levels (pay per use) </li> <li> To learn more about these capabilities, please contact <a href="mailto:usaf.cso@mail.mil?subject=Platform One Pen-testing Options Question" > usaf.cso@mail.mil </a> with Subject: "Platform One Pen-testing Options Question" </li> </ul> </div> </div> <div class="row"> <div class="col-lg-5"> <h4 class="title"> PLATFORM ONE CONTINUOUS INTEGRATION / CONTINUOUS DELIVERY (CI/CD) WITH INFRASTRUCTURE AS CODE (IAC) </h4> <ul> <li> Teams can use existing CI/CD pipelines hosted on Repo One with their current Infrastructure as Code (IaC) code </li> <li> If a custom CI/CD pipeline is needed due to specifi program mission needs, check out the Big Bang options </li> <li> To learn more about these capabilities, please contact <a href="mailto:usaf.cso@mail.mil?subject=Platform One CI/CD Options Question" > usaf.cso@mail.mil </a> with Subject: "Platform One CI/CD Options Question" </li> </ul> </div> <div class="col-lg-5"> <h4 class="title">CLOUD NATIVE ACCESS POINT (CNAP)</h4> <ul> <li> The Cloud Native Acess Point is available on Cloud One to provide access to Development, Testing, and Production enclaves at IL-2, IL-4, and IL-5 that use Platform One DevSecOps environments by using an internet-facing Cloud-native Zero </li> <!-- <li> CNAP diagram <a href="TODO/somewhere" target="_blank">here</a> </li> --> <li> To learn more about these capabilities, please contact <a href="mailto:usaf.cso@mail.mil?subject=Platform One CNAP Question" > usaf.cso@mail.mil </a> with Subject: "Platform One CNAP Question" </li> </ul> </div> </div> <div class="row"> <div class="col-lg-5"> <h4 class="title">PLATFORM ONE TRAINING AND ON-BOARDING OPTIONS</h4> <ul> <li> Check out the CSO DevSecOps / DAU training: <ExternalLink inline href="https://software.af.mil/training/"> https://software.af.mil/training </ExternalLink> </li> <li> For aditional on-boarding information please visit: <ExternalLink inline href="https://onboarding.il2.dsop.io/"> Cohort On-boarding </ExternalLink> </li> <li> Virtual Platform One Learning Hub that provides self-service on-boarding [June 2020 Launch] </li> <li> 1-day training Session: Introduction to DevSecOps. Overview and understanding of the vision and activities [June 2020 Virtual Launch] </li> <li> A 3-day Platform One Platform Workshop. Hands-on code and User-Centered Design (UCD) to create your first Platform One DevSecOps pipelines and deploy a "push button" DoD DevSecOps software factory [Currently Available] </li> <li> A 6-week full on-boarding that concludes with your own Ci/CD pipeline and Minimum Viable Product (MVP) ready for production [Currently Available] </li> <li> A 2-month full on-boarding that concludes with your platform team being able to support your own DevSecOps applications for development and production [July 2020 Virtual Launch] </li> <li> Customized training options (both at our locations or on your premises) (pay per use) </li> <li> To learn more about these capabilities, please contact <a href="mailto:usaf.cso@mail.mil?subject=Platform One Training Question" > usaf.cso@mail.mil </a> with Subject: "Platform One Training Question" </li> </ul> </div> <div class="col-lg-5"> <h4 class="title">PLATFORM ONE DEVSECOPS MANAGED TOOLS</h4> <ul> <li> Platform One Enterprise Chat provides a collaboration solutions suitable for connecting developer teams (pay per use): IL-4 (.mil email only) <ExternalLink inline href="https://chat.collab.cdl.af.mil"> https://chat.collab.cdl.af.mil </ExternalLink> </li> <li> Platform One ABMS All Domain Common Environment (pay per use) </li> <li> Platform One Multi-Level Security Data Transfer (CDS/Diode) (pay per use) </li> <li> Platform One Stack Exchange: knowledge sharing service for software developers and engineers (pay per use) </li> <li> To learn more about these capabilities, please contact <a href="mailto:usaf.cso@mail.mil?subject=Platform One Managed Tools Question" > usaf.cso@mail.mil </a> with Subject: "Platform One Managed Tools Question" </li> </ul> </div> </div> </div> </div> </template> <script> import PageHeader from "@/components/PageHeader"; import ExternalLink from "@/components/ExternalLink"; export default { name: "Services", components: { PageHeader, ExternalLink } }; </script> <style lang="scss" scoped> .services { margin-bottom: 2rem; h6 { margin-left: 0 !important; margin-right: 0 !important; } .container { margin-top: 4rem; .row { justify-content: center; } } ul { padding-left: 20px; padding-bottom: 2rem; & > li { margin-bottom: 1rem; } } @include media-breakpoint-up(lg) { .section-description { max-width: 60%; } } @include media-breakpoint-down(md) { .title > br { display: none; } } } </style>