-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.yml
1643 lines (1640 loc) · 156 KB
/
manifest.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
addons: []
instance_groups:
- azs:
- Availability Sets
env:
bosh:
password: $6$92fb5ebf8b3fa435$u2GhreiU3MBhvUFU6mV6p2kugzyf9KPgCDo.M7wcVnl/BG50rjvl7aOqRRS4M1XmKPBiA0PGAPaOZw9yhGFPt/
instances: 1
jobs:
- consumes: {}
name: service-adapter
properties:
deployment:
broker_deployment_name: pivotal-container-service-901136d81bbe7a4fff03
director_url: https://10.0.8.11:25555
kubo_odb_ca: ((kubo_odb_ca.certificate))
kubo_odb_ca_2018: ((kubo_odb_ca_2018.certificate))
nsxt:
ncp_upgradable: {}
upgrade_defaults: {}
syslog:
migration:
disabled: true
provides: {}
release: kubo-service-adapter
- consumes:
broker:
from: odb-broker
name: pks-api
properties:
pks:
db_password: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/cf_mysql_pks_db_password.value))
fqdn: api.pks.local.azurestack.external
internal_tls:
certificate: ((pks_api_internal_2018.certificate))
private_key: ((pks_api_internal_2018.private_key))
nsxt:
proxy_enabled: false
password: ((pks_api_basicauth.password))
pks_client_secret: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/pks_api_uaa_client.value))
telemetry:
authenticationMode: oidc
enabled: true
eventEmitterBaseUrl: http://localhost:8888
tls:
certificate: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/pivotal-container-service/pks_tls.cert_pem))
private_key: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/pivotal-container-service/pks_tls.private_key_pem))
uaa_service_admin_client_id: service_admin_client
uaa_service_admin_client_secret: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/pks_services_admin_uaa_client.value))
username: ((pks_api_basicauth.username))
vm-catalog:
- builtin: true
cpu: 1
ephemeral_disk: 51200
name: Standard_DS1_v2
ram: 3584
- builtin: true
cpu: 2
ephemeral_disk: 102400
name: Standard_DS2_v2
ram: 7168
- builtin: true
cpu: 4
ephemeral_disk: 204800
name: Standard_DS3_v2
ram: 14336
- builtin: true
cpu: 8
ephemeral_disk: 409600
name: Standard_DS4_v2
ram: 28672
- builtin: true
cpu: 8
ephemeral_disk: 819200
name: Standard_DS5_v2
ram: 57344
- builtin: true
cpu: 2
ephemeral_disk: 102400
name: Standard_DS11_v2
ram: 14336
- builtin: true
cpu: 4
ephemeral_disk: 204800
name: Standard_DS12_v2
ram: 28672
- builtin: true
cpu: 8
ephemeral_disk: 409600
name: Standard_DS13_v2
ram: 57344
- builtin: true
cpu: 16
ephemeral_disk: 819200
name: Standard_DS14_v2
ram: 114688
- builtin: true
cpu: 1
ephemeral_disk: 16384
name: Standard_F1s
ram: 2048
- builtin: true
cpu: 2
ephemeral_disk: 32768
name: Standard_F2s
ram: 4096
- builtin: true
cpu: 4
ephemeral_disk: 65536
name: Standard_F4s
ram: 8192
- builtin: true
cpu: 8
ephemeral_disk: 131072
name: Standard_F8s
ram: 16384
provides:
pks_api:
as: pks_api_http
pks_api_shared:
as: pks_api_shared_http
shared: true
pks_uaa_service_admin_client:
as: pks_uaa_service_admin_client
shared: true
release: pks-api
- consumes: {}
name: bosh-update-config
properties:
bosh:
authentication:
uaa:
client_id: pivotal-container-service-901136d81bbe7a4fff03
client_secret: ((/opsmgr/director/pivotal-container-service-901136d81bbe7a4fff03/uaa_client_secret.value))
url: https://10.0.8.11:8443
root_ca_cert: |
-----BEGIN CERTIFICATE-----
MIIDUDCCAjigAwIBAgIUKOQUia0SMqmzBRL0wGeRjFa/dDkwDQYJKoZIhvcNAQEL
BQAwHzELMAkGA1UEBhMCVVMxEDAOBgNVBAoMB1Bpdm90YWwwHhcNMTkwOTEzMDkw
NjI4WhcNMjMwOTE0MDkwNjI4WjAfMQswCQYDVQQGEwJVUzEQMA4GA1UECgwHUGl2
b3RhbDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJvahAPCYMXD3yof
j6OgIitpoyPcid8T93KByPFQwQBuAIrjKP3FDIZVS54Hf2s2a/9dTz3tAZmpcus6
EmanTObHEMhyyxaK9XK2NqqRxnGB5BeIUX6YcGs61/3gh64F1z/RV8GY0k1t/7wP
wKm+HMRyH/VSzlTM9hR2WLRbhBTFG6zM9SUKdWx2Axq6sEEB1oFrNQT1KD6nCofP
7qHXkKMyO1QGIMoFumLPqx20kjxmH3HTBH3I/cFxN+84eFTqqQjwOZgp65jAthzN
G5k4lBaUWYvGtXVtk4bsIDbATWGTeJI6VqReMnpf1DnJZ9M5ae58GckcdFKipFbu
/xdrK7sCAwEAAaOBgzCBgDAdBgNVHQ4EFgQUYTtF8nkvbt6YMl1HFBjcrBPEdrYw
HwYDVR0jBBgwFoAUYTtF8nkvbt6YMl1HFBjcrBPEdrYwHQYDVR0lBBYwFAYIKwYB
BQUHAwIGCCsGAQUFBwMBMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEG
MA0GCSqGSIb3DQEBCwUAA4IBAQBxOLM466n4Z01BXEwQg7THN8+RRX6sOVaRmVAe
RgZeyi83iwY0C1wqrzkUgmkXRroOm7pnCgVou5EVE+jMaKrN+dxfP+mZev75NUCa
OwKHJ6dYb7LhMvBBmJ/IwRNUkJsIjSfN0fcUbSjr37mAbv1SKQKmEA34hD4tVXA5
rEkTWAo2/JIC9w1FwbCFegKDfq3+WJhbs/6LMgCumk8fT70JKFAQSjGf0BKI00N6
MCcMao1+vZ3ffuWTQ/IxHPurbMbpuwt1il4laqPkdAAqviZuRZjYdFIuOJ6unC7a
WhtqUbx/B4cWyE5J3+Cuf1Q7CO1SsiNLcoKWKNS0Sl1DvN1T
-----END CERTIFICATE-----
url: https://10.0.8.11:25555
cloud_config:
vm_extensions:
- cloud_properties:
platform_fault_domain_count: 3
name: availability-set
cloud_config_name: pivotal-container-service-901136d81bbe7a4fff03
provides: {}
release: pks-api
- consumes: {}
name: metric-sink-ops-file
properties:
inputs:
node_exporter:
enabled: false
outputs: |+
[[outputs.discard]]
provides: {}
release: bosh-metric-sink
- consumes: {}
name: broker
provides:
broker:
as: odb-broker
release: on-demand-service-broker
- consumes:
broker:
from: odb-broker
name: pks-nsx-t-osb-proxy
properties:
bosh:
authentication:
uaa:
client_id: pivotal-container-service-901136d81bbe7a4fff03
client_secret: ((/opsmgr/director/pivotal-container-service-901136d81bbe7a4fff03/uaa_client_secret.value))
cloud_config_dns: ignored
cloud_config_prefix: service-instance
log_level: INFO
root_ca_cert: |
-----BEGIN CERTIFICATE-----
MIIDUDCCAjigAwIBAgIUKOQUia0SMqmzBRL0wGeRjFa/dDkwDQYJKoZIhvcNAQEL
BQAwHzELMAkGA1UEBhMCVVMxEDAOBgNVBAoMB1Bpdm90YWwwHhcNMTkwOTEzMDkw
NjI4WhcNMjMwOTE0MDkwNjI4WjAfMQswCQYDVQQGEwJVUzEQMA4GA1UECgwHUGl2
b3RhbDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJvahAPCYMXD3yof
j6OgIitpoyPcid8T93KByPFQwQBuAIrjKP3FDIZVS54Hf2s2a/9dTz3tAZmpcus6
EmanTObHEMhyyxaK9XK2NqqRxnGB5BeIUX6YcGs61/3gh64F1z/RV8GY0k1t/7wP
wKm+HMRyH/VSzlTM9hR2WLRbhBTFG6zM9SUKdWx2Axq6sEEB1oFrNQT1KD6nCofP
7qHXkKMyO1QGIMoFumLPqx20kjxmH3HTBH3I/cFxN+84eFTqqQjwOZgp65jAthzN
G5k4lBaUWYvGtXVtk4bsIDbATWGTeJI6VqReMnpf1DnJZ9M5ae58GckcdFKipFbu
/xdrK7sCAwEAAaOBgzCBgDAdBgNVHQ4EFgQUYTtF8nkvbt6YMl1HFBjcrBPEdrYw
HwYDVR0jBBgwFoAUYTtF8nkvbt6YMl1HFBjcrBPEdrYwHQYDVR0lBBYwFAYIKwYB
BQUHAwIGCCsGAQUFBwMBMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEG
MA0GCSqGSIb3DQEBCwUAA4IBAQBxOLM466n4Z01BXEwQg7THN8+RRX6sOVaRmVAe
RgZeyi83iwY0C1wqrzkUgmkXRroOm7pnCgVou5EVE+jMaKrN+dxfP+mZev75NUCa
OwKHJ6dYb7LhMvBBmJ/IwRNUkJsIjSfN0fcUbSjr37mAbv1SKQKmEA34hD4tVXA5
rEkTWAo2/JIC9w1FwbCFegKDfq3+WJhbs/6LMgCumk8fT70JKFAQSjGf0BKI00N6
MCcMao1+vZ3ffuWTQ/IxHPurbMbpuwt1il4laqPkdAAqviZuRZjYdFIuOJ6unC7a
WhtqUbx/B4cWyE5J3+Cuf1Q7CO1SsiNLcoKWKNS0Sl1DvN1T
-----END CERTIFICATE-----
url: https://10.0.8.11:25555
create_network_with_lb: false
enabled: false
fip_address_parameter: nsxt_fip_address
generate_lb_name: true
kubernetes_master_host_parameter: kubernetes_master_host
kubo-odb-ca-removed: true
lb_service_id_parameter: nsxt_lb_service_id
log_level: INFO
maintenance_info:
public:
docker: 18.09.8
kubernetes: 1.14.5
pks: 1.5.0-build.32
stemcell: "315.89"
network_name_parameter: nsxt_network_name
network_profile_name_parameter: network_profile_name
nsxt:
ca_cert: null
floating_ip_pool_ids:
- ignored
host: ignored
insecure: false
ip_block_id: ignored
lb_size_large_supported: true
lb_size_medium_supported: true
log_level: INFO
nat_mode: true
network_prefix: pks
pod_ip_block_id: ignored
superuser_cert: ignored
superuser_key: ignored
t0_router_id: ignored
original_network_profile_content_parameter: original_network_profile_content
password: ((odb_broker_basicauth.password))
plans:
- description: 'Example: This plan will configure a lightweight kubernetes cluster.
Not recommended for production workloads.'
instance_groups:
- azs:
- Availability Sets
instances: 1
name: master
networks:
- pcf-services-subnet
persistent_disk_type: "10240"
vm_extensions: []
vm_type: Standard_F2s
- azs:
- Availability Sets
instances: 3
name: worker
networks:
- pcf-services-subnet
persistent_disk_type: "51200"
vm_extensions: []
vm_type: Standard_F2s
- azs:
- Availability Sets
instances: 1
lifecycle: errand
name: apply-addons
networks:
- pcf-services-subnet
vm_type: Standard_F1s
lifecycle_errands:
post_deploy:
- name: apply-addons
- disabled: true
name: wavefront-proxy-errand
- name: vrops-errand
- name: telemetry-agent
pre_delete:
- name: drain-cluster
metadata:
allow-privileged-containers: true
kubelet_drain_delete_local_data: true
kubelet_drain_force: true
kubelet_drain_force_node: false
kubelet_drain_grace_period: 10
kubelet_drain_ignore_daemonsets: true
kubelet_drain_timeout: 0
master_instances: 1
master_vm_type: Standard_F2s
max_worker_instances: 50
worker_instances: 3
worker_vm_type: Standard_F2s
name: small
plan_id: 8A0E21A8-8072-4D80-B365-D1F502085560
properties:
addons-spec: |+
apiVersion: v1
kind: Namespace
metadata:
name: pks-system
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: observability-manager
namespace: pks-system
labels:
app: observability-manager
spec:
replicas: 1
selector:
matchLabels:
app: observability-manager
template:
metadata:
labels:
app: observability-manager
spec:
serviceAccountName: observability-manager
containers:
- name: observability-manager
image: epks-docker-local.artifactory.eng.vmware.com/oratos/observability-manager:dea87263fc8e6d3a2a122f5f5e31b36afbeef369
imagePullPolicy: Never
env:
- name: DEPLOY_LOGS
value: "true"
- name: DEPLOY_METRICS
value: "true"
- name: DEPLOY_NODE_EXPORTER
value: "false"
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: observability-manager
rules:
- apiGroups:
- "*"
- ""
resources:
- "*"
verbs:
- "*"
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: observability-manager
subjects:
- kind: ServiceAccount
name: observability-manager
namespace: pks-system
roleRef:
kind: ClusterRole
name: observability-manager
apiGroup: rbac.authorization.k8s.io
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: observability-manager
namespace: pks-system
---
apiVersion: policy/v1beta1
kind: PodSecurityPolicy
metadata:
name: observability-manager
spec:
runAsUser:
rule: RunAsAny
seLinux:
rule: RunAsAny
supplementalGroups:
rule: RunAsAny
fsGroup:
rule: RunAsAny
---
allow-privileged-containers: true
enable-windows-workers: null
enabled_admission_plugins:
- pod_security_policy
- deny_escalating_exec
eviction-hard: null
kubelet_drain_delete_local_data: true
kubelet_drain_force: true
kubelet_drain_force_node: false
kubelet_drain_grace_period: 10
kubelet_drain_ignore_daemonsets: true
kubelet_drain_timeout: 0
max_worker_instances: 50
system-reserved: null
- null
- null
- null
- null
- null
- null
- null
- null
- null
port: 3000
proxy: null
target_network_profile_content_parameter: target_network_profile_content
username: ((odb_broker_basicauth.username))
provides: {}
release: pks-nsx-t
- consumes:
mysql:
from: pxc-mysql
name: pxc-mysql
properties:
admin_password: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/cf_mysql_mysql_admin_password.value))
engine_config:
binlog:
enabled: false
galera:
enabled: true
port: 13306
pxc_enabled: true
seeded_databases:
- name: pks
password: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/cf_mysql_pks_db_password.value))
username: pks
- name: uaa
password: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/cf_mysql_uaa_db_password.value))
username: uaa
- name: telemetry
password: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/cf_mysql_telemetry_db_password.value))
username: telemetry
- name: billing
password: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/cf_mysql_billing_db_password.value))
username: billing
tls:
galera: ((galera_server_certificate))
server: ((mysql_server_certificate))
provides:
mysql:
as: pxc-mysql
release: pxc
- consumes: {}
name: bootstrap
provides: {}
release: pxc
- consumes:
mysql:
from: pxc-mysql
name: cluster-health-logger
properties:
db_password: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/cf_mysql_mysql_cluster_health_password.value))
provides: {}
release: pxc
- consumes:
mysql:
from: pxc-mysql
name: galera-agent
properties:
db_password: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/cf_mysql_mysql_galera_healthcheck_db_password.value))
endpoint_password: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/cf_mysql_mysql_galera_healthcheck_endpoint_password.value))
provides: {}
release: pxc
- consumes:
mysql:
from: pxc-mysql
name: gra-log-purger
provides: {}
release: pxc
- consumes: {}
name: uaa
properties:
encryption:
active_key_label: key-1
encryption_keys:
- label: key-1
passphrase: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/uaa_encryption_passphrase.value))
login:
saml:
activeKeyId: active-pks-saml-key
keys:
active-pks-saml-key:
certificate: ((uaa_active_pks_saml_key_2018.certificate))
key: ((uaa_active_pks_saml_key_2018.private_key))
passphrase: ""
providers: null
signRequest: true
signatureAlgorithm: SHA256
wantAssertionSigned: false
release_level_backup: true
uaa:
ca_certs:
- ((pxc_server_ca.certificate))
clients:
admin:
authorities: uaa.admin,clients.read,clients.write,clients.secret,scim.read,scim.write,clients.admin,pks.clusters.admin,pks.clusters.manage
authorized-grant-types: client_credentials
scope: uaa.none
secret: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/pks_uaa_management_admin_client.value))
pks_cli:
access-token-validity: 600
authorities: uaa.resource
authorized-grant-types: password,authorization_code,refresh_token
redirect-uri: https://api.pks.local.azurestack.external:8443,http://localhost:61235/callback
refresh-token-validity: 21600
scope: pks.clusters.admin,pks.clusters.manage
secret: ""
pks_client:
access-token-validity: 86400
authorities: pks.clusters.admin,pks.clusters.manage,uaa.resource
authorized-grant-types: client_credentials
scope: uaa.none
secret: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/pks_api_uaa_client.value))
pks_cluster_client:
access-token-validity: 600
authorities: uaa.resource
authorized-grant-types: password,authorization_code,refresh_token
redirect-uri: https://api.pks.local.azurestack.external:8443,http://localhost:61235/callback
refresh-token-validity: 21600
scope: openid,roles
secret: ""
service_admin_client:
authorities: clients.admin
authorized-grant-types: client_credentials
scope: uaa.none
secret: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/pks_services_admin_uaa_client.value))
jwt:
policy:
active_key_id: key-1
keys:
key-1:
signingKey: ((uaa_jwt_signing_key_1.private_key))
ldap:
emailDomain: []
enabled: false
externalGroupsWhitelist:
- '*'
groups:
groupSearchFilter: member={0}
profile_type: no-groups
searchBase: null
mailAttributeName: mail
referral: follow
searchBase: null
searchFilter: cn={0}
sslCertificate: null
sslCertificateAlias: null
url: null
userDN: null
userPassword: null
localhost_http_port: 35684
logging_level: INFO
scim:
groups:
pks.clusters.admin: Allows a user to admin PKS
pks.clusters.manage: Allows a user to manage PKS clusters
user:
override: true
users:
- groups:
- uaa.admin
- pks.clusters.admin
name: admin
password: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/uaa_admin_password.value))
sslCertificate: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/pivotal-container-service/pks_tls.cert_pem))
sslPrivateKey: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/pivotal-container-service/pks_tls.private_key_pem))
url: https://api.pks.local.azurestack.external:8443
uaadb:
address: 127.0.0.1
databases:
- name: uaa
tag: uaa
db_scheme: mysql
port: 13306
roles:
- name: uaa
password: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/cf_mysql_uaa_db_password.value))
tag: admin
tls: enabled
provides: {}
release: uaa
- consumes: {}
name: bbr-uaadb
provides: {}
release: uaa
- consumes: {}
name: database-backup-restorer
provides: {}
release: backup-and-restore-sdk
- consumes:
pks_api:
from: pks_api_http
name: upgrade-all-service-instances
provides: {}
release: pks-api
- consumes: {}
name: syslog_forwarder
properties:
syslog:
migration:
disabled: true
provides: {}
release: syslog
- consumes: {}
name: sink-resources-images-ops-files
provides: {}
release: sink-resources-release
- consumes:
pks_api:
from: pks_api_http
name: delete-all-clusters
provides: {}
release: pks-api
- consumes: {}
name: pks-nsx-t-precheck
properties:
floating-ip-pool-ids:
- ignored
ip-block-id: ignored
network-automation: ignored
nodes-ip-block-id: ignored
nsx-t-ca-cert: ignored
nsx-t-host: ignored
nsx-t-insecure: ignored
nsx-t-superuser-certificate: ignored
nsx-t-superuser-key: ignored
proxy:
http_proxy:
password: ignored
url: ignored
username: ignored
https_proxy:
password: ignored
url: ignored
username: ignored
no_proxy: ignored
t0-router-id: ignored
vcenter-cluster: ignored
vcenter-datacenter: ignored
vcenter-host: ignored
vcenter-insecure: ignored
vcenter-password: ignored
vcenter-user: ignored
provides: {}
release: pks-nsx-t
- consumes: {}
name: pks-nsx-t-ops-files
properties:
fip_address_parameter: ignored
floating-ip-pool-ids: ignored
kubo-odb-ca-removed: ignored
lb-created-by-proxy: ignored
ncp-ha-heartbeat-period: ignored
ncp-ha-master-timeout: ignored
ncp-ha-update-timeout: ignored
nodes-ip-block-id: ignored
nsx-t-ca-cert: ignored
nsx-t-host: ignored
nsx-t-insecure: ignored
nsx-t-superuser-certificate: ignored
nsx-t-superuser-key: ignored
pod-ip-block-id: ignored
t0-router-id: ignored
provides: {}
release: pks-nsx-t
- consumes: {}
name: pks-vrops-ops-files
properties:
vrops_enabled: "false"
provides: {}
release: pks-vrops
- consumes: {}
name: pks-wavefront-ops-files
properties:
wavefront-api-url: ignored
wavefront-token: ignored
provides: {}
release: wavefront-proxy
- consumes: {}
name: wavefront-alert-creation
properties:
wavefront-alert-targets: ignored
wavefront-api-url: ignored
wavefront-token: ignored
provides: {}
release: wavefront-proxy
- consumes: {}
name: wavefront-alert-deletion
properties:
wavefront-api-url: ignored
wavefront-token: ignored
provides: {}
release: wavefront-proxy
- consumes: {}
name: pks-vrli-ops-files
properties:
fluentd_vrli_ca_cert: ignored
fluentd_vrli_host: ignored
fluentd_vrli_rate_limit_msec: ignored
fluentd_vrli_skip_cert_verify: ignored
fluentd_vrli_use_ssl: ignored
provides: {}
release: pks-vrli
- consumes: {}
name: pks-vrli-control-plane-fluentd
properties:
fluentd_vrli_ca_cert: ignored
fluentd_vrli_host: ignored
fluentd_vrli_rate_limit_msec: ignored
fluentd_vrli_skip_cert_verify: ignored
fluentd_vrli_use_ssl: ignored
provides: {}
release: pks-vrli
- consumes:
mysql:
from: pxc-mysql
name: telemetry-server
properties:
billing:
db-job-name: galera-init
db-name: billing
db-password: ((/opsmgr/pivotal-container-service-901136d81bbe7a4fff03/cf_mysql_billing_db_password.value))
db-port: 13306
db-username: billing
cloud-provider: Azure
customer-number: ""
environment-provider: none
forward:
tls:
certificate: ((telemetry_server_tls_2018.certificate))
private_key: ((telemetry_server_tls_2018.private_key))
hostname: telemetry.pks.internal
installation-purpose: demo_or_poc
networking: flannel
participation-level: none
pks-instance-id: pivotal-container-service-901136d81bbe7a4fff03
product-version: 1.5.0-build.32
telemetry-enabled: false
vac-server-url: https://vcsa.vmware.com/ph
vcenter-server-url: https://
provides:
telemetry-server:
as: telemetry-server
shared: true
release: pks-telemetry
- consumes: {}
name: send-api-started-event
properties:
metrics:
authentication_mode: oidc
c_advisor: disabled
control_plane_ephemeral_disk: 102400
control_plane_instances: 1
control_plane_persistence_disk: 10240
control_plane_ram: 14336
http_proxy: Disabled
ldap_referral_strategy: follow
log_sink_resources_enabled: true
max_worker_vms_in_flight: 1
metric_sink_resources_enabled: true
network: flannel
oidc_groups_claim: roles
oidc_groups_prefix: 'oidc:'
oidc_username_claim: user_name
oidc_username_prefix: 'oidc:'
outbound_internet_access_enabled_for_k8s: false
plans:
- admission_plugins: '"["pod_security_policy", "deny_escalating_exec"]"'
allow_privileged_containers: true
enable_windows_workers: false
errand_vm_type: Standard_F1s
kubelet_drain_delete_local_data: true
kubelet_drain_force: true
kubelet_drain_force_node: false
kubelet_drain_grace_period: 10
kubelet_drain_ignore_daemonsets: true
kubelet_drain_timeout: 0
kubelet_eviction_hard: false
kubelet_system_reserved: false
master_persistent_disk_type: "10240"
master_vm_type: Standard_F2s
max_number_of_worker_instances: 50
name: small
number: 1
number_of_master_instances: 1
number_of_worker_instances: 3
state: Plan Active
worker_persistent_disk_type: "51200"
worker_vm_type: Standard_F2s
- admission_plugins: '""'
allow_privileged_containers: false
enable_windows_workers: false
errand_vm_type: Standard_F1s
kubelet_drain_delete_local_data: true
kubelet_drain_force: true
kubelet_drain_force_node: false
kubelet_drain_grace_period: 10
kubelet_drain_ignore_daemonsets: true
kubelet_drain_timeout: 0
kubelet_eviction_hard: false
kubelet_system_reserved: false
master_persistent_disk_type: "10240"
master_vm_type: Standard_F2s
max_number_of_worker_instances: 50
name: medium
number: 2
number_of_master_instances: 3
number_of_worker_instances: 5
state: Plan Inactive
worker_persistent_disk_type: "51200"
worker_vm_type: Standard_F2s
- admission_plugins: '""'
allow_privileged_containers: false
enable_windows_workers: false
errand_vm_type: Standard_F1s
kubelet_drain_delete_local_data: true
kubelet_drain_force: true
kubelet_drain_force_node: false
kubelet_drain_grace_period: 10
kubelet_drain_ignore_daemonsets: true
kubelet_drain_timeout: 0
kubelet_eviction_hard: false
kubelet_system_reserved: false
master_persistent_disk_type: "10240"
master_vm_type: Standard_F2s
max_number_of_worker_instances: 50
name: large
number: 3
number_of_master_instances: 3
number_of_worker_instances: 5
state: Plan Inactive
worker_persistent_disk_type: "51200"
worker_vm_type: Standard_F2s
- admission_plugins: '""'
allow_privileged_containers: false
enable_windows_workers: false
errand_vm_type: Standard_F1s
kubelet_drain_delete_local_data: true
kubelet_drain_force: true
kubelet_drain_force_node: false
kubelet_drain_grace_period: 10
kubelet_drain_ignore_daemonsets: true
kubelet_drain_timeout: 0
kubelet_eviction_hard: false
kubelet_system_reserved: false
master_persistent_disk_type: "10240"
master_vm_type: Standard_F2s
max_number_of_worker_instances: 50
name: Plan-4
number: 4
number_of_master_instances: 3
number_of_worker_instances: 5
state: Plan Inactive
worker_persistent_disk_type: "51200"
worker_vm_type: Standard_F2s
- admission_plugins: '""'
allow_privileged_containers: false
enable_windows_workers: false
errand_vm_type: Standard_F1s
kubelet_drain_delete_local_data: true
kubelet_drain_force: true
kubelet_drain_force_node: false
kubelet_drain_grace_period: 10
kubelet_drain_ignore_daemonsets: true
kubelet_drain_timeout: 0
kubelet_eviction_hard: false
kubelet_system_reserved: false
master_persistent_disk_type: "10240"
master_vm_type: Standard_F2s
max_number_of_worker_instances: 50
name: Plan-5
number: 5
number_of_master_instances: 3
number_of_worker_instances: 5
state: Plan Inactive
worker_persistent_disk_type: "51200"
worker_vm_type: Standard_F2s
- admission_plugins: '""'
allow_privileged_containers: false
enable_windows_workers: false
errand_vm_type: Standard_F1s
kubelet_drain_delete_local_data: true
kubelet_drain_force: true
kubelet_drain_force_node: false
kubelet_drain_grace_period: 10
kubelet_drain_ignore_daemonsets: true
kubelet_drain_timeout: 0
kubelet_eviction_hard: false
kubelet_system_reserved: false
master_persistent_disk_type: "10240"
master_vm_type: Standard_F2s
max_number_of_worker_instances: 50
name: Plan-6
number: 6
number_of_master_instances: 3
number_of_worker_instances: 5
state: Plan Inactive
worker_persistent_disk_type: "51200"
worker_vm_type: Standard_F2s
- admission_plugins: '""'
allow_privileged_containers: false
enable_windows_workers: false
errand_vm_type: Standard_F1s
kubelet_drain_delete_local_data: true
kubelet_drain_force: true
kubelet_drain_force_node: false
kubelet_drain_grace_period: 10
kubelet_drain_ignore_daemonsets: true
kubelet_drain_timeout: 0
kubelet_eviction_hard: false
kubelet_system_reserved: false
master_persistent_disk_type: "10240"
master_vm_type: Standard_F2s
max_number_of_worker_instances: 50
name: Plan-7
number: 7
number_of_master_instances: 3
number_of_worker_instances: 5
state: Plan Inactive
worker_persistent_disk_type: "51200"
worker_vm_type: Standard_F2s
- admission_plugins: '""'
allow_privileged_containers: false
enable_windows_workers: false
errand_vm_type: Standard_F1s
kubelet_drain_delete_local_data: true
kubelet_drain_force: true
kubelet_drain_force_node: false
kubelet_drain_grace_period: 10
kubelet_drain_ignore_daemonsets: true
kubelet_drain_timeout: 0
kubelet_eviction_hard: false
kubelet_system_reserved: false
master_persistent_disk_type: "10240"
master_vm_type: Standard_F2s
max_number_of_worker_instances: 50
name: Plan-8
number: 8
number_of_master_instances: 3
number_of_worker_instances: 5
state: Plan Inactive
worker_persistent_disk_type: "51200"
worker_vm_type: Standard_F2s
- admission_plugins: '""'
allow_privileged_containers: false
enable_windows_workers: false
errand_vm_type: Standard_F1s
kubelet_drain_delete_local_data: true
kubelet_drain_force: true
kubelet_drain_force_node: false
kubelet_drain_grace_period: 10
kubelet_drain_ignore_daemonsets: true
kubelet_drain_timeout: 0
kubelet_eviction_hard: false
kubelet_system_reserved: false
master_persistent_disk_type: "10240"
master_vm_type: Standard_F2s
max_number_of_worker_instances: 50
name: Plan-9
number: 9
number_of_master_instances: 3
number_of_worker_instances: 5
state: Plan Inactive
worker_persistent_disk_type: "51200"
worker_vm_type: Standard_F2s
- admission_plugins: '""'
allow_privileged_containers: false
enable_windows_workers: false
errand_vm_type: Standard_F1s
kubelet_drain_delete_local_data: true
kubelet_drain_force: true
kubelet_drain_force_node: false
kubelet_drain_grace_period: 10
kubelet_drain_ignore_daemonsets: true
kubelet_drain_timeout: 0
kubelet_eviction_hard: false
kubelet_system_reserved: false
master_persistent_disk_type: "10240"
master_vm_type: Standard_F2s
max_number_of_worker_instances: 50
name: Plan-10
number: 10
number_of_master_instances: 3
number_of_worker_instances: 5
state: Plan Inactive
worker_persistent_disk_type: "51200"
worker_vm_type: Standard_F2s
- admission_plugins: '""'
allow_privileged_containers: false
enable_windows_workers: true
errand_vm_type: Standard_F1s