-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathcloudfoundry.yml
6638 lines (6638 loc) · 195 KB
/
cloudfoundry.yml
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
---
orgs:
cloudfoundry:
admins:
- christopherclark
- dsboulder
- emalm
- halliwilljustin
- LeePorte
- loewenstein
- mjear
- ramiyengar
- rkoster
- stephanme
- thelinuxfoundation
billing_email: [email protected]
company: ""
default_repository_permission: none
description: Cloud Foundry Foundation active projects
email: [email protected]
has_organization_projects: true
has_repository_projects: true
location: Worldwide
members: [] # shall be empty, org members are maintained in contributors.yml and WG charters
members_can_create_repositories: false
name: Cloud Foundry
repos:
.github:
has_projects: true
CLAW:
description: The CF CLI download redirection web application
has_projects: true
has_wiki: false
admin-tools:
has_projects: true
private: true
api-docs:
default_branch: main
description: Cloud Controller API Docs
has_projects: true
app-autoscaler:
archived: true
default_branch: main
description: Auto Scaling for CF Applications
has_projects: true
app-autoscaler-ci:
description: The CI part of the app-autoscaler project
has_projects: true
app-autoscaler-cli-plugin:
default_branch: main
description: CF CLI Plugin for the App AutoScaler
has_projects: true
app-autoscaler-env-bbl-state:
default_branch: main
has_projects: true
private: true
app-autoscaler-release:
default_branch: main
has_projects: true
app-autoscaler-ui:
description: A UI project for the Cloud Foundry incubator app-autoscaler
has_projects: true
apt-buildpack:
has_projects: false
has_wiki: false
archive-expanding-cnb:
archived: true
has_projects: true
archiver:
allow_merge_commit: false
description: Utilities for extracting and compressing tgz and zip files.
has_issues: false
has_projects: true
auction:
allow_merge_commit: false
description: Auction encodes Diego's long-running-process distribution algorithm
has_issues: false
has_projects: true
auctioneer:
allow_merge_commit: false
description: Runs diego auctions
has_issues: false
has_projects: true
auth-proxy:
archived: true
has_projects: true
azure-application-insights-cnb:
archived: true
has_projects: true
backup-and-restore-sdk-release:
default_branch: main
has_projects: true
bbl-state-resource:
description: a concourse resource for manipulating bbl states
has_projects: true
bbs:
allow_merge_commit: false
description: Internal API to access the database for Diego.
has_issues: false
has_projects: true
benchmarkbbs:
allow_merge_commit: false
description: Diego BBS Benchmark
has_issues: false
has_projects: true
benchmarklocket:
has_projects: true
private: true
binary-builder:
default_branch: main
description: Builds binaries against the rootfs of your choice.
has_projects: true
binary-buildpack:
description: Deploy binaries to Cloud Foundry
has_projects: false
has_wiki: false
binary-buildpack-release:
description: BOSH release for Binary Buildpack
has_projects: false
has_wiki: false
homepage: http://bosh.io/releases/github.com/cloudfoundry/binary-buildpack-release
bits-service-private-config:
has_projects: true
private: true
blackbox:
allow_merge_commit: false
default_branch: main
description: Forward logs from files on windows and linux.
has_projects: false
has_wiki: false
blobstore_url_signer:
description: Signed URLs, or your money back!
has_projects: true
bosh:
default_branch: main
description: Cloud Foundry BOSH is an open source tool chain for release engineering,
deployment and lifecycle management of large scale distributed services.
has_projects: false
has_wiki: false
homepage: https://bosh.io
bosh-acceptance-tests:
description: ' BATs: BOSH Acceptance Tests'
has_projects: false
has_wiki: false
bosh-agent:
default_branch: main
description: BOSH Agent runs on each BOSH deployed VM
has_projects: true
has_wiki: false
bosh-agent-index:
has_projects: true
bosh-alicloud-light-stemcell-builder:
description: Builds light stemcells for Alibaba Cloud from a "full" bosh stemcell
has_projects: true
bosh-aws-cpi-release:
description: BOSH AWS CPI
has_projects: true
has_wiki: false
bosh-aws-light-stemcell-builder:
description: Builds light stemcells for AWS from a "full" bosh stemcell
has_projects: false
has_wiki: false
bosh-azure-cpi-ci:
description: BOSH Azure CPI configuration
has_projects: true
private: true
bosh-azure-cpi-release:
description: BOSH Azure CPI
has_projects: true
has_wiki: false
bosh-backup-and-restore:
has_projects: true
homepage: https://docs.cloudfoundry.org/bbr
bosh-backup-and-restore-test-releases:
description: Test Releases for bosh-backup-and-restore
has_projects: true
bosh-bbl-ci-envs:
description: BOSH DNS release CI envs
has_projects: false
has_wiki: false
private: true
bosh-bootloader:
allow_merge_commit: false
allow_squash_merge: false
default_branch: main
description: Command line utility for standing up a BOSH director on an IAAS
of your choice.
has_projects: false
has_wiki: false
bosh-cli:
default_branch: main
description: BOSH CLI v2+
has_projects: false
has_wiki: false
bosh-community-stemcell-ci-infra:
default_branch: main
has_projects: true
bosh-compile-action:
default_branch: main
has_projects: true
bosh-compiled-releases-index:
has_projects: false
has_wiki: false
bosh-cpi-certification:
has_projects: false
has_wiki: false
bosh-cpi-environments:
has_projects: true
has_wiki: false
private: true
bosh-cpi-go:
description: Library for developing BOSH CPIs in Go
has_projects: false
has_wiki: false
bosh-cpi-kb:
has_projects: true
private: true
bosh-cpi-ruby:
description: Library for developing BOSH CPIs in Ruby
has_projects: true
has_wiki: false
bosh-davcli:
description: Dav CLI for BOSH
has_projects: false
has_wiki: false
bosh-deployment:
description: Collection of BOSH manifests referenced by cloudfoundry/docs-bosh
has_projects: false
has_wiki: false
bosh-deployment-resource:
has_projects: true
bosh-disaster-recovery-acceptance-tests:
has_projects: true
bosh-dns-aliases-release:
description: Misc release to specify additional DNS aliases
has_projects: false
has_wiki: false
bosh-dns-release:
description: BOSH DNS release
has_projects: false
has_wiki: false
bosh-docker-cpi-release:
description: BOSH Docker CPI
has_projects: true
has_wiki: false
bosh-gcscli:
description: GCS for BOSH
has_projects: false
has_wiki: false
bosh-google-cpi-release:
description: BOSH Google CPI
has_projects: true
bosh-google-light-stemcell-builder:
description: Builds light stemcells for GCP from a "full" bosh stemcell
has_projects: false
has_wiki: false
bosh-linux-stemcell-builder:
default_branch: ubuntu-bionic/master
description: 'BOSH Ubuntu Linux stemcells '
has_projects: false
has_wiki: false
bosh-openstack-cpi-ci:
description: Concourse pipeline to update Let's encrypt certificate
has_projects: true
private: true
bosh-openstack-cpi-release:
description: BOSH OpenStack CPI
has_projects: true
has_wiki: false
bosh-openstack-cpi-shared:
has_issues: false
has_projects: true
private: true
bosh-psmodules:
description: PowerShell modules for building Windows Stemcells
has_projects: false
bosh-s3cli:
description: Go CLI for S3
has_projects: false
has_wiki: false
bosh-softlayer-cpi-release:
description: An external BOSH CPI for the SoftLayer cloud written in Golang
has_projects: true
bosh-stemcell-resource:
archived: true
has_projects: true
private: true
bosh-stemcells-ci:
has_projects: true
bosh-system-metrics-forwarder-release:
allow_merge_commit: false
default_branch: main
has_projects: true
bosh-system-metrics-server-release:
allow_merge_commit: false
default_branch: main
has_projects: true
bosh-utils:
description: Generic packages extracted from bosh-agent and bosh-init
has_projects: false
has_wiki: false
bosh-virtualbox-cpi-release:
description: BOSH VirtualBox CPI
has_projects: false
has_wiki: false
bosh-vsphere-cpi-release:
allow_merge_commit: false
allow_squash_merge: false
description: BOSH vSphere CPI
has_projects: false
has_wiki: false
bosh-warden-cpi-release:
description: BOSH Garden (used to be Warden) CPI
has_projects: false
has_wiki: false
bosh-windows-acceptance-tests:
has_projects: true
bosh-windows-stemcell-builder:
has_projects: true
bosh-workstation:
allow_merge_commit: false
allow_squash_merge: false
description: Get your workstation setup to work on the bosh team
has_projects: false
has_wiki: false
private: true
bosh_rackspace_cpi_spike:
description: An experimental/unsupported/untested CPI for Rackspace
has_projects: true
private: true
bpm-release:
allow_merge_commit: false
description: isolated bosh jobs
has_projects: false
has_wiki: false
brats:
description: Buildpack Runtime Acceptance Tests
has_projects: false
has_wiki: false
bsdtar:
has_projects: true
has_wiki: false
build-system-cnb:
archived: true
has_projects: true
buildpack-acceptance-tests:
archived: true
has_projects: false
has_wiki: false
buildpack-checklists:
archived: true
has_projects: true
has_wiki: false
private: true
buildpack-packager:
description: Buildpack Packager
has_projects: false
has_wiki: false
buildpackapplifecycle:
description: The bit that takes some bits, mashes them together with other
bits, and produces a new bit
has_projects: false
has_wiki: false
buildpacks-ci:
description: Concourse CI pipelines for the buildpacks team
has_projects: false
has_wiki: false
homepage: https://buildpacks.ci.cf-app.com
buildpacks-envs:
has_projects: false
has_wiki: false
private: true
buildpacks-feature-eng-ci:
has_projects: false
has_wiki: false
buildpacks-github-config:
default_branch: main
has_projects: false
has_wiki: false
buildpacks-style-guide:
archived: true
description: Cloud Foundry Buildpack Team's Style Guide
has_projects: true
buildpacks-workstation:
has_projects: true
private: true
bytefmt:
allow_merge_commit: false
description: Human readable byte formatter
has_issues: false
has_projects: true
cacheddownloader:
allow_merge_commit: false
description: A cached HTTP blob downloader
has_issues: false
has_projects: true
canibump:
archived: true
has_projects: true
capi-bara-tests:
default_branch: main
has_projects: true
capi-ci:
default_branch: main
has_projects: true
capi-ci-private:
default_branch: main
has_projects: true
private: true
capi-datadog:
has_projects: true
private: true
capi-dockerfiles:
default_branch: main
has_projects: true
capi-env-pool:
default_branch: main
has_projects: true
private: true
capi-integration-tests:
archived: true
default_branch: main
has_projects: true
capi-k8s-release:
default_branch: main
description: The CF API parts of cloudfoundry/cf-for-k8s
has_projects: true
capi-release:
default_branch: develop
description: Bosh Release for Cloud Controller and friends
has_projects: true
capi-team-checklists:
default_branch: main
description: Checklists and wiki for CAPI team
has_projects: true
private: true
capi-workspace:
default_branch: main
description: Machine setup for CAPI developers
has_projects: true
cc-api-v3-style-guide:
archived: true
description: Style Guide for Cloud Controller v3 API
has_projects: true
cc-uploader:
default_branch: main
description: CC Bridge component to enable Diego to upload files to Cloud
Controller's blobstore
has_projects: true
cert-injector:
has_projects: true
certauthority:
allow_merge_commit: false
default_branch: main
has_projects: true
certsplitter:
allow_merge_commit: false
has_issues: false
has_projects: true
cf-acceptance-tests:
default_branch: develop
description: CF Acceptance tests
has_projects: true
cf-app-utils-ruby:
archived: true
description: Helper methods for ruby apps on Cloud Foundry
has_projects: true
cf-crd-explorations:
archived: true
default_branch: main
has_projects: true
cf-deployment:
default_branch: main
description: The canonical open source deployment manifest for Cloud Foundry
has_projects: true
cf-deployment-concourse-tasks:
default_branch: main
has_projects: true
cf-drain-cli:
allow_merge_commit: false
default_branch: main
description: CF CLI plugin to create syslog drains
has_projects: true
cf-for-k8s:
default_branch: develop
description: The open source deployment manifest for Cloud Foundry on Kubernetes
has_projects: true
cf-for-k8s-docs:
default_branch: main
has_projects: true
cf-for-k8s-metric-examples:
has_projects: true
cf-identity-acceptance-tests-release:
has_projects: true
cf-java-client:
default_branch: main
description: Java Client Library for Cloud Foundry
has_projects: false
has_wiki: false
cf-k8s-api:
archived: true
default_branch: main
has_projects: true
cf-k8s-logging:
default_branch: main
has_projects: true
cf-k8s-logging-fluent:
default_branch: main
has_projects: true
cf-k8s-networking:
default_branch: develop
description: building a cloud foundry without gorouter....
has_projects: false
has_wiki: false
cf-k8s-networking-scaling:
has_projects: true
cf-k8s-prometheus:
default_branch: main
has_projects: true
cf-k8s-secrets:
default_branch: main
has_projects: true
private: true
cf-lite-ci:
has_projects: true
private: true
cf-mysql-bootstrap:
description: Auto-bootstrap errand for cf-mysql-release
has_projects: true
cf-mysql-ci:
description: Contains Concourse CI scripts and configuration we use to test
cf-mysql-release
has_projects: true
cf-mysql-cluster-health-logger:
has_projects: true
cf-mysql-deployment:
default_branch: develop
has_projects: true
cf-mysql-release:
default_branch: develop
description: Cloud Foundry MySQL Release
has_projects: true
cf-networking-deployments:
archived: true
description: Private manifests and credentials for the Container Networking
team
has_issues: false
has_projects: true
has_wiki: false
private: true
cf-networking-helpers:
allow_merge_commit: false
default_branch: main
description: Shared libraries for the CF Networking team
has_projects: false
has_wiki: false
cf-networking-onboarding:
default_branch: gh-pages
description: Onboarding materials for new contributors in the routing/networking
area of CF
has_projects: true
cf-networking-release:
allow_merge_commit: false
default_branch: develop
description: Container Networking for CloudFoundry
has_projects: true
has_wiki: false
cf-on-k8s-integration:
default_branch: main
has_projects: true
cf-performance-tests:
default_branch: main
has_projects: true
cf-performance-tests-pipeline:
default_branch: main
has_projects: true
cf-relint-ci-semver:
default_branch: main
has_projects: true
cf-routing-test-helpers:
allow_merge_commit: false
default_branch: main
has_projects: true
cf-slackin:
has_projects: true
private: true
cf-smoke-tests:
default_branch: main
description: Smoke tests for CloudFoundry that are safe to run in a production
environment
has_projects: true
cf-smoke-tests-release:
default_branch: main
has_projects: true
cf-tcp-router:
allow_merge_commit: false
default_branch: main
description: TCP Router repository for Cloud Foundry
has_projects: true
cf-test-helpers:
default_branch: main
description: Helpers for running tests against Cloud Foundry
has_projects: true
cf-uaa-lib:
description: Ruby client APIs to access the Cloud Foundry User Account and
Authentication service
has_projects: true
cf-uaac:
has_projects: true
cf-volume-services-acceptance-tests:
has_projects: true
cf-volume-services-team:
has_projects: true
private: true
cfar-logging-acceptance-tests:
archived: true
has_projects: true
cfar-proposals:
archived: true
description: Repository for Cloud Foundry Application Runtime Proposals
has_projects: true
cfbench:
has_issues: false
has_projects: true
cfcd-broker:
default_branch: main
description: This service broker to manage infrastructure as part of the Cloud
Foundry Certified Developer exam.
has_projects: true
private: true
cfcd-cert-items:
has_projects: true
private: true
cfcd-ci:
has_projects: true
private: true
cfcd-course-content:
has_projects: true
private: true
cfcd-dockerfile:
has_projects: true
private: true
cfcd-exam-info:
description: General CFCD-related materials
has_projects: true
private: true
cfcd-facts:
has_projects: true
private: true
cfcd-items:
has_projects: true
private: true
cfcd-mappings:
has_projects: true
private: true
cfcd-mindmaps:
has_projects: true
private: true
cfcd-parser:
has_projects: true
private: true
cfcd-prep:
has_projects: true
cfdot:
allow_merge_commit: false
description: A command-line tool to interact with a Cloud Foundry Diego deployment.
has_issues: false
has_projects: true
cfdreddbot:
archived: true
description: This application has been deprecated. It is no longer in use
has_projects: true
private: true
cff-platform-certification:
description: Cloud Foundry Platform Certification technical requirements.
All changes to the technical requirements document must be approved by the
PMC Council, but may be proposed by any member in good standing of the Cloud
Foundry Foundation.
has_projects: true
private: true
cfhttp:
allow_merge_commit: false
description: Wrapper for official go http package
has_issues: false
has_projects: true
cflinuxfs2:
archived: true
description: The official Cloud Foundry app container rootfs
has_projects: true
cflinuxfs2-release:
archived: true
has_projects: true
cflinuxfs3:
default_branch: main
has_projects: true
cflinuxfs3-release:
default_branch: main
description: Cloud Foundry stack based on Ubuntu 18.04 LTS
has_projects: true
cflinuxfs4:
default_branch: main
has_projects: true
cflinuxfs4-release:
default_branch: main
description: Cloud Foundry stack based on Ubuntu 22.04 LTS
has_projects: true
cli:
allow_merge_commit: false
description: The official command line client for Cloud Foundry
has_projects: true
homepage: https://docs.cloudfoundry.org/cf-cli
cli-ci:
description: The CI repo for the CloudFoundry CLI.
has_projects: true
cli-docs-scripts:
has_projects: true
homepage: http://cli.cloudfoundry.org
cli-i18n:
description: Translations (i18n) for the CF CLI
has_projects: true
homepage: https://code.cloudfoundry.org/cli
cli-plugin-repo:
description: Public repository for community created CF CLI plugins.
has_projects: false
has_wiki: false
homepage: https://plugins.cloudfoundry.org
cli-pools:
description: POOLS!
has_projects: true
private: true
cli-private:
description: ssssssh! it's a secret!
has_projects: true
private: true
cli-workstation:
description: CF CLI Developer workstation setup/maintenance repository
has_projects: true
has_wiki: false
clock:
allow_merge_commit: false
default_branch: main
description: time provider & rich fake for Go
has_issues: false
has_projects: true
cloud-service-broker:
allow_merge_commit: false
allow_rebase_merge: false
default_branch: main
description: OSBAPI service broker that uses Terraform to provision and bind
services. Derived from https://github.com/GoogleCloudPlatform/gcp-service-broker
has_projects: true
has_wiki: false
cloud_controller_ng:
default_branch: main
description: Cloud Foundry Cloud Controller
has_projects: true
cloudfoundry.github.com:
has_projects: true
private: true
cnb-tools:
archived: true
has_projects: true
cnb2cf:
archived: true
has_projects: true
commandrunner:
has_projects: true
community:
default_branch: main
description: Governance and contact information for Cloud Foundry
has_projects: true
has_wiki: false
communitydashboard:
archived: true
has_projects: true
compile-extensions:
archived: true
description: Bash library which provides extra functions and overrides for
Cloud Foundry Buildpack compile scripts.
has_projects: false
has_wiki: false
config-server:
description: Example config server that integrates with BOSH Director
has_projects: false
has_wiki: false
config-server-release:
description: Example BOSH release for config server
has_projects: true
homepage: https://github.com/cloudfoundry/config-server
consuladapter:
allow_merge_commit: false
description: Consul client adapter and test cluster runner
has_issues: false
has_projects: true
core-deps-ci:
default_branch: main
has_projects: false
has_wiki: false
cpu-entitlement-admin-plugin:
has_projects: true
cpu-entitlement-plugin:
has_projects: true
credhub:
allow_merge_commit: false
allow_squash_merge: false
default_branch: main
description: CredHub centralizes and secures credential generation, storage,
lifecycle management, and access
has_projects: true
has_wiki: false
credhub-acceptance-tests:
allow_merge_commit: false
allow_squash_merge: false
default_branch: main
description: This repo provides acceptance tests for CredHub
has_projects: true
has_wiki: false
credhub-api-site:
default_branch: main
description: CredHub API documentation site - credhub-api.cfapps.io
has_projects: false
has_wiki: false
credhub-ci-locks:
has_projects: true
credhub-cli:
default_branch: main
description: CredHub CLI provides a command line interface to interact with
CredHub servers
has_projects: true
credhub-perf-release:
has_projects: true
csb-brokerpak-aws:
allow_merge_commit: false
allow_rebase_merge: false
default_branch: main
has_projects: true
csb-brokerpak-azure:
allow_merge_commit: false
allow_rebase_merge: false
default_branch: main
has_projects: true
csb-brokerpak-gcp:
allow_merge_commit: false
allow_rebase_merge: false
default_branch: main
has_projects: true
dagger:
has_projects: true
debug-cnb:
archived: true
has_projects: true
debugserver:
allow_merge_commit: false
has_issues: false
has_projects: true
delayed_job_sequel:
description: Sequel backend for Delayed Job
has_issues: false
has_projects: true
dependachore:
has_projects: true
deployments-diego:
allow_merge_commit: false
description: Configuration files for deployments owned and managed by the
CF Diego team.
has_projects: true
private: true
deployments-loggregator:
allow_merge_commit: false
archived: true
has_projects: true
private: true
deployments-routing:
archived: true
has_issues: false
has_projects: false
has_wiki: false
private: true
dev-cert:
description: CF Developer Certification Exam - Private to all that have signed
agreement
has_projects: true
private: true
dev-cert-grading:
description: Grading code developed by the Biarca team and to be reviewed
by Item Writers
has_projects: true
private: true
developer-training-class-apps:
description: Public repo making apps that are used for the developer training
course available to students
has_projects: true
developer-training-class-site:
has_projects: true
developer-training-course:
has_projects: true
private: true
developer-training-hugo-parser:
has_projects: true
private: true
diego-acceptance:
allow_merge_commit: false
description: Diego PM acceptance notes and tools
has_projects: true
private: true
diego-checkman:
has_projects: true
private: true
diego-ci:
allow_merge_commit: false
description: Scripts and tools to run Diego's CI builds on Concourse.
has_projects: true
diego-ci-pools:
allow_merge_commit: false
description: Lock pools for Diego CI
has_projects: true
diego-design-notes:
description: Diego Architectural Design Musings and Explications
has_projects: true
diego-dockerfiles:
allow_merge_commit: false
has_issues: false
has_projects: false
has_wiki: false
diego-logging-client:
allow_merge_commit: false
has_issues: false
has_projects: true
diego-notes:
allow_merge_commit: false
description: Diego Notes
has_projects: true
diego-perf-release:
description: Used to deploy multiple app-pushers and fezzik-runners for performance-testing
a Diego(+Runtime) deployment
has_projects: true
diego-release:
allow_merge_commit: false
default_branch: develop
description: BOSH Release for Diego
has_projects: true
diego-ssh:
allow_merge_commit: false
description: Access Diego containers with ssh
has_issues: false
has_projects: true
diego-stress-tests:
description: Diego Stress Tests
has_projects: true
diego-team:
allow_merge_commit: false
description: Checklists for the Diego team
has_projects: true
private: true
diego-upgrade-stability-tests:
allow_merge_commit: false
archived: true
has_issues: false
has_projects: true
diego-windows-release:
has_projects: true
diegocanaryapp:
description: Simple canary app to test long-running Diego deployments
has_projects: true
diff-exporter:
default_branch: develop
has_projects: true
disaster-recovery-acceptance-tests:
default_branch: main
description: Acceptance tests for disaster recovery of Cloud Foundry
has_projects: true
dist-zip-cnb:
archived: true
has_projects: true
docker_driver_integration_tests:
has_projects: true
dockerapplifecycle:
allow_merge_commit: false
description: Code that runs inside of containers, for docker-based apps
has_projects: true
dockerdriver:
allow_merge_commit: false
has_issues: false
has_projects: true
docs-bbr:
has_projects: true
docs-book-cloudfoundry:
description: The bookbinder repository for open source Cloud Foundry documentation
has_projects: true
docs-bosh:
description: The docs repo for BOSH
has_projects: false
has_wiki: false
docs-buildpacks:
has_projects: false
has_wiki: false
homepage: http://docs.cloudfoundry.org/buildpacks/
docs-cf-admin:
description: A place to put documentation about how to operate your Cloud
Foundry deployment using the command line tools bosh and cf