mirror of
https://github.com/lingble/talos.git
synced 2025-12-21 23:17:01 +00:00
docs: add public roadmap
This adds the first pass out our public roadmap. It is intended to be a living document. Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
This commit is contained in:
@@ -14,6 +14,11 @@
|
|||||||
<li class="link min-w-full md:min-w-0">
|
<li class="link min-w-full md:min-w-0">
|
||||||
<CommunityDropdown></CommunityDropdown>
|
<CommunityDropdown></CommunityDropdown>
|
||||||
</li>
|
</li>
|
||||||
|
<li class="link min-w-full md:min-w-0">
|
||||||
|
<a href="/roadmap">
|
||||||
|
<span class="font-semibold mr-1">Roadmap</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
<li class="link min-w-full md:min-w-0">
|
<li class="link min-w-full md:min-w-0">
|
||||||
<a href="/faqs">
|
<a href="/faqs">
|
||||||
<span class="font-semibold mr-1">FAQs</span>
|
<span class="font-semibold mr-1">FAQs</span>
|
||||||
|
|||||||
59
docs/website/pages/roadmap/index.vue
Normal file
59
docs/website/pages/roadmap/index.vue
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
<template>
|
||||||
|
<div class="c-rich-text">
|
||||||
|
<div class="flex justify-center">
|
||||||
|
<h1>Roadmap</h1>
|
||||||
|
</div>
|
||||||
|
<div class="flex flex-col justify-around">
|
||||||
|
<div class="text-left w-3/4 mx-20 py-10 px-20">
|
||||||
|
<ul>
|
||||||
|
<h2>v0.4</h2>
|
||||||
|
<p>Emphasis on enterprise features, stability, and API expansion.</p>
|
||||||
|
<ul>
|
||||||
|
<li>Addition of more APIs</li>
|
||||||
|
<li>
|
||||||
|
RBAC
|
||||||
|
<ul>
|
||||||
|
<li>PKI</li>
|
||||||
|
<li>OIDC</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>Logging</li>
|
||||||
|
<li>E2E and Conformance testing for all supported platforms</li>
|
||||||
|
<li>Test coverage of 40%</li>
|
||||||
|
</ul>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="text-left w-3/4 mx-20 py-10 px-20">
|
||||||
|
<ul>
|
||||||
|
<h2>v0.5</h2>
|
||||||
|
<p>Emphasis on security and testing.</p>
|
||||||
|
<p></p>
|
||||||
|
<ul>
|
||||||
|
<li>Auditing</li>
|
||||||
|
<li>Security reporting and patch policy</li>
|
||||||
|
<li>Upgrade Controller graduated to beta</li>
|
||||||
|
<li>Talos conformance release</li>
|
||||||
|
<li>Test coverage of 50%</li>
|
||||||
|
</ul>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="text-left w-3/4 mx-20 py-10 px-20">
|
||||||
|
<ul>
|
||||||
|
<h2>v0.6</h2>
|
||||||
|
<p>Emphasis on automation of operational tasks.</p>
|
||||||
|
<p></p>
|
||||||
|
<ul>
|
||||||
|
<li>Automated certificate rotation</li>
|
||||||
|
<li>Test coverage of 60%</li>
|
||||||
|
</ul>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
ul {
|
||||||
|
padding-left: 40px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -172,13 +172,11 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
ul: {
|
ul: {
|
||||||
listStyleType: 'disc',
|
listStyleType: 'disc',
|
||||||
listStylePosition: 'inside',
|
listStylePosition: 'inside'
|
||||||
marginBottom: '16px'
|
|
||||||
},
|
},
|
||||||
ol: {
|
ol: {
|
||||||
listStyleType: 'decimal',
|
listStyleType: 'decimal',
|
||||||
listStylePosition: 'inside',
|
listStylePosition: 'inside'
|
||||||
marginBottom: '16px'
|
|
||||||
},
|
},
|
||||||
a: {
|
a: {
|
||||||
extends: 'link'
|
extends: 'link'
|
||||||
|
|||||||
Reference in New Issue
Block a user