-
Notifications
You must be signed in to change notification settings - Fork 15
/
exit
1604 lines (1023 loc) · 50.8 KB
/
exit
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
[33mcommit 577eadb46ba87ce7a33bf8b77510c1ab3979ecbe[m[33m ([m[1;36mHEAD -> [m[1;32mrevert-643-updating-docs-for-1.27[m[33m, [m[1;31morigin/revert-643-updating-docs-for-1.27[m[33m)[m
Merge: 2ac5fd93b 0f8f000cd
Author: Peres Kereotubo <[email protected]>
Date: Wed May 24 15:33:56 2023 -0400
Merge branch 'revert-643-updating-docs-for-1.27' of https://github.com/dell/csm-docs into revert-643-updating-docs-for-1.27
[33mcommit 2ac5fd93bfcf498faa45341b1672f550c1100740[m
Author: Peres Kereotubo <[email protected]>
Date: Wed May 24 12:49:45 2023 -0500
Revert "Updating documentation for k8s 1.27 (#643)"
This reverts commit 2fc2a5349427b36a9f0d10b32093e185dd428e00.
[33mcommit 133f09a697e41e9205f32e2f3bb82ab3930f4748[m
Author: Peres Kereotubo <[email protected]>
Date: Wed May 24 12:49:45 2023 -0500
Revert "Updating documentation for k8s 1.27 (#643)"
This reverts commit 2fc2a5349427b36a9f0d10b32093e185dd428e00.
[33mcommit 0f8f000cdeadeabd932238cf8e94c7027540a154[m
Merge: ac380985e 3c4398b23
Author: Peres Kereotubo <[email protected]>
Date: Wed May 24 15:00:06 2023 -0400
Merge branch 'revert-643-updating-docs-for-1.27' of https://github.com/dell/csm-docs into revert-643-updating-docs-for-1.27
[33mcommit ac380985eb9d3d4c47b664b7294ff1902350121d[m
Author: Peres Kereotubo <[email protected]>
Date: Wed May 24 12:49:45 2023 -0500
Revert "Updating documentation for k8s 1.27 (#643)"
This reverts commit 2fc2a5349427b36a9f0d10b32093e185dd428e00.
[33mcommit 3c4398b238bb23fc4a50c73d6c31ffeb577ab6ef[m
Merge: 229b440d6 bc5634a98
Author: Peres Kereotubo <[email protected]>
Date: Wed May 24 14:48:56 2023 -0400
Merge branch 'revert-643-updating-docs-for-1.27' of https://github.com/dell/csm-docs into revert-643-updating-docs-for-1.27
[33mcommit 229b440d6e5ef2be3e36202c792b78df0358b7d7[m
Author: Peres Kereotubo <[email protected]>
Date: Wed May 24 12:49:45 2023 -0500
Revert "Updating documentation for k8s 1.27 (#643)"
This reverts commit 2fc2a5349427b36a9f0d10b32093e185dd428e00.
[33mcommit bc5634a9839c7fd7e0aee45a1c292ab7032201df[m[33m ([m[1;32mmain[m[33m)[m
Author: Peres Kereotubo <[email protected]>
Date: Wed May 24 12:49:45 2023 -0500
Revert "Updating documentation for k8s 1.27 (#643)"
This reverts commit 2fc2a5349427b36a9f0d10b32093e185dd428e00.
[33mcommit 2fc2a5349427b36a9f0d10b32093e185dd428e00[m[33m ([m[1;31morigin/main[m[33m, [m[1;31morigin/HEAD[m[33m)[m
Author: Peres Kereotubo <[email protected]>
Date: Tue May 23 18:30:41 2023 -0500
Updating documentation for k8s 1.27 (#643)
[33mcommit 6e05f57586be862bf887804643934d46e787e463[m
Author: Meghana GM <[email protected]>
Date: Tue May 23 20:26:07 2023 +0530
Added support for csi-driver upgrades via csm-operator (#638)
[33mcommit b2bfe235e57b6dbfd8994ec7467156a083c9f618[m
Author: Santhosh Lakshmanan <[email protected]>
Date: Thu May 18 13:28:09 2023 -0500
Replication installation doc corrections (#631)
[33mcommit 1a381437ea3fcea97b0c11c6bae64e4977545ade[m
Author: Abrar Basha <[email protected]>
Date: Wed May 17 15:22:30 2023 -0400
Power flex deployment fixes (#619)
* PowerFlex deployment and feature clarifications
* added clarification on system id example
* clarified vxflexos naming, secret location, and system id information
* removed section from sdc deployment for operator
* Fixed sdc image version
[33mcommit 36132b16c10cc6f6ce6cad3ac9271c364ed01112[m
Author: coulof <[email protected]>
Date: Wed May 17 03:13:39 2023 -0400
Cleanup pages and point to latest blogs & videos (#620)
[33mcommit a0c2b578eafca80be3cbd710c39cba3a212771c3[m
Author: coulof <[email protected]>
Date: Wed May 17 03:13:02 2023 -0400
Fix indentation (#622)
[33mcommit 70583f3fb8048a81ce04c6dcd0c727cd74d0d400[m
Author: mgandharva <[email protected]>
Date: Tue May 16 20:31:19 2023 +0530
Common-section-for-Volume-Snapshot (#623)
* Common-section-for-Volume-Snapshot
* Common-section-for-Volume-Snapshot
* Common-section-for-Volume-Snapshot
[33mcommit 2f11206a9fc2a17f063cd52864f1b4e8efe9e085[m
Author: Don Khan <[email protected]>
Date: Mon May 15 06:22:16 2023 -0400
Fixes for Operator install of Replication (#612)
[33mcommit 6e5537d599680e5e8215c775c34e855557951e6f[m
Author: coulof <[email protected]>
Date: Fri May 12 11:20:45 2023 +0200
Add Instruqt CSM lab (#609)
* Add Instruqt CSM lab
---------
Co-authored-by: Yamunadevi N Shanmugam <[email protected]>
[33mcommit 1ce686172e124bd212e52dbdca9b60c6d0383af9[m
Author: mgandharva <[email protected]>
Date: Thu May 11 14:56:20 2023 +0530
bug_update_support_matrix (#606)
[33mcommit b910d668511b6ee3f293cb5018de7a676320fb3b[m
Author: boyamurthy <[email protected]>
Date: Mon May 8 19:58:14 2023 +0530
Adding troubleshooting section for mount issue on powermax (#603)
[33mcommit 415f026ac4d39d16752282ccf4bf60844920f7ab[m
Author: Don Khan <[email protected]>
Date: Mon May 8 08:02:16 2023 -0400
Fix inconsistency in isilon namespace (#597)
[33mcommit 35c8f7a7bcd08e82bb480e4ff10849f6efc87c97[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Mon Apr 24 13:26:59 2023 +0530
Update _index.md (#584)
[33mcommit 05572bd9c54109ac85d7bd376b434cf81bdea508[m
Author: Santhosh Lakshmanan <[email protected]>
Date: Wed Apr 19 14:14:50 2023 -0500
Updating main with changes from release-1.6.1 (#580)
[33mcommit 32913219d435b784be764a9d7fd9c74271645580[m
Author: Santhosh Lakshmanan <[email protected]>
Date: Wed Apr 19 11:32:56 2023 -0500
Added replication module known issue (#569)
[33mcommit ed64551c47269bbeefd903009ae97865a1ec52a2[m
Author: HarishH-DELL <[email protected]>
Date: Tue Apr 18 11:30:28 2023 +0530
Multi array support documentation improvements (#575)
* Multi array support documentation improvements
* renamed sc name
[33mcommit b29de03c0b5dc4103daa8071102c9e9118dac914[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Mon Apr 10 18:41:44 2023 +0530
updated troubleshooting doc (#558)
[33mcommit 86f9bae173e4d3275ab4af8467b2afb18632557a[m
Author: Prasanna M <[email protected]>
Date: Tue Apr 4 19:28:57 2023 +0530
Security Policy (#556)
[33mcommit 4806add6fdd92c050e31da11996638b6988d7e2f[m
Author: Akshay Saini <[email protected]>
Date: Fri Mar 31 14:50:57 2023 +0530
Update release notes & upgrade steps (#553)
[33mcommit 64ba31f8b970618a5f94a27bf1980e20fb485370[m
Author: Samihan Deshmukh <[email protected]>
Date: Thu Mar 30 11:16:17 2023 +0530
Fixing UI improvements (#549)
* fix: Removing images list for old csm version
* fix: Adding missing images
* fix: Modified installation wizard top navbar identical to csm-docs navbar
* fix: Sticking navbar to top
* fix: Added UI as cluster prefix should be 3 letters
* fix: fixing logo redirection to home page
* style: aligning logo position to csm-docs logo position
* fix: fixing logo redirection to home page
* style: Keeping footer of installation wizard at bottom
* style: Aligned social links and adjusted fonts
* fix: Fixed linting issue
* fix: Refactored styling spacing
[33mcommit b79377d309a7a33cd8245d2a403b017161157cc8[m[33m ([m[1;33mtag: v1.6.0[m[33m)[m
Author: rajkumar-palani <[email protected]>
Date: Mon Mar 27 17:14:31 2023 +0530
Release 1.6.0 (#547)
[33mcommit 56c2f3cdba1d332b50ee1c9a67a46dbc90a4d312[m[33m ([m[1;31morigin/1.6[m[33m)[m
Author: rajkumar-palani <[email protected]>
Date: Mon Mar 20 12:09:58 2023 +0530
Update _index.md (#545)
[33mcommit 3809c1ff961f53d52296070f30081aacced08557[m
Author: rajkumar-palani <[email protected]>
Date: Fri Mar 17 18:43:43 2023 +0530
Update _index.md (#544)
Updated the Module information in FAQ
[33mcommit 3449b34a6e1b2007feb54011eba9f686fdcf0d56[m
Author: rajkumar-palani <[email protected]>
Date: Thu Mar 16 19:05:50 2023 +0530
Update _index.md (#543)
[33mcommit 3a1eb3cc90258a7026946afcde3ba6a10b983c1d[m
Author: Harsha Yalamanchili <[email protected]>
Date: Tue Mar 7 12:30:28 2023 -0500
Update CODEOWNERS (#533)
[33mcommit fb3579f37d8251da22194fe08d2824c898e872e7[m
Author: rajkumar-palani <[email protected]>
Date: Mon Mar 6 22:38:16 2023 +0530
Rollback to the Old Architecture Image (#523)
Rollback to the Old Architecture Image for Better Resolution
[33mcommit 2bfa308fd866481624178479865e9c3c02a2b958[m
Author: rajkumar-palani <[email protected]>
Date: Mon Mar 6 22:31:34 2023 +0530
Bug 704 csm architecture (#522)
[33mcommit 05e7bbe6e83cef71be79fe9df0826e9745a02206[m
Author: rajkumar-palani <[email protected]>
Date: Mon Mar 6 21:05:30 2023 +0530
Updating to the latest CSM Architecture (#518)
[33mcommit e44b91812ec1ec1d9a9b5ae5c359a27472c76a26[m
Author: Harsha Yalamanchili <[email protected]>
Date: Fri Mar 3 15:02:41 2023 -0500
Update _index.md (#512)
[33mcommit d5f7272ed9ecfa859c587fd89e70be0e4b763768[m
Author: AnandatDell <[email protected]>
Date: Thu Mar 2 22:27:16 2023 +0530
Update replication.md (#505)
[33mcommit 15eaeac0fdb773ac9d0b36e6c1c34ab88f763344[m
Author: AnandatDell <[email protected]>
Date: Thu Mar 2 20:31:38 2023 +0530
Update replication.md (#503)
[33mcommit aa677488bd8f2e6fc4e2ba12411d191909b99558[m[33m ([m[1;33mtag: v1.5.1[m[33m)[m
Author: rajkumar-palani <[email protected]>
Date: Wed Feb 22 12:59:31 2023 +0530
CSM Docs v1.5.1 Changes - Release 1.5.1 to Main (#485)
[33mcommit 69a4e0029ff62fdc705ac421b9e062ad14f82b0d[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Thu Feb 16 12:12:32 2023 +0530
Update known issues PowerMax (#461)
[33mcommit b8f54b8fd19dd1c6aabaea9f6f44c222577cc0c7[m
Author: Surya Prakash Gupta <[email protected]>
Date: Wed Feb 15 14:01:03 2023 +0530
Anthos 1.13 support for PowerStore (#458)
Updated support matrix for PowerStore with Anthos 1.13
[33mcommit 10405daa3a967e101a9e7f2d1b1b9161e39d1569[m
Author: Rajendra Indukuri <[email protected]>
Date: Tue Jan 31 15:59:38 2023 +0530
Updating support status of Unity XT for EKS (#440)
[33mcommit 089fdf6b09b20d77676fca3e49cf958b14e82918[m[33m ([m[1;32mupdatingfor-k8s-1.27[m[33m)[m
Author: rajkumar-palani <[email protected]>
Date: Mon Jan 23 15:05:10 2023 +0530
Updated the content changes related to PowerFlex as mentioned in this, (#437)
[33mcommit a50f063c97da1d6b8acd9b9f55848556fc62263e[m
Author: Nitesh-Rewatkar <[email protected]>
Date: Wed Jan 4 11:55:07 2023 +0530
Add Amazon EKS support to PowerScale (#428)
[33mcommit 1861e4c228aa151104f5e227f5872ec0cde50ca2[m[33m ([m[1;33mtag: v1.3.1[m[33m)[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Thu Dec 22 17:28:06 2022 +0530
Release 1.3.1 changes (#427)
[33mcommit 9b8b098ef7f8588bd1df07471b6df5c440211dc9[m
Author: rajkumar-palani <[email protected]>
Date: Mon Dec 19 20:16:10 2022 +0530
Update Code Owners (#426)
[33mcommit e8e9eb91c4e23b81c36389e78bd95e4322ae2570[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Tue Dec 13 21:01:32 2022 +0530
Release 1.5 changes (#424)
[33mcommit 344ce1221d22592ec289663e3bbdce6905844f71[m[33m ([m[1;33mtag: v1.5[m[33m)[m
Author: IsaiasA1 <[email protected]>
Date: Tue Dec 6 12:32:56 2022 -0600
Rpm auth issue (#423)
* Updating troubleshooting authorization
* Updating troubleshooting authorization
* diction change and placement
* added topic link
[33mcommit dc0e47a3f163f6368bab8876849cdf28ccf254a6[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Mon Nov 28 16:45:05 2022 +0530
Update architecture diagram (#417)
[33mcommit 33d6a129a61b6957e9b06ef0997b0ef6b60f691c[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Thu Nov 24 18:56:06 2022 +0530
fixed sec bug (#413)
[33mcommit 0ac7883a0a2bf0a54c735f661870cff438bb2c05[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Wed Nov 23 12:28:22 2022 +0530
Update CSM architecture diagram (#380)
[33mcommit 4f52ceae38076e13a83fbf97b75a52bfcb76248e[m
Author: aqu-dell <[email protected]>
Date: Tue Nov 22 08:56:58 2022 -0500
Updating documentation for selinux changes (#398)
* Updating documentation for selinux changes
* Minor updates for PR comments
* Adding version to index.md
[33mcommit 2e29e105a354a78ff40c75295dfcae798ad49518[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Thu Oct 27 17:50:11 2022 +0530
Update Replication release notes (#371)
[33mcommit 489246a7e175324cc87a3e33d37db410f1002682[m
Author: Matt Schmaelzle <[email protected]>
Date: Tue Oct 25 16:59:48 2022 -0400
Release notes update for CSM Replication (#370)
* Update _index.md
* Update _index.md
* Update _index.md
[33mcommit 07e4e002c96e56c9684489964dddfb1abbf53896[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Mon Oct 17 12:45:56 2022 +0530
Update PowerMax support matrix (#362)
[33mcommit 49c5181eeca9eccc3139a70233786c04dce7cf8c[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Thu Sep 29 18:28:31 2022 +0530
Update supported Powermax Matrix (#360)
[33mcommit 182bbd984ae8bf8e26dd8b1a6183ee2bd79527ec[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Thu Sep 29 17:11:06 2022 +0530
update encryption as CSM module (#359)
[33mcommit 47643c89fb9b80db47e2372f6da78dabd18ef035[m
Author: Adarsh Kumar Yadav <[email protected]>
Date: Thu Sep 29 16:59:25 2022 +0530
Reverting last commit (#357)
[33mcommit 48a2016ed06bfeaae440107476e74b5155a3ac65[m
Author: Adarsh Kumar Yadav <[email protected]>
Date: Thu Sep 29 12:22:50 2022 +0530
Doc update for healthMonitor parameter (#356)
[33mcommit 9581023ae75ac1fc3f12b7f6afdcb0db908f44c8[m
Author: satyakonduri <[email protected]>
Date: Wed Sep 28 14:33:36 2022 +0530
CSI-Powerstore: Update upgrade procedure (#355)
[33mcommit 286992e34f4d81073e21019c5324183cb91c166d[m
Author: baoy1 <[email protected]>
Date: Tue Sep 27 14:32:17 2022 +0800
Fix csm-metrics-powerscale version (#353)
[33mcommit 6ba7f7a24055199c734986bff1263cc9fb941cf8[m[33m ([m[1;33mtag: v1.4[m[33m)[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Wed Sep 21 18:28:15 2022 +0530
Release 1.4 for CSM (#352)
[33mcommit 6d4d4e0c8d4e574dc3c8d1b8d189f360dfde8ffa[m[33m ([m[1;31morigin/update_u4P_upgrade_procedure[m[33m)[m
Author: JacobGros <[email protected]>
Date: Thu Aug 25 11:05:23 2022 -0400
revert R.N. back to 1.3 version (#333)
[33mcommit 89595df432ba4e7d7a8ec13f854623d2cdc15e85[m
Author: Rajshree Khare <[email protected]>
Date: Tue Aug 23 02:10:19 2022 +0530
csi-powerflex 2.4 release notes (#327)
* csi-powerflex 2.4 release notes
* Update powerflex.md
Co-authored-by: JacobGros <[email protected]>
[33mcommit 18764aa9655af6960de2bcc67c0b48c1976922bc[m
Author: Adarsh Kumar Yadav <[email protected]>
Date: Wed Aug 10 16:35:56 2022 +0530
Doc modification (#307)
[33mcommit 7734eaa54130e72b52f895bdb7ac38d3b9cb5244[m
Author: Patrice Chalin <[email protected]>
Date: Tue Jul 26 02:41:41 2022 -0400
Upgrade docsy for offline search fix (#297)
[33mcommit 0d335cbee4620c5f34022c61392b25ed1e142c5c[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Mon Jul 25 18:33:36 2022 +0530
updated docsy (#296)
[33mcommit bc0b7b2a692e5450cc6deab185cc98456c8f5998[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Mon Jul 25 17:27:07 2022 +0530
fixed offline search (#295)
[33mcommit 5658d19dd78450c84934cddea4b982d3f76aa861[m
Author: boyamurthy <[email protected]>
Date: Thu Jul 21 11:28:38 2022 +0530
updating known issues (#293)
[33mcommit a7cee86fed8c19c3b466352e3a56ad199eada4e5[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Wed Jul 20 14:31:44 2022 +0530
Delete themes directory (#292)
[33mcommit dcd8495bc32354916bc6459e9219454357b6d516[m
Author: shaynafinocchiaro <[email protected]>
Date: Tue Jul 19 12:46:36 2022 -0400
Documentation Improvement (#291)
[33mcommit 1178a46139cc2f8f601779a7ece2adf251d9ef79[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Tue Jul 19 17:55:18 2022 +0530
updated themes for release versions (#290)
[33mcommit 04fb6b305737f7f559cf5589cf7db56d39531c82[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Mon Jul 18 12:17:37 2022 +0530
Fix known docsy issue in the workflow (#289)
[33mcommit 7954de81dbd7bedafe5db218cbcaf23453488425[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Mon Jul 18 11:20:41 2022 +0530
Fix workflows (#288)
[33mcommit 697130624c9a27fe9488ce8314b94bbb2a4103c5[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Thu Jul 14 19:24:36 2022 +0530
update package-lock.json (#286)
[33mcommit 6b765b38989ab29d21da30181ffa6dbd2f53f21b[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Thu Jul 14 19:13:06 2022 +0530
Update deploy.yml
[33mcommit fbcef28467311e0f85f0a2e17af3394489ecbefc[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Thu Jul 14 12:36:18 2022 +0000
update docsy module
Signed-off-by: Yamunadevi N Shanmugam <[email protected]>
[33mcommit 55da01860f182d0572ad9fa5d9b34a76d2475690[m
Author: Shanmugapriya M <[email protected]>
Date: Mon Jul 11 12:01:28 2022 +0530
iSCSI support for CSI PowerStore on VMware Tanzu
[33mcommit 2f74ee9414a522e9dfb536c54a00c281a37b31ef[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Wed Jul 6 10:26:15 2022 +0530
update left side navigation (#276)
[33mcommit d2f3e6d39c96496da8520cfe69aa8fe36d587bbf[m
Author: Rajendra Indukuri <[email protected]>
Date: Tue Jul 5 18:36:12 2022 +0530
Updating code owners file (#277)
[33mcommit 8df67db7b45ced170a31122443882ff1b9fe23a5[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Mon Jul 4 13:15:09 2022 +0530
Format fixing for PowerFlex (#272)
[33mcommit 80911cc71514193805de5449318363919f36aa64[m
Author: Aaron Tye <[email protected]>
Date: Mon Jul 4 02:55:14 2022 -0400
add troubleshooting for path denied (#274)
[33mcommit 2b975c5ea836e6e10f9232a7738f71cc5368985f[m
Author: JacobGros <[email protected]>
Date: Mon Jul 4 02:51:41 2022 -0400
Enhance pflex install (#273)
[33mcommit 8a6811faacb117645164905dac5b5bd107a5473a[m
Author: Rajendra Indukuri <[email protected]>
Date: Mon Jul 4 12:19:27 2022 +0530
bugfix-345-improvements-operator-docs (#275)
[33mcommit 30ecb9505150e191a80b39a17ec9ff6c560326ae[m
Author: JacobGros <[email protected]>
Date: Wed Jun 29 08:19:14 2022 -0400
add mpath trouble shooting for pflex (#270)
[33mcommit cb2c53576933120d25e94e837ae40f274ae64058[m
Author: shaynafinocchiaro <[email protected]>
Date: Wed Jun 29 06:00:50 2022 -0400
Update CSM Authorization Helm Deployment (#271)
[33mcommit 3e8b2dd3fab547c25dbe3be609e1b970d6a0202b[m
Author: shaynafinocchiaro <[email protected]>
Date: Tue Jun 28 03:25:46 2022 -0400
remove branching from git clone (#268)
[33mcommit dc23cfdaa98d3161aaa4d5cb1ff1611bf3863d4b[m
Author: Rajendra Indukuri <[email protected]>
Date: Tue Jun 28 12:53:49 2022 +0530
Bugfix 345 update operator clone steps (#269)
[33mcommit dc9601d535908a58c01432acb9e99a38c897c209[m[33m ([m[1;33mtag: v1.3[m[33m)[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Wed Jun 22 16:36:23 2022 +0530
CSM Release 1.3 (#266)
[33mcommit 43dc6f76588a05c08967893ffdd3a8f311053d75[m
Author: coulof <[email protected]>
Date: Wed Jun 8 07:33:41 2022 +0200
Reorganize support matrixes (#258)
[33mcommit 927382212eb10a2403fca3741db41a0bed827b45[m
Author: Yamunadevi N Shanmugam <[email protected]>
Date: Fri Jun 3 16:05:02 2022 +0530
Device expansion not supported for PowerMax replicated volumes (#254)
[33mcommit 071ff90707c4e84986226d537f39626549e6fb30[m
Author: Michael Edegware <[email protected]>
Date: Thu May 26 16:49:02 2022 -0400
adds documentation for replication (#247)
* adds documentation for replication
[33mcommit 479dc5a249bb090eed95dbabed577ba0db5108ac[m
Author: gallacher <[email protected]>
Date: Tue May 24 16:59:37 2022 -0300
Documentation changes to support the CSM 1.2.1 release (#214)
* patch version updates
* update module version
* update release navigation
* fix formatting and prometheus data source url (#211)
Co-authored-by: Yamunadevi N Shanmugam <[email protected]>
Co-authored-by: shaynafinocchiaro <[email protected]>
[33mcommit 442dbf7e375a0acb9f775a7a33da24eef62d7708[m
Author: shanmydell <[email protected]>
Date: Thu May 5 18:32:14 2022 +0530
Update CSM support matrix to home page (#205)
[33mcommit 173e49d209fe97fdb82449b178649dadd37abb8d[m
Author: shanmydell <[email protected]>
Date: Tue Apr 26 12:01:37 2022 +0530
added support for amazon EKS for Powerstore (#199)
[33mcommit ba747fe5be32f3dcf8819378fa83aaf4da0b5a01[m
Author: coulof <[email protected]>
Date: Mon Apr 25 10:01:20 2022 +0200
Annotation to set the default SC is not beta anymore (#198)
[33mcommit 03f4156b08f1af07f4d046f3cd3e95f9f3895834[m
Author: shanmydell <[email protected]>
Date: Thu Apr 21 14:30:51 2022 +0530
Bug - Fix code owner file (#195)
[33mcommit f11650a813c9ccb115258407e1aa898173ec53ac[m
Author: shanmydell <[email protected]>
Date: Thu Apr 21 10:42:58 2022 +0530
Deployment method for CRDs and the default snapshot controller - updates (#193)
[33mcommit a2c8a0e6cd93a505906e2950311717e4160e6e25[m
Author: JacobGros <[email protected]>
Date: Tue Mar 29 00:13:53 2022 -0400
Add trouble-shooting entry (#189)
[33mcommit c69afd9e69ccc195ffcca5f0bf7562da5a61cd8a[m
Author: shanmydell <[email protected]>
Date: Mon Mar 28 18:44:11 2022 +0530
Revert "Add troubleshooting entry (#187)" (#188)
This reverts commit 17359e3747428d43fef84efe032a600ff36e462e.
[33mcommit 17359e3747428d43fef84efe032a600ff36e462e[m
Author: JacobGros <[email protected]>
Date: Mon Mar 28 09:11:55 2022 -0400
Add troubleshooting entry (#187)
[33mcommit a5d8bc15f42bf26af4a2a6a95d6124f91b8ca930[m[33m ([m[1;33mtag: v1.2[m[33m)[m
Author: hoppea2 <[email protected]>
Date: Wed Mar 23 08:15:39 2022 -0400
Release 1.2 (#185)
[33mcommit 44206b2a045aab0864b178b10ff49e493bfb6866[m
Author: abhi16394 <[email protected]>
Date: Thu Mar 3 08:56:16 2022 -0500
operator changes for powerflex-v2.2.0 (#171)
[33mcommit de80877a0ccb29bee4651a5397cc929fd59cbe5a[m
Author: Harish P <[email protected]>
Date: Mon Feb 28 11:52:02 2022 +0530
Reverted NVMe docs (#168)
[33mcommit 5f34426ee896a883354afb095e23cacfb1d2c473[m
Author: Shanmugapriya M <[email protected]>
Date: Fri Feb 25 15:51:17 2022 +0530
Reverting POSIX and NFSv4 ACLs doc updates (#160)
[33mcommit 0304bbd5b9a2a475d764a05e038417e077ad9e67[m
Author: Harish P <[email protected]>
Date: Fri Feb 25 13:36:04 2022 +0530
updated fsgroup documentation (#153)
[33mcommit bdef604d9c33c99f8ca7951b4738557c3b816aae[m
Author: Francis Nijay <[email protected]>
Date: Fri Feb 25 11:43:29 2022 +0530
Added documentation for NVMeTCP for Powerstore (#154)
Co-authored-by: shanmydell <[email protected]>
[33mcommit 9e5fdd187dd205388f2b28d35136be8b0d0b79fb[m
Author: Shanmugapriya M <[email protected]>
Date: Thu Feb 24 16:06:47 2022 +0530
Documentation update for POSIX and NFSv4 ACLs support (#147)
[33mcommit 64ea23284a778479eee87e54f0bb499ba6601ba8[m
Author: shanmydell <[email protected]>
Date: Wed Feb 23 09:45:14 2022 +0530
addin application prefix information (#149)
[33mcommit 11b1e6ff2a145a93f78639720d432d3dbe2060c3[m
Author: JacobGros <[email protected]>
Date: Wed Dec 8 08:54:04 2021 -0500
Remove fedora (#114)
* remove Fedora from index
* remove Fedora from features
* Remove Fedora from Installation
* feedback
* remove Fedora from release notes
[33mcommit 7929e11a815b2526bec0a3f8d27c216bb6ae9db4[m
Author: shanmydell <[email protected]>
Date: Tue Dec 7 16:37:36 2021 +0530
Update _index.md (#113)
[33mcommit c924ae47375cbd4de8ff94ae5548c0eca96a6dd0[m[33m ([m[1;33mtag: v1.1[m[33m)[m
Author: gallacher <[email protected]>
Date: Fri Dec 3 13:03:43 2021 -0400
Release 1.1 Documentation Updates (#110)
* [replication] Added upgrade page and updated install info (#57)
* Added note about repctl logs file
* Added upgrade instructions for both controller and sidecar
* modified installation\upgrade section
* Fixed couple of grammar mistakes
* Added new entry to troubleshooting page
* Addressed review comments
* Changed link address
Co-authored-by: Maxim Sklyarov <[email protected]>
* Update deployment steps for CSM Authorization (#58)
* begin updating deployment
* fixed typos
* add auth upgrade doc
* updated powerscale with authorization
* updated authorization documentation for powermax, powerflex, and powerscale
* refactored for powermax
* added vxflexos related docs for auth deployment and configuration
* consolidated proxy server root cert
* fix grammar, notes, value.yaml parameters, update auth deployment
* added note for driver configurations with auth
* updated note
* add auth note to drivers
* update upgrade path
Co-authored-by: atye <[email protected]>
Co-authored-by: sharmilarama <[email protected]>
Co-authored-by: Logan Jones <[email protected]>
* Fix operator install docs (#62)
* Small update to the contributing doc (#54)
* Update _index.md
* Update _index.md
* fixed sidecar instructions
* Update _index.md
* making changes requested by Aron
* trying to get rid of unwanted changes
Co-authored-by: gallacher <[email protected]>
* add Volume Health Monitor section (#67)
* add Volume Health Monitor section
* PR feedback
* pv/pvc metrics csi-powerstore changes (#64)
* Added troubleshooting documentation about gateway timeout for authorization (#63)
* Upgrade and Rollback Support for CSM for Authorization proxy server (#66)
* added auth upgrade and rollback, updated auth notes for drivers
* fixed spacing
* [replication] Added uninstall page, updated repctl readme (#70)
* static provisioning and ephemeral changes (#71)
* Update uninstall.md
* updated auuth deployment steps (#72)
* add healthMonitorInterval to values table (#79)
* Helm install update (#74)
* updating helm install instructions
* adding troubleshooting for helm update
* minor changes and updates
* more minor changes
* word change
* more minor changes
* addressing comments from Jacob
* fixing numbers
* update code owners (#76)
* Move health monitor section to correct file (#81)
* update correct file
* remove feature from wrong file
* Removed older OpenShift and added new driver versions (#84)
* Feature rwop csi powerstore (#89)
* Documentation for RWOP - CSI Powerstore
* Addressed review comment
* Update powerstore.md
Co-authored-by: shanmydell <[email protected]>
* Feature rwop accessmode support for csi-powerscale (#90)
Co-authored-by: shanmydell <[email protected]>
* Tenant documentation for both csi-unity and operator (#85)
Co-authored-by: shanmydell <[email protected]>
* Replication prerequisites & troubleshooting (#93)
Co-authored-by: shanmydell <[email protected]>
* Feature/pvc metrics csi powerstore update (#91)
* volume health monitoring update (#92)
* volume health monitoring update
* Update powerscale.md
* update documentation for health monitoring
Co-authored-by: shanmydell <[email protected]>
Co-authored-by: Randeep Sharma <[email protected]>
Co-authored-by: Bahubali Jain <[email protected]>
* Changed replication support matrix (#94)
* Changed replication support matrix
* Changed to X
* Add health values (#95)
* add new values to values table
* Add note to features section
* fix typo
* Common changes (#86)
* Unity - RWOP Access Mode and Volume Health Monitoring (#77)
* RWOP support matrix change (#96)
* Added known issue for unity (#97)
* Update powerflex.md (#98)
* powerscale release notes updated (#99)
* Operator Docs changes related to Unity features (#102)
* Operator upgrade documentation for volume health monitor changes (#104)
* Added note about how to list volume snapshots (#101)
* restructured deployment docs (#106)
* Improve operator install steps (#107)
* Update versions (#100)
* Added note that clarifies keys for csm installer (#108)