-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
1004 lines (871 loc) · 53.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/png" href="https://stratis-storage.github.io/stratis-favicon.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<!-- Enable responsiveness on mobile devices-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>Stratis Storage</title>
<!-- CSS -->
<link rel="stylesheet" href="https://stratis-storage.github.io/print.css" media="print">
<link rel="stylesheet" href="https://stratis-storage.github.io/poole.css">
<link rel="stylesheet" href="https://stratis-storage.github.io/hyde.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
</head>
<body class="theme-base-10 ">
<div class="sidebar">
<div class="container ">
<div>
<a href="https://stratis-storage.github.io">
<img src="https://stratis-storage.github.io/imgs/stratis_sidebar.png" />
</a>
</div>
<div class="sidebar-about">
<p class="about lead">Easy to use local storage management for Linux.</p>
</div>
User Links:</br>
<ul class="sidebar-nav">
<li class="sidebar-nav-item"><a href="https://stratis-storage.github.io/howto">How-To</a></li>
<li class="sidebar-nav-item"><a href="https://stratis-storage.github.io/users">Clients and Operating Systems</a></li>
</ul>
Developer Links:</br>
<ul class="sidebar-nav">
<li class="sidebar-nav-item"><a href="https://stratis-storage.github.io/StratisSoftwareDesign.pdf">Software Design</a></li>
<li class="sidebar-nav-item"><a href="https://stratis-storage.github.io/DBusAPIReference.pdf">D-Bus API Reference</a></li>
<li class="sidebar-nav-item"><a href="https://stratis-storage.github.io/StratisStyleGuidelines.pdf">Programming Style Guidelines</a></li>
</ul>
D-Bus Introspection Files:</br>
<ul class="sidebar-nav">
<li class="sidebar-nav-item"><a href="https://stratis-storage.github.io/manager.xml">Manager object</a></li>
<li class="sidebar-nav-item"><a href="https://stratis-storage.github.io/pool.xml">Pool object</a></li>
<li class="sidebar-nav-item"><a href="https://stratis-storage.github.io/filesystem.xml">Filesystem object</a></li>
<li class="sidebar-nav-item"><a href="https://stratis-storage.github.io/blockdev.xml">Blockdev object</a></li>
</ul>
Contact Links:</br>
<ul class="sidebar-nav">
<li class="sidebar-nav-item" style="display: inline-block">
<a href="https://github.com/stratis-storage">
<i class="fab fa-github"></i>
</a>
</li>
<li class="sidebar-nav-item" style="display: inline-block">
<a href="https://twitter.com/stratisstorage">
<i class="fab fa-twitter"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="content container">
<div class="posts">
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-intro/">
Stratis Description
</a>
</h1>
<div class="post__summary">
<p><em>Dennis Keefe, Stratis Team</em></p>
<h3 id="stratis-description">Stratis Description</h3>
<p>Stratis is a tool to easily configure pools and filesystems with enhanced
storage functionality that works within the existing Linux storage
management stack. To achieve this, Stratis prioritizes a straightforward
command-line experience, a rich API, and a fully automated approach to storage
management. It builds upon elements of the existing storage stack as much as
possible. Specifically, Stratis uses device-mapper, LUKS, XFS, and Clevis.
Stratis may also incorporate additional technologies in the future.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-intro/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-8-0/">
Stratis 3.8.0 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>Stratis 3.8.0, which consists of <code>stratisd 3.8.0</code> and <code>stratis-cli 3.8.0</code>
includes two significant enhancements, as well as a number of minor
improvements.</p>
<p>Most significantly, Stratis 3.8.0, introduces a revised storage stack. The
motivation for this change and overall structure of the storage stack is
described <a href="https://stratis-storage.github.io/metadata-rework/">in a separate post</a>.</p>
<p>Stratis 3.8.0 also introduces support for multiple bindings for encryption
using the same mechanism. Previously, Stratis only allowed a single binding
that used a key in the kernel keyring, now multiple bindings with different
keys may be used for the same pool. Similarly, multiple bindings that make
use of a Clevis encryption mechanism may be used with the same pool. The
number of total bindings is limited to 15.</p>
<p>This change enables a number of use cases that the previous scheme did not
allow. For example, a pool might be configured so that it can be unlocked
with one key belonging to a storage administrator, for occasional necessary
maintenance, and with a different key by the designated user of the pool.</p>
<p>Previously, when starting an encrypted pool, the user was required to
designate an unlock method, <code>clevis</code> or <code>keyring</code>. Since this release
allows multiple bindings with one unlock method, it introduces a more general
method of specifying an unlock mechanism on pool start. The user may specify
<code>--unlock-method=any</code> and all available methods may be tried. The user
may also specify that the pool should be opened with one particular binding,
using the <code>--token-slot</code> option. Or the user may choose to enter a passphrase
to unlock the pool instead, either by specifying the <code>--capture-key</code> option
or a keyfile using the <code>--keyfile-path</code> option. Similarly, the <code>unbind</code>
command now requires the user to specify which binding to unbind using the
<code>--token-slot</code> option. And the rebind method requires that the user specify
a particular token slot with the <code>--token-slot</code> option if the pool has more
than one binding with the same method.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-8-0/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/metadata-rework/">
On-disk metadata format and storage stack modifications
</a>
</h1>
<div class="post__summary">
<p><em>John Baublitz, Stratis Team</em></p>
<p>Until now, Stratis has had a metadata format that, with a few exceptions, works
remarkably well for our current feature set. However, as we plan for more features
like RAID, integrity, and online reencryption, we've decided that we require some
reworks to the order of our devicemapper devices in the storage stack and the addition
of space reservation ahead of time for the metadata of new devicemapper layers. The
metadata rework has been a large effort to pave the way for Stratis moving forward and
will provide the ability for additional flexibility in enabling and disabling certain layers
after pool creation time once the features are added.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/metadata-rework/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-7-2/">
Stratis 3.7.2 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>Stratis 3.7.2, which consists of <code>stratisd 3.7.2</code> and <code>stratis-cli 3.7.0</code>
includes one significant enhancement, several minor enhancements, and a
number of small improvements.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-7-2/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratisd-release-notes-3-6-7/">
stratisd 3.6.7 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratisd-release-notes-3-6-7/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratisd-release-notes-3-6-5/">
stratisd 3.6.5 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p><code>stratisd</code> 3.6.5 includes a modification to its internal locking mechanism
which allows a lock which does not conflict with a currently held lock to
precede a lock that does. This change relaxes a fairness restriction that
gave precedence to locks based solely on the order in which they had been
placed on a wait queue. This release also includes a number of housekeeping
commits and minor improvements.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratisd-release-notes-3-6-5/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratisd-release-notes-3-6-4/">
stratisd 3.6.4 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>This post includes release notes for the prior patch releases in this
minor release.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratisd-release-notes-3-6-4/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-6-0/">
Stratis 3.6.0 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>Stratis 3.6.0 includes one significant enhancement as well as several smaller
improvements.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-6-0/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratisd-release-notes-3-5-8/">
stratisd 3.5.8 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p><code>stratisd</code> 3.5.8 principally contains changes to make handling of partially<br />
set up or torn down pools more robust. It also fixes a few errors and omissions
in the management of <code>stratisd</code>'s D-Bus layer, including supplying some
previously missing D-Bus property change signals and removing D-Bus object
paths to partially torn down pools which had in some cases persisted past the
point when the pool should be considered stopped. In addition, it removes
the <code>dracut</code> subpackage's dependency on plymouth.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratisd-release-notes-3-5-8/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratify/">
Stratis root filesystem installation with stratify.py
</a>
</h1>
<div class="post__summary">
<p><em>Bryn Reeves, Stratis team</em></p>
<p>Support for using Stratis as the root filesystem was added in version 2.4.0 but
without support in distribution installers it can be tricky for users to build
systems for testing.</p>
<p>This blog post will look at a quick method for installing systems with Stratis
as the root filesystem using the Fedora Live ISO, kickstart, and a Python script to
simplify and automate the process.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratify/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-rootfs-fedora/">
stratisd filesystem as root filesystem on Fedora
</a>
</h1>
<div class="post__summary">
<p><em>John Baublitz, Stratis Team</em></p>
<p>Based on recent questions, we wanted to develop a specific guide for additional steps that need to be taken
on Fedora to enable Stratis as the root filesystem for a Fedora install.</p>
<p>If you have not already looked at <a href="https://stratis-storage.github.io/stratis-rootfs/">the guide</a> for root filesystem work, please read that first. It is a
prerequisite.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-rootfs-fedora/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratisd-release-notes-3-5-2/">
stratisd 3.5.2 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p><code>stratisd</code> 3.5.2 includes three significant enhancements as well as a bug
fix.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratisd-release-notes-3-5-2/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-5-0/">
Stratis 3.5.0 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>Stratis 3.5.0 includes one significant enhancement as well as several smaller
improvements.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-5-0/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-4-0/">
Stratis 3.4.0 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>Stratis 3.4.0 includes one significant enhancement as well as several smaller
improvements.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-4-0/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-3-0/">
Stratis 3.3.0 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>Stratis 3.3.0 includes one significant enhancement and several smaller
enhancements as well as number of stability and efficiency improvements.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-3-0/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-2-0/">
Stratis 3.2.0 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>Stratis 3.2.0 includes one significant enhancement, one bug fix, and a number
of more minor improvements.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-2-0/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-1-0/">
Stratis 3.1.0 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>Stratis 3.1.0 includes significant improvements to the management of the
thin-provisioning layers, as well as a number of other user-visible
enhancements and bug fixes.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-1-0/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/thin-provisioning-redesign/">
Thin provisioning redesign
</a>
</h1>
<div class="post__summary">
<p><em>John Baublitz, Stratis Team</em></p>
<h1 id="overview">Overview</h1>
<p>For a while, we've bumped into a number of problems with our thin provisioning implementation
around reliability and safety for users. After gathering a lot of feedback on our thin
provisioning layer, we put together <a href="https://github.com/stratis-storage/stratisd/issues/2814">a proposal</a> for improvements to how we currently handle
allocations.</p>
<p>The changes can largely be divided up into three areas of improvement:</p>
<ul>
<li>Predictability</li>
<li>Safety</li>
<li>Reliability</li>
</ul>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/thin-provisioning-redesign/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratisd-release-notes-3-0-4/">
stratisd 3.0.4 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>stratisd 3.0.4 contains two fixes to bugs in its D-Bus API.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratisd-release-notes-3-0-4/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratisd-release-notes-3-0-3/">
stratisd 3.0.3 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>stratisd 3.0.3 contains internal improvements and several bug fixes.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratisd-release-notes-3-0-3/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/per-pool-locking/">
Addition of per-pool locking
</a>
</h1>
<div class="post__summary">
<p><em>John Baublitz, Stratis Team</em></p>
<h1 id="overview">Overview</h1>
<p>Recently, we've merged a PR that completes our work on improved concurrency in
stratisd. Previously, we had made some changes to the IPC layer to provide the
ability for stratisd to handle incoming requests in parallel which you can read
about <a href="https://stratis-storage.github.io/multi-threading/">here</a>. This work allowed IPC requests to each be handled
in a separate <a href="https://tokio.rs/tokio/tutorial/spawning">tokio task</a>, but the Stratis engine, the part of our code that
handles all of the storage stack operations, could still only be accessed
sequentially.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/per-pool-locking/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-0-0/">
Stratis 3.0.0 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>Stratis 3.0.0 includes many internal improvements, bug fixes, and
user-visible changes.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-3-0-0/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-announce-3-0-0/">
stratisd 3.0.0 Release Announcement
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-announce-3-0-0/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-2-4-2/">
stratisd 2.4.2 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>stratisd 2.4.2 is a bug fix release. It specifies two additional
command-line dependencies for the stratis dracut module. stratisd and
stratisd-min both require these dependencies to be available in order to
start up.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-2-4-2/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratisd-rootfs-packaging/">
Packaging for stratisd 2.4.1
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>For Fedora packaging, we have decided to split out the dracut support into
a separate subpackage, <code>stratisd-dracut</code>. This package must be installed
in order to support booting from a Stratis filesystem. All other
functionality is included in the <code>stratisd</code> package.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratisd-rootfs-packaging/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-2-4-1/">
Stratis 2.4.1 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>Stratis 2.4.1 is a bug fix release, which addresses a flaw in the
multi-threading implementation.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-2-4-1/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-2-4-0/">
Stratis 2.4.0 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>Stratis 2.4.0 includes two major user-visible changes:</p>
<ul>
<li>All the functionality required to boot from a Stratis-managed root
filesystem. See the prior post <a href="https://stratis-storage.github.io/stratis-rootfs/">Stratis filesystems as the root filesystem</a>
for a more detailed discussion.</li>
<li>An enhancement to existing encryption support that allows the user to
create a pool with encryption managed either by the kernel keyring or
<a href="https://github.com/latchset/clevis">Clevis</a>, and to subsequently bind an already encrypted pool using either
mechanism. Previously, the user could create an encrypted pool using the
kernel keyring only, and could bind or unbind using Clevis only.</li>
</ul>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-2-4-0/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-rootfs/">
Stratis filesystems as the root filesystem
</a>
</h1>
<div class="post__summary">
<p><em>John Baublitz, Stratis Team</em></p>
<p>While Stratis unencrypted pools could previously be used as the root filesystem
for a Linux installation with proper customization of the initramfs, our most
recent feature provides all of the plumbing to fully support Stratis filesystems
as the root filesystem of a Linux installation.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-rootfs/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/multi-threading/">
Multi-threading Support in stratisd
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/multi-threading/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-2-3-0/">
Stratis 2.3.0 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>Stratis 2.3.0 adds additional flexibility to its encryption support via
<a href="https://github.com/latchset/clevis">Clevis</a>.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-2-3-0/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-2-2-1/">
Stratis 2.2.1 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>Stratis 2.2.1 is a bug fix release. It fixes the following bugs:</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-2-2-1/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-2-2-0/">
Stratis 2.2.0 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>Stratis 2.2.0 now places Stratis filesystem symlinks in <code>/dev/stratis</code>,
rather than <code>/stratis</code>. Stratis creates and maintains the symlinks by means
of udev rules, rather than directly via stratisd as previously.
The <code>/stratis</code> directory is neither created nor used by stratisd 2.2.0.</p>
<p>This release places management of the terminal setting for interactive
encryption-key entry in stratisd rather than in stratis-cli.</p>
<p>This release also includes enhancements to the stratisd D-Bus interface,
various bug fixes, and a change in the stratisd CLI specification for
log levels.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-2-2-0/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-cli-release-notes-2-1-1/">
stratis-cli 2.1.1 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>stratis-cli 2.1.1 fixes a bug where if one encrypted pool could not be
unlocked, execution terminated, and no attempt was made to unlock any other
pools that might need to be unlocked (<a href="https://github.com/stratis-storage/stratis-cli/issues/618">stratis issue 618</a>).</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-cli-release-notes-2-1-1/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-2-1-0/">
Stratis 2.1.0 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>Stratis 2.1.0 introduces support for encryption.</p>
<p>It supports per-pool encryption of the devices that form a pool's data
tier. A pool may be encrypted, or its constituent encrypted devices may
be activated, by means of a key stored in the kernel keyring.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-2-1-0/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratisd-release-notes-2-0-1/">
stratisd 2.0.1 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>stratisd 2.0.1 contains a number of internal improvements as well as
enhanced logging.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratisd-release-notes-2-0-1/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-cli-release-notes-2-0-1/">
stratis-cli 2.0.1 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>stratis-cli 2.0.1 contains a number of internal improvements as well as
some improvements to certain error messages.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-cli-release-notes-2-0-1/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/cryptsetup/">
Cryptsetup Rust bindings release
</a>
</h1>
<div class="post__summary">
<p><em>John Baublitz, Stratis Team</em></p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/cryptsetup/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-2-0-0/">
Stratis 2.0.0 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>Stratis 2.0 is a significant update for both the daemon and the CLI. The
changes to the daemon are covered first, followed by the changes to the
CLI.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-2-0-0/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-cli-release-notes-1-1-0/">
stratis-cli 1.1.0 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-cli-release-notes-1-1-0/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratisd-release-notes-1-0-6/">
stratisd 1.0.6 Release Notes
</a>
</h1>
<div class="post__summary">
<p><em>mulhern, Stratis Team</em></p>
<p>This release includes one significant bug fix and a substantial refactoring.</p>
<p>The bug was caused by an inconsistency in the metadata handling which led to
a failure to properly update the Stratis metadata if stratisd was restarted
in an environment where the system clock indicated a time earlier than when
it had previously been running. See <a href="https://github.com/stratis-storage/stratisd/issues/1509">stratisd issue 1509</a> for further
details.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratisd-release-notes-1-0-6/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-1-0-0/">
Stratis 1.0 Release Notes
</a>
</h1>
<div class="post__summary">
<p>Friday September 28, 2018</p>
<h1 id="new-features">New Features</h1>
<h2 id="initial-stable-stratis-release">Initial Stable Stratis Release</h2>
<p>Stratis is a Linux local storage management tool that aims to enable easy use of advanced storage features such as thin provisioning, snapshots, and pool-based management and monitoring.</p>
<p>After two years of development, Stratis 1.0 has stabilized its on-disk metadata format and command-line interface, and is ready for more widespread testing and evaluation by potential users. Stratis is implemented as a daemon – <code>stratisd</code> – as well as a command-line configuration tool called stratis, and works with Linux kernel versions 4.14 and up.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-1-0-0/">Read more...</a>
</div>
</article>
</div>
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="https://stratis-storage.github.io/stratis-release-notes-0-5/">
Stratis 0.5 Release Notes
</a>
</h1>
<div class="post__summary">
<p>March 8, 2018</p>
<p>This release is suitable for developers and early testers. It should not be
used with valuable data, and pools created with this release will not be
supported in Stratis 1.0, due to upcoming on-disk format changes.</p>
</div>
<div class="read-more">
<a href="https://stratis-storage.github.io/stratis-release-notes-0-5/">Read more...</a>
</div>
</article>
</div>
</div>
</div>