You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These two issues seem to be intertwined, so we track them in a single Epic. At the same time there is no hard dependency between them.
High-Level Objectives
Machine configuration:
Support additional configuration documents in the Talos machine configuration in addition to v1alpha1 document.
Support different lifecycle of the documents - i.e. some documents might be removed, while other documents stay.
Long-term: transition from v1alpha1 format to multi-doc format.
Reactive Talos core:
Transform existing Talos sequencer and tasks into fully reactive controller-based implementation.
Talos boot process should be fully async, acting on machine configuration changes.
Any machine configuration change (with possibly some exceptions related to v1alpha1 format) should be applied without a reboot. The only exception is upgrade process which requires changing Linux kernel.
Task Breakdown
The content you are editing has changed. Please copy your edits and refresh the page.
This allows you to have something like this in your `talconfig.yaml`:
```yaml
nodes:
- extraManifests:
- etcd-firewall.yaml
- kubelet-firewall.yaml
- ../anotherfile.yaml
```
And the content of those files will be appended in the generated
manifest for the node that you can apply using `talosctl` like so:
```yaml
<generated machineconfig>
---
<etcd-firewall.yaml content>
---
<kubelet-firewall.yaml content>
---
<../anotherfile.yaml content>
```
This is made to prepare for
siderolabs/talos#7223
These two issues seem to be intertwined, so we track them in a single Epic. At the same time there is no hard dependency between them.
High-Level Objectives
v1alpha1
document.v1alpha1
format to multi-doc format.v1alpha1
format) should be applied without a reboot. The only exception is upgrade process which requires changing Linux kernel.Task Breakdown
Tasks
The text was updated successfully, but these errors were encountered: