forked from harness/developer-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient-redirects.js
2485 lines (2272 loc) · 113 KB
/
client-redirects.js
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
module.exports = {
redirects: [
//Static Re-directs
{
from: "/release-notes",
to: "/release-notes/whats-new",
},
{
from: "/docs/category/documentation",
to: "/docs",
},
{
from: "/tutorials/get-started",
to: "/tutorials",
},
{
from: "/release-notes/harness-platform",
to: "/release-notes/platform",
},
//===================================================================================
//
// H O W T O A D D R E D I R E C T S
//
// - Use the form in the example below.
// - Create a redirect for each target page or folder on DevHub.
// - Remove the forward-slash characters that comment out the lines of the example object.
// - Note the use of commas.
//
// Created by User for PR-123 on Jan 14, 2023
// {
// from: "/docs/platform/delegates/delegate-guide/automate-delegate-installation",
// to: "/docs/platform/delegates/installation",
// },
//===================================================================================
// Created by ravilach to move CVKB into Docs April 21st, 2023
{
from: "/kb/continuous-delivery/continuous-verification-ml",
to: "/docs/continuous-delivery/verify/cv-concepts/machine-learning",
},
{
from: "/kb/continuous-delivery/continuous-verification-results",
to: "/docs/continuous-delivery/verify/cv-concepts/verification-results",
},
{
from: "/kb/continuous-delivery/continuous-verification-templates",
to: "/docs/continuous-delivery/verify/cv-concepts/templates",
},
// Created by Sudheendra Katte to fix cv re-directs April 21st, 2023
{
from: "/docs/continuous-delivery/verify/verify-deployment-with-prometheus",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-prometheus",
},
{
from: "/docs/continuous-delivery/verify/verify-deployments-with-app-dynamics",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-app-dynamics",
},
{
from: "/docs/continuous-delivery/verify/verify-deployments-with-cloudwatch",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-cloudwatch",
},
{
from: "/docs/continuous-delivery/verify/verify-deployments-with-custom-health-metrics",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-custom-health-metrics",
},
{
from: "/docs/continuous-delivery/verify/verify-deployments-with-datadog",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-datadog",
},
{
from: "/docs/continuous-delivery/verify/verify-deployments-with-dynatrace",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-dynatrace",
},
{
from: "/docs/continuous-delivery/verify/verify-deployments-with-elastic-search",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-elastic-search",
},
{
from: "/docs/continuous-delivery/verify/verify-deployments-with-google-cloud-operations",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-google-cloud-operations",
},
{
from: "/docs/continuous-delivery/verify/verify-deployments-with-new-relic",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-new-relic",
},
{
from: "/docs/continuous-delivery/verify/verify-deployments-with-splunk",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-splunk",
},
{
from: "/docs/continuous-delivery/verify/verify-deployments-with-sumologic",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-sumologic",
},
{
from: "/docs/continuous-delivery/cd-execution/cv-category/verify-deployment-with-prometheus",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-prometheus",
},
{
from: "/docs/continuous-delivery/cd-execution/cv-category/verify-deployments-with-app-dynamics",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-app-dynamics",
},
{
from: "/docs/continuous-delivery/cd-execution/cv-category/verify-deployments-with-cloudwatch",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-cloudwatch",
},
{
from: "/docs/continuous-delivery/cd-execution/cv-category/verify-deployments-with-custom-health-metrics",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-custom-health-metrics",
},
{
from: "/docs/continuous-delivery/cd-execution/cv-category/verify-deployments-with-datadog",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-datadog",
},
{
from: "/docs/continuous-delivery/cd-execution/cv-category/verify-deployments-with-dynatrace",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-dynatrace",
},
{
from: "/docs/continuous-delivery/cd-execution/cv-category/verify-deployments-with-elastic-search",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-elastic-search",
},
{
from: "/docs/continuous-delivery/cd-execution/cv-category/verify-deployments-with-google-cloud-operations",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-google-cloud-operations",
},
{
from: "/docs/continuous-delivery/cd-execution/cv-category/verify-deployments-with-new-relic",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-new-relic",
},
{
from: "/docs/continuous-delivery/cd-execution/cv-category/verify-deployments-with-splunk",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-splunk",
},
{
from: "/docs/continuous-delivery/cd-execution/cv-category/verify-deployments-with-sumologic",
to: "/docs/continuous-delivery/verify/configure-cv/verify-deployments-with-sumologic",
},
// Created by Sudheendra Katte to fix error tracking re-directs April 20th, 2023
{
from: "/docs/service-reliability-management/continuous-error-tracking/error-tracking-in-srm-overview",
to: "/docs/service-reliability-management/continuous-error-tracking/getting-started/cet-overview",
},
{
from: "/docs/service-reliability-management/continuous-error-tracking/error-tracking-in-srm",
to: "/docs/service-reliability-management/continuous-error-tracking/getting-started/cet-setup",
},
{
from: "/docs/service-reliability-management/continuous-error-tracking/error-tracking-event-dashboard",
to: "/docs/service-reliability-management/continuous-error-tracking/getting-started/cet-event-dashboard",
},
{
from: "/docs/service-reliability-management/continuous-error-tracking/error-tracking-arc",
to: "/docs/service-reliability-management/continuous-error-tracking/getting-started/cet-arc",
},
// Created by Rashmi Sahoo to fix platform re-direct April 19th, 2023
{
from: "/docs/platform/Authentication/provision-users-with-okta-scim",
to: "/docs/platform/User-Management/provision-users-with-okta-scim",
},
{
from: "/docs/platform/Authentication/provision-users-and-groups-using-azure-ad-scim",
to: "/docs/platform/User-Management/provision-users-and-groups-using-azure-ad-scim",
},
{
from: "/docs/platform/Authentication/7provision-users-and-groups-with-one-login-scim",
to: "/docs/platform/User-Management/7provision-users-and-groups-with-one-login-scim",
},
{
from: "/docs/platform/Role-Based-Access-Control/add-users",
to: "/docs/platform/User-Management/add-users",
},
{
from: "/docs/platform/Role-Based-Access-Control/add-user-groups",
to: "/docs/platform/User-Management/add-user-groups",
},
{
from: "/docs/platform/Role-Based-Access-Control/harness-default-user-groups",
to: "/docs/platform/User-Management/harness-default-user-groups",
},
{
from: "/docs/platform/Role-Based-Access-Control/add-and-manage-service-account",
to: "/docs/platform/User-Management/add-and-manage-service-account",
},
{
from: "/docs/platform/Role-Based-Access-Control/add-and-manage-api-keys",
to: "/docs/platform/User-Management/add-and-manage-api-keys",
},
{
from: "/docs/platform/Security/add-use-text-secrets",
to: "/docs/platform/Secrets/add-use-text-secrets",
},
{
from: "/docs/platform/Security/add-file-secrets",
to: "/docs/platform/Secrets/add-file-secrets",
},
{
from: "/docs/platform/Security/add-use-ssh-secrets",
to: "/docs/platform/Secrets/add-use-ssh-secrets",
},
{
from: "/docs/platform/Security/harness-secret-manager-overview",
to: "/docs/platform/Secrets/Secrets-Management/harness-secret-manager-overview",
},
{
from: "/docs/platform/Security/add-secrets-manager",
to: "/docs/platform/Secrets/Secrets-Management/add-secrets-manager",
},
{
from: "/docs/platform/Security/add-an-aws-kms-secrets-manager",
to: "/docs/platform/Secrets/Secrets-Management/add-an-aws-kms-secrets-manager",
},
{
from: "/docs/platform/Security/add-an-aws-secret-manager",
to: "/docs/platform/Secrets/Secrets-Management/add-an-aws-secret-manager",
},
{
from: "/docs/platform/Security/azure-key-vault",
to: "/docs/platform/Secrets/Secrets-Management/azure-key-vault",
},
{
from: "/docs/platform/Security/custom-secret-manager",
to: "/docs/platform/Secrets/Secrets-Management/custom-secret-manager",
},
{
from: "/docs/platform/Security/add-google-kms-secrets-manager",
to: "/docs/platform/Secrets/Secrets-Management/add-google-kms-secrets-manager",
},
{
from: "/docs/platform/Security/add-a-google-cloud-secret-manager",
to: "/docs/platform/Secrets/Secrets-Management/add-a-google-cloud-secret-manager",
},
{
from: "/docs/platform/Security/add-hashicorp-vault",
to: "/docs/platform/Secrets/Secrets-Management/add-hashicorp-vault",
},
{
from: "/docs/platform/Security/disable-harness-secret-manager",
to: "/docs/platform/Secrets/Secrets-Management/disable-harness-secret-manager",
},
{
from: "/docs/platform/Security/reference-existing-secret-manager-secrets",
to: "/docs/platform/Secrets/Secrets-Management/reference-existing-secret-manager-secrets",
},
{
from: "/docs/platform/Security/ref-security/secrets-and-log-sanitization",
to: "/docs/platform/Secrets/Secrets-Management/secrets-and-log-sanitization",
},
{
from: "/docs/platform/Connectors/add-aws-connector",
to: "/docs/platform/Connectors/Cloud-providers/add-aws-connector",
},
{
from: "/docs/platform/Connectors/add-a-microsoft-azure-connector",
to: "/docs/platform/Connectors/Cloud-providers/add-a-microsoft-azure-connector",
},
{
from: "/docs/platform/Connectors/connect-to-google-cloud-platform-gcp",
to: "/docs/platform/Connectors/Cloud-providers/connect-to-google-cloud-platform-gcp",
},
{
from: "/docs/platform/Connectors/add-a-kubernetes-cluster-connector",
to: "/docs/platform/Connectors/Cloud-providers/add-a-kubernetes-cluster-connector",
},
{
from: "/docs/platform/Connectors/connect-to-a-cloud-provider",
to: "/docs/platform/Connectors/Cloud-providers/connect-to-a-cloud-provider",
},
{
from: "/docs/platform/Connectors/ref-cloud-providers/artifactory-connector-settings-reference",
to: "/docs/platform/Connectors/Cloud-providers/ref-cloud-providers/artifactory-connector-settings-reference",
},
{
from: "/docs/platform/Connectors/ref-cloud-providers/aws-connector-settings-reference",
to: "/docs/platform/Connectors/Cloud-providers/ref-cloud-providers/aws-connector-settings-reference",
},
{
from: "/docs/platform/Connectors/ref-cloud-providers/docker-registry-connector-settings-reference",
to: "/docs/platform/Connectors/Cloud-providers/ref-cloud-providers/docker-registry-connector-settings-reference",
},
{
from: "/docs/platform/Connectors/ref-cloud-providers/gcs-connector-settings-reference",
to: "/docs/platform/Connectors/Cloud-providers/ref-cloud-providers/gcs-connector-settings-reference",
},
{
from: "/docs/platform/Connectors/ref-cloud-providers/kubernetes-cluster-connector-settings-reference",
to: "/docs/platform/Connectors/Cloud-providers/ref-cloud-providers/kubernetes-cluster-connector-settings-reference",
},
{
from: "/docs/platform/Connectors/connect-to-jenkins",
to: "/docs/platform/Connectors/Artifact-Repositories/connect-to-jenkins",
},
{
from: "/docs/platform/Connectors/connect-to-an-artifact-repo",
to: "/docs/platform/Connectors/Artifact-Repositories/connect-to-an-artifact-repo",
},
{
from: "/docs/platform/Connectors/connect-to-harness-container-image-registry-using-docker-connector",
to: "/docs/platform/Connectors/Artifact-Repositories/connect-to-harness-container-image-registry-using-docker-connector",
},
{
from: "/docs/platform/Connectors/using-ibm-registry-to-create-a-docker-connector",
to: "/docs/platform/Connectors/Artifact-Repositories/using-ibm-registry-to-create-a-docker-connector",
},
{
from: "/docs/platform/Connectors/connect-to-code-repo",
to: "/docs/platform/Connectors/Code-Repositories/connect-to-code-repo",
},
{
from: "/docs/platform/Connectors/add-a-git-hub-connector",
to: "/docs/platform/Connectors/Code-Repositories/add-a-git-hub-connector",
},
{
from: "/docs/platform/Connectors/connect-to-a-azure-repo",
to: "/docs/platform/Connectors/Code-Repositories/connect-to-a-azure-repo",
},
{
from: "/docs/platform/Connectors/git-hub-app-support",
to: "/docs/platform/Connectors/Code-Repositories/git-hub-app-support",
},
{
from: "/docs/platform/Connectors/ref-source-repo-provider/bitbucket-connector-settings-reference",
to: "/docs/platform/Connectors/Code-Repositories/ref-source-repo-provider/bitbucket-connector-settings-reference",
},
{
from: "/docs/platform/Connectors/ref-source-repo-provider/git-connector-settings-reference",
to: "/docs/platform/Connectors/Code-Repositories/ref-source-repo-provider/git-connector-settings-reference",
},
{
from: "/docs/platform/Connectors/ref-source-repo-provider/git-hub-connector-settings-reference",
to: "/docs/platform/Connectors/Code-Repositories/ref-source-repo-provider/git-hub-connector-settings-reference",
},
{
from: "/docs/platform/Connectors/ref-source-repo-provider/git-lab-connector-settings-reference",
to: "/docs/platform/Connectors/Code-Repositories/ref-source-repo-provider/git-lab-connector-settings-reference",
},
{
from: "/docs/platform/Connectors/ref-source-repo-provider/http-helm-repo-connector-settings-reference",
to: "/docs/platform/Connectors/Code-Repositories/ref-source-repo-provider/http-helm-repo-connector-settings-reference",
},
{
from: "/docs/platform/Connectors/ref-source-repo-provider/source-code-manager-settings",
to: "/docs/platform/Connectors/Code-Repositories/ref-source-repo-provider/source-code-manager-settings",
},
{
from: "/docs/platform/Connectors/connect-to-service-now",
to: "/docs/platform/Connectors/Ticketing-Systems/connect-to-service-now",
},
{
from: "/docs/platform/Connectors/connect-to-jira",
to: "/docs/platform/Connectors/Ticketing-Systems/connect-to-jira",
},
{
from: "/docs/platform/Connectors/connect-to-monitoring-and-logging-systems",
to: "/docs/platform/Connectors/Monitoring-and-Logging-Systems/connect-to-monitoring-and-logging-systems",
},
{
from: "/docs/platform/Policy-as-code/harness-governance-overview",
to: "/docs/platform/Governance/Policy-as-code/harness-governance-overview",
},
{
from: "/docs/platform/Policy-as-code/add-a-governance-policy-step-to-a-connector",
to: "/docs/platform/Governance/Policy-as-code/add-a-governance-policy-step-to-a-connector",
},
{
from: "/docs/platform/Policy-as-code/add-a-governance-policy-step-to-a-pipeline",
to: "/docs/platform/Governance/Policy-as-code/add-a-governance-policy-step-to-a-pipeline",
},
{
from: "/docs/platform/Policy-as-code/add-a-policy-engine-step-to-a-secret",
to: "/docs/platform/Governance/Policy-as-code/add-a-policy-engine-step-to-a-secret",
},
{
from: "/docs/platform/Policy-as-code/disable-a-policy-set",
to: "/docs/platform/Governance/Policy-as-code/disable-a-policy-set",
},
{
from: "/docs/platform/Policy-as-code/harness-governance-quickstart",
to: "/docs/platform/Governance/Policy-as-code/harness-governance-quickstart",
},
{
from: "/docs/platform/Policy-as-code/using-harness-policy-engine-for-feature-flags",
to: "/docs/platform/Governance/Policy-as-code/using-harness-policy-engine-for-feature-flags",
},
{
from: "/docs/platform/Audit-Trail/audit-trail",
to: "/docs/platform/Governance/Audit-Trail/audit-trail",
},
{
from: "/docs/platform/Audit-Trail/audit-streaming",
to: "/docs/platform/Governance/Audit-Trail/audit-streaming",
},
{
from: "/docs/platform/APIs/api-quickstart",
to: "/docs/platform/Resource-Development/APIs/api-quickstart",
},
{
from: "/docs/platform/APIs/default-settings-for-jwt-token",
to: "/docs/platform/Resource-Development/APIs/default-settings-for-jwt-token",
},
{
from: "/docs/platform/APIs/harness-rest-api-reference",
to: "/docs/platform/Resource-Development/APIs/harness-rest-api-reference",
},
{
from: "/docs/platform/APIs/jwt-token-auth",
to: "/docs/platform/Resource-Development/APIs/jwt-token-auth",
},
{
from: "/docs/platform/Terraform/harness-terraform-provider-overview",
to: "/docs/platform/Resource-Development/Terraform/harness-terraform-provider-overview",
},
{
from: "/docs/platform/Terraform/harness-terraform-provider",
to: "/docs/platform/Resource-Development/Terraform/harness-terraform-provider",
},
{
from: "/docs/platform/Terraform/automate-harness-onboarding",
to: "/docs/platform/Resource-Development/Terraform/automate-harness-onboarding",
},
{
from: "/docs/platform/Terraform/advanced-terraform-onboarding",
to: "/docs/platform/Resource-Development/Terraform/advanced-terraform-onboarding",
},
// Created by ravilach/schoudhury to fix platform re-direct April 17th, 2023
{
from: "/docs/platform/delegates/delegate-install-kubernetes/install-harness-delegate-using-helm",
to: "/tutorials/platform/install-delegate",
},
// Created by Gigi Hanna to fix FF re-directs April 18th, 2023
{
from: "/docs/feature-flags/ff-onboarding/ff-getting-started/java-quickstart",
to: "/docs/feature-flags/ff-onboarding/java-quickstart",
},
{
from: "/docs/feature-flags/ff-onboarding/ff-getting-started/feature-flag-best-practices",
to: "/docs/feature-flags/ff-onboarding/feature-flag-best-practices",
},
{
from: "/docs/feature-flags/ff-onboarding/ff-getting-started/getting-started-with-feature-flags",
to: "/docs/feature-flags/ff-onboarding/getting-started-with-feature-flags",
},
{
from: "/docs/feature-flags/ff-using-flags/add-prerequisites-to-feature-flag",
to: "/docs/feature-flags/add-prerequisites-to-feature-flag",
},
{
from: "/docs/feature-flags/ff-using-flags/connect-monitored-service",
to: "/docs/feature-flags/connect-monitored-service",
},
{
from: "/docs/feature-flags/ff-using-flags/harness-policy-engine",
to: "/docs/feature-flags/harness-policy-engine",
},
{
from: "/docs/feature-flags/ff-using-flags/integrate-feature-flag-with-jira",
to: "/docs/feature-flags/integrate-feature-flag-with-jira",
},
{
from: "/docs/feature-flags/ff-using-flags/manage-featureflags-in-git-repos",
to: "/docs/feature-flags/manage-featureflags-in-git-repos",
},
{
from: "/docs/feature-flags/ff-using-flags/ff-creating-flag/create-an-environment",
to: "/docs/feature-flags/ff-creating-flag/create-a-project",
},
{
from: "/docs/feature-flags/ff-using-flags/ff-creating-flag/create-an-sdk-key",
to: "/docs/feature-flags/ff-creating-flag/create-a-project",
},
{
from: "/docs/feature-flags/ff-using-flags/update-feature-flags/enable-or-disable-a-feature-flag",
to: "/docs/feature-flags/ff-creating-flag/enable-or-disable-a-feature-flag",
},
{
from: "/docs/feature-flags/ff-using-flags/update-feature-flags/edit-and-delete-a-feature-flag",
to: "/docs/feature-flags/ff-creating-flag/edit-and-delete-a-feature-flag",
},
{
from: "/docs/feature-flags/ff-using-flags/update-feature-flags/manage-variations",
to: "/docs/feature-flags/ff-creating-flag/manage-variations",
},
{
from: "/docs/feature-flags/ff-using-flags/update-feature-flags/delete-a-feature-flag",
to: "/docs/feature-flags/ff-creating-flag/edit-and-delete-a-feature-flag",
},
{
from: "/docs/feature-flags/ff-using-flags/ff-creating-flag/create-a-project",
to: "/docs/feature-flags/ff-creating-flag/create-a-project",
},
{
from: "/docs/feature-flags/ff-using-flags/ff-creating-flag/create-a-feature-flag",
to: "/docs/feature-flags/ff-creating-flag/create-a-feature-flag",
},
{
from: "/docs/feature-flags/ff-using-flags/ff-target-management/add-targets",
to: "/docs/feature-flags/ff-target-management/add-targets",
},
{
from: "/docs/feature-flags/ff-using-flags/ff-target-management/add-target-groups",
to: "/docs/feature-flags/ff-target-management/add-target-groups",
},
{
from: "/docs/feature-flags/ff-using-flags/ff-target-management/targeting-users-with-flags",
to: "/docs/feature-flags/ff-target-management/targeting-users-with-flags",
},
{
from: "/docs/feature-flags/ff-using-flags/ff-build-pipeline/build-feature-flag-pipeline",
to: "/docs/feature-flags/ff-build-pipeline/build-feature-flag-pipeline",
},
{
from: "/docs/feature-flags/ff-using-flags/ff-build-pipeline/default-pipeline-ff",
to: "/docs/feature-flags/ff-build-pipeline/default-pipeline-ff",
},
{
from: "/docs/feature-flags/ff-using-flags/relay-proxy",
to: "/docs/feature-flags/relay-proxy",
},
{
from: "/docs/feature-flags/ff-using-flags/relay-proxy/deploy-relay-proxy",
to: "/docs/feature-flags/relay-proxy/deploy-relay-proxy",
},
// Created by ravilach to fix CD Cert re-directs April 15th, 2023
{
from: "/docs/continuous-delivery/onboard-cd/cd-concepts/cd-pipeline-basics",
to: "/docs/continuous-delivery/get-started/cd-pipeline-basics",
},
{
from: "/docs/continuous-delivery/onboard-cd/cd-concepts/services-and-environments-overview",
to: "/docs/continuous-delivery/get-started/services-and-environments-overview",
},
// Created by schoudhury on Apr 18, 2023 - All tutorials
{
from: "/tutorials/build-code",
to: "/tutorials/ci-pipelines",
},
{
from: "/tutorials/build-code/fastest-ci",
to: "/tutorials/ci-pipelines/fastest-ci",
},
{
from: "/tutorials/build-code/build",
to: "/tutorials/ci-pipelines/build",
},
{
from: "/tutorials/build-code/build/kubernetes-build-farm",
to: "/tutorials/ci-pipelines/build/kubernetes-build-farm",
},
{
from: "/tutorials/build-code/build/nodejs",
to: "/tutorials/ci-pipelines/build/nodejs",
},
{
from: "/tutorials/build-code/build/java",
to: "/tutorials/ci-pipelines/build/java",
},
{
from: "/tutorials/build-code/build/react",
to: "/tutorials/ci-pipelines/build/react",
},
{
from: "/tutorials/build-code/build/go",
to: "/tutorials/ci-pipelines/build/go",
},
{
from: "/tutorials/build-code/build/rust",
to: "/tutorials/ci-pipelines/build/rust",
},
{
from: "/tutorials/build-code/build/signed-image",
to: "/tutorials/ci-pipelines/build/signed-image",
},
{
from: "/tutorials/build-code/build/tfc-notification",
to: "/tutorials/ci-pipelines/build/tfc-notification",
},
{
from: "/tutorials/build-code/test",
to: "/tutorials/ci-pipelines/test",
},
{
from: "/tutorials/build-code/test/localstack",
to: "/tutorials/ci-pipelines/test/localstack",
},
{
from: "/tutorials/build-code/test/saucelabs-proxy",
to: "/tutorials/ci-pipelines/test/saucelabs-proxy",
},
{
from: "/tutorials/build-code/test/allure-report",
to: "/tutorials/ci-pipelines/test/allure-report",
},
{
from: "/tutorials/build-code/test/codecov",
to: "/tutorials/ci-pipelines/test/codecov",
},
{
from: "/tutorials/build-code/publish",
to: "/tutorials/ci-pipelines/publish",
},
{
from: "/tutorials/build-code/publish/amazon-ecr",
to: "/tutorials/ci-pipelines/publish/amazon-ecr",
},
{
from: "/tutorials/build-code/publish/google-gar",
to: "/tutorials/ci-pipelines/publish/google-gar",
},
{
from: "/tutorials/deploy-services",
to: "/tutorials/cd-pipelines",
},
{
from: "/tutorials/deploy-services/kubernetes",
to: "/tutorials/cd-pipelines/kubernetes",
},
{
from: "/tutorials/deploy-services/kubernetes/helm-chart",
to: "/tutorials/cd-pipelines/kubernetes/helm-chart",
},
{
from: "/tutorials/deploy-services/kubernetes/manifest",
to: "/tutorials/cd-pipelines/kubernetes/manifest",
},
{
from: "/tutorials/deploy-services/amazon-ecs",
to: "/tutorials/cd-pipelines/amazon-ecs",
},
{
from: "/tutorials/deploy-services/unified-cicd",
to: "/tutorials/cd-pipelines/unified-cicd",
},
{
from: "/tutorials/manage-feature-flags",
to: "/tutorials/feature-flags",
},
{
from: "/tutorials/manage-feature-flags/typescript-react-first-feature-flag",
to: "/tutorials/feature-flags/typescript-react",
},
{
from: "/tutorials/manage-cloud-costs",
to: "/tutorials/cloud-costs",
},
{
from: "/tutorials/manage-cloud-costs/ccm-first-kubernetes-tutorial",
to: "/tutorials/cloud-costs/kubernetes",
},
{
from: "/tutorials/manage-service-reliability",
to: "/tutorials/service-reliability",
},
{
from: "/tutorials/manage-service-reliability/intro-to-srm",
to: "/tutorials/service-reliability/slo-prometheus",
},
{
from: "/tutorials/manage-service-reliability/intro-java-exception-management",
to: "/tutorials/service-reliability/java-error-tracking",
},
{
from: "/tutorials/orchestrate-security-tests",
to: "/tutorials/security-tests",
},
{
from: "/tutorials/orchestrate-security-tests/sto-standalone-workflows",
to: "/tutorials/security-tests/standalone-pipeline",
},
{
from: "/tutorials/orchestrate-security-tests/sto-integrated-workflows",
to: "/tutorials/security-tests/cicd-integrated-pipeline",
},
{
from: "/tutorials/orchestrate-security-tests/nodejs-firstscan",
to: "/tutorials/security-tests/nodejs-owasp",
},
{
from: "/tutorials/run-chaos-experiments",
to: "/tutorials/chaos-experiments",
},
{
from: "/tutorials/run-chaos-experiments/first-chaos-engineering",
to: "/tutorials/chaos-experiments/first-chaos-engineering",
},
{
from: "/tutorials/run-chaos-experiments/chaos-experiment-from-blank-canvas",
to: "/tutorials/chaos-experiments/chaos-experiment-from-blank-canvas",
},
{
from: "/tutorials/run-chaos-experiments/first-chaos-experiment-via-API",
to: "/tutorials/chaos-experiments/first-chaos-experiment-via-api",
},
{
from: "/tutorials/run-chaos-experiments/chaos-experiments-on-gitlab",
to: "/tutorials/chaos-experiments/chaos-experiments-on-gitlab",
},
{
from: "/tutorials/run-chaos-experiments/chaos-experiments-on-jenkins",
to: "/tutorials/chaos-experiments/chaos-experiments-on-jenkins",
},
{
from: "/tutorials/run-chaos-experiments/integration-with-harness-cd",
to: "/tutorials/chaos-experiments/integration-with-harness-cd",
},
// Created by Charanya Jayaraman to fix CCM redirects on Apr 13, 2023
{
from: "/docs/cloud-cost-management/cloud-cost-technical-reference/ccm-ref/ccm-roles-and-permissions",
to: "/docs/cloud-cost-management/getting-started-ccm/access-control/ccm-roles-and-permissions",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/quick-start-guides/kubernetes-autostopping-quick-start-guide",
to: "/docs/cloud-cost-management/getting-started-ccm/quick-start-guides/kubernetes-autostopping-quick-start-guide",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-cost-anomaly-detection/detect-cloud-cost-anomalies-with-ccm",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/detect-cloud-cost-anomalies-with-ccm",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-currency-preferences/currency-preferences",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/currency-preferences",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-perspectives/export-perspective-data",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/ccm-perspectives/export-perspective-data",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-recommendations/node-pool-recommendations",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/ccm-recommendations/node-pool-recommendations",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-recommendations/workload-recommendations",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/ccm-recommendations/workload-recommendations",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/add-connectors/add-azure-connector",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/add-connectors/add-azure-connector",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/add-connectors/connect-to-an-aws-connector",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/add-connectors/connect-to-an-aws-connector",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/add-connectors/create-a-gcp-connector-for-auto-stopping-rules",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/add-connectors/create-a-gcp-connector-for-auto-stopping-rules",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/load-balancer/create-an-application-gateway-for-azure",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/load-balancer/create-an-application-gateway-for-azure",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/load-balancer/create-autoproxy-aws-lb",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/load-balancer/create-autoproxy-aws-lb",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/load-balancer/create-autoproxy-gcp-lb",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/load-balancer/create-autoproxy-gcp-lb",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/load-balancer/create-azure-autoproxy-lb",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/load-balancer/create-azure-autoproxy-lb",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/load-balancer/create-load-balancer-aws",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/load-balancer/create-load-balancer-aws",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/configure-ecg/configure-ecg-for-auto-stopping-rules",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/configure-ecg-for-auto-stopping-rules",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/autostopping-dashboard",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/autostopping-dashboard",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/add-connectors/k8s-connector-autostopping",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/add-connectors/k8s-connector-autostopping",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/autostopping-dry-run-mode",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/autostopping-dry-run-mode",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/create-auto-stopping-rules-for-ecs",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/create-auto-stopping-rules-for-ecs",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/create-auto-stopping-rules-for-azure",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/create-auto-stopping-rules-for-azure",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/create-auto-stopping-rules-for-gcp",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/create-auto-stopping-rules-for-gcp",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/create-auto-stopping-rules-for-rds",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/create-auto-stopping-rules-for-rds",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/create-auto-stopping-rules-for-terraform",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/create-auto-stopping-rules-for-terraform",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/create-autostopping-rules-aws",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/create-autostopping-rules-aws",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/create-autostopping-rules-for-kubernetes",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/create-autostopping-rules-for-kubernetes",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/kubernetes-autostopping-for-istio",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/kubernetes-autostopping-for-istio",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/review-autostopping-rules-reqs",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/optimize-cloud-costs-with-intelligent-cloud-auto-stopping-rules/create-auto-stopping-rules/review-autostopping-rules-reqs",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-perspectives/create-a-budget-perspective",
to: "/docs/cloud-cost-management/use-ccm-cost-governance/ccm-budgets/create-a-budget",
},
{
from: "/docs/cloud-cost-management/monitor-cloud-cost-with-integration/integration/datadog-integration",
to: "/docs/cloud-cost-management/monitor-cloud-cost-with-integration/datadog-integration",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-perspectives/share-cost-perspective-report",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/ccm-perspectives/share-cost-perspective-report",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-cost-categories/use-ccm-cost-categories",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/ccm-cost-categories/ccm-cost-categories",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/root-cost-analysis/analyze-cost-for-aws",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/root-cost-analysis/analyze-cost-for-aws",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/root-cost-analysis/analyze-cost-for-azure",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/root-cost-analysis/analyze-cost-for-azure",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/root-cost-analysis/analyze-cost-for-gcp-using-perspectives",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/root-cost-analysis/analyze-cost-for-gcp-using-perspectives",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/root-cost-analysis/analyze-cost-for-k8s-ecs-using-perspectives",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/root-cost-analysis/analyze-cost-for-k8s-ecs-using-perspectives",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/root-cost-analysis/perform-root-cost-analysis",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/root-cost-analysis/perform-root-cost-analysis",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/root-cost-analysis/understanding-ccm-perspective-date-ranges",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/root-cost-analysis/understanding-ccm-perspective-date-ranges",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/quick-start-guides/autostopping-proxy-alb-usecase",
to: "/docs/cloud-cost-management/getting-started-ccm/quick-start-guides/autostopping-proxy-alb-usecase",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-dashboards-and-access-control/access-control/manage-access-control-for-ccm-dashboards",
to: "/docs/cloud-cost-management/getting-started-ccm/access-control/manage-access-control-for-ccm-dashboards",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-dashboards-and-access-control/access-control/manage-access-control-perspective-folders",
to: "/docs/cloud-cost-management/getting-started-ccm/access-control/manage-access-control-perspective-folders",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-dashboards-and-access-control/ccm-dashboards-by-harness/access-ccm-dashboards",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/use-ccm-dashboards/access-ccm-dashboards",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-dashboards-and-access-control/ccm-dashboards-by-harness/aws-dashboard",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/use-ccm-dashboards/aws-dashboard",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-dashboards-and-access-control/ccm-dashboards-by-harness/aws-reservation-coverage-and-service-cost",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/use-ccm-dashboards/aws-reservation-coverage-and-service-cost",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-dashboards-and-access-control/ccm-dashboards-by-harness/azure-cost-dashboard",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/use-ccm-dashboards/azure-cost-dashboard",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-dashboards-and-access-control/ccm-dashboards-by-harness/cluster-cost-dashboard",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/use-ccm-dashboards/cluster-cost-dashboard",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-dashboards-and-access-control/ccm-dashboards-by-harness/gcp-dashboard",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/use-ccm-dashboards/gcp-dashboard",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-dashboards-and-access-control/ccm-dashboards-by-harness/multi-cloud-cost-overview-dashboard",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/use-ccm-dashboards/multi-cloud-cost-overview-dashboard",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-dashboards-and-access-control/ccm-dashboards-by-harness/orphaned-ebs-volumes-and-snapshots-dashboard",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/use-ccm-dashboards/orphaned-ebs-volumes-and-snapshots-dashboard",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-dashboards-and-access-control/ccm-dashboards-by-harness/use-multiple-tags-in-aws",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/use-ccm-dashboards/use-multiple-tags-in-aws",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-dashboards-and-access-control/ccm-dashboards-by-harness/view-aws-ec-2-instance-metrics",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/use-ccm-dashboards/view-aws-ec-2-instance-metrics",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-dashboards-and-access-control/ccm-dashboards-by-harness/view-aws-ec-2-inventory-cost-dashboard",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/use-ccm-dashboards/view-aws-ec-2-inventory-cost-dashboard",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-dashboards-and-access-control/ccm-dashboards-by-harness/view-aws-resource-breakdown-cost-dashboard",
to: "/docs/cloud-cost-management/use-ccm-cost-reporting/use-ccm-dashboards/view-aws-resource-breakdown-cost-dashboard",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-recommendations/home-recommendations",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/ccm-recommendations/home-recommendations",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-recommendations/ec2-recommendations",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/ccm-recommendations/ec2-recommendations",
},
{
from: "/docs/cloud-cost-management/use-cloud-cost-management/ccm-recommendations/ecs-recommendations",
to: "/docs/cloud-cost-management/use-ccm-cost-optimization/ccm-recommendations/ecs-recommendations",
},
// Created by SudheendraKatte for SRM Docs reorg, PR-1276, on Apr 12, 2023
{
from: "/docs/service-reliability-management/howtos-service-reliability-management/service-reliability-management-basics",
to: "/docs/service-reliability-management/getting-started/service-reliability-management-basics",
},
{
from: "/docs/service-reliability-management/howtos-service-reliability-management/slo-driven-deployment-governance",
to: "/docs/service-reliability-management/slo-driven-deployment-governance",
},
{
from: "/docs/service-reliability-management/howtos-service-reliability-management/change-impact-analysis/change-impact-analysis-quickstart",
to: "/docs/service-reliability-management/change-impact-analysis/",
},
{
from: "/docs/service-reliability-management/howtos-service-reliability-management/change-impact-analysis/change-impact-analysis-service-health-dashboard",
to: "/docs/service-reliability-management/change-impact-analysis/change-impact-analysis-service-health-dashboard",
},
{
from: "/docs/service-reliability-management/howtos-service-reliability-management/change-impact-analysis/change-impact-analysis-changes-dash-board",
to: "/docs/service-reliability-management/change-impact-analysis/change-impact-analysis-changes-dash-board",
},
{
from: "/docs/service-reliability-management/howtos-service-reliability-management/change-impact-analysis/change-impact-analysis-add-featureflag",
to: "/docs/service-reliability-management/monitored-service/change-source/feature-flag-change-source",
},
{
from: "/docs/service-reliability-management/howtos-service-reliability-management/change-impact-analysis/change-impact-analysis-add-custom-change-source",
to: "/docs/service-reliability-management/monitored-service/change-source/custom-deployment-change-source",