-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcapm.yaml
More file actions
5331 lines (5315 loc) · 244 KB
/
Copy pathcapm.yaml
File metadata and controls
5331 lines (5315 loc) · 244 KB
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
apiVersion: v1
kind: Namespace
metadata:
labels:
control-plane: controller-manager
name: cluster-api-provider-outscale-system
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
cert-manager.io/inject-ca-from: cluster-api-provider-outscale-system/cluster-api-provider-outscale-serving-cert
controller-gen.kubebuilder.io/version: v0.21.1-0.20260707165829-18b698ec2113
labels:
cluster.x-k8s.io/v1alpha3: v1alpha3
cluster.x-k8s.io/v1beta1: v1beta1
name: oscclusters.infrastructure.cluster.x-k8s.io
spec:
conversion:
strategy: Webhook
webhook:
clientConfig:
service:
name: cluster-api-provider-outscale-webhook-service
namespace: cluster-api-provider-outscale-system
path: /convert
conversionReviewVersions:
- v1
group: infrastructure.cluster.x-k8s.io
names:
categories:
- cluster-api
kind: OscCluster
listKind: OscClusterList
plural: oscclusters
singular: osccluster
scope: Namespaced
versions:
- name: v1beta1
schema:
openAPIV3Schema:
description: OscCluster is the Schema for the oscclusters API
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: OscClusterSpec defines the desired state of OscCluster
properties:
controlPlaneEndpoint:
description: APIEndpoint represents a reachable Kubernetes API endpoint.
properties:
host:
description: host is the hostname on which the API server is serving.
maxLength: 512
type: string
port:
description: port is the port on which the API server is serving.
format: int32
type: integer
required:
- host
- port
type: object
credentials:
properties:
fromFile:
description: Load credentials from this file instead of the env.
type: string
fromSecret:
description: Load credentials from this secret instead of the
env.
type: string
profile:
description: Name of profile stored in file (unused using fromSecret,
"default" by default).
type: string
type: object
network:
properties:
additionalSecurityRules:
description: Additional rules to add to the automatic security
groups
items:
properties:
roles:
description: The roles of automatic securityGroup to add
rules to.
items:
type: string
type: array
rules:
description: The rules to add.
items:
properties:
flow:
description: The flow of the security group (inbound
or outbound)
type: string
fromPortRange:
description: The beginning of the port range
format: int32
type: integer
ipProtocol:
description: The ip protocol name (tcp, udp, icmp
or -1)
type: string
ipRange:
description: The ip range of the security group rule
(deprecated, use ipRanges)
type: string
ipRanges:
description: The list of ip ranges of the security
group rule
items:
type: string
type: array
name:
description: The tag name associate with the security
group
type: string
resourceId:
description: The security group rule id
type: string
toPortRange:
description: The end of the port range
format: int32
type: integer
type: object
type: array
type: object
type: array
allowFromIPRanges:
description: The list of IP ranges (in CIDR notation) to restrict
bastion/Kubernetes API access to.
items:
type: string
type: array
allowToIPRanges:
description: The list of IP ranges (in CIDR notation) the nodes
can talk to ("0.0.0.0/0" if not set).
items:
type: string
type: array
bastion:
description: The bastion configuration
properties:
PublicIpId:
description: The ID of an existing public IP to use for this
VM.
type: string
clusterName:
description: unused
type: string
deviceName:
description: unused
type: string
enable:
type: boolean
imageAccountId:
type: string
imageId:
type: string
imageName:
type: string
keypairName:
type: string
name:
type: string
privateIps:
items:
properties:
name:
type: string
privateIp:
type: string
type: object
type: array
publicIpName:
description: unused
type: string
resourceId:
description: the vm id (deprecated, not set anymore)
type: string
rootDisk:
properties:
rootDiskIops:
description: The root disk iops (io1 volumes only) (1500
by default)
format: int32
type: integer
rootDiskSize:
description: The volume size in gibibytes (GiB) (60 by
default)
format: int32
type: integer
rootDiskType:
description: The volume type (io1, gp2 or standard) (io1
by default)
type: string
type: object
securityGroupNames:
description: The list of security groups (deprecated use bastion
role in security groups)
items:
properties:
name:
type: string
type: object
type: array
subnetName:
description: The subnet of the vm (deprecated use bastion
role in subnets)
type: string
subregionName:
description: unused
type: string
vmType:
description: The type of VM (tinav7.c1r1p2 by default)
type: string
type: object
clusterName:
description: The name of the cluster (unused)
type: string
controlPlaneSubnets:
description: List of subnet to spread controlPlane nodes (deprecated,
add controlplane role to subnets)
items:
type: string
type: array
disable:
description: List of disabled features (internet = no internet
service, no nat services)
items:
enum:
- internet
- loadbalancer
type: string
type: array
extraSecurityGroupRule:
description: (unused)
type: boolean
image:
description: The image configuration (unused)
properties:
accountId:
description: The image account owner ID.
type: string
name:
description: The image name.
type: string
outscaleOpenSource:
description: Use an "Outscale Opensource" image
type: boolean
resourceId:
description: unused
type: string
type: object
internetService:
description: The Internet Service configuration
properties:
clusterName:
description: the name of the cluster (unused)
type: string
name:
description: The name of the Internet service
type: string
resourceId:
description: the Internet Service resource id (unused)
type: string
type: object
loadBalancer:
description: The Load Balancer configuration
properties:
clusterName:
description: unused
type: string
healthCheck:
description: The healthCheck configuration of the Load Balancer
properties:
checkinterval:
description: the time in second between two pings
format: int32
type: integer
healthythreshold:
description: the consecutive number of pings which are
successful to consider the vm healthy
format: int32
type: integer
port:
description: the HealthCheck port number
format: int32
type: integer
protocol:
description: The HealthCheck protocol ('HTTP'|'TCP')
type: string
timeout:
description: the Timeout to consider VM unhealthy
format: int32
type: integer
unhealthythreshold:
description: the consecutive number of pings which are
failed to consider the vm unhealthy
format: int32
type: integer
type: object
listener:
description: The Listener configuration of the loadBalancer
properties:
backendport:
description: The port on which the backend VMs will listen
format: int32
type: integer
backendprotocol:
description: The protocol ('HTTP'|'TCP') to route the
traffic to the backend vm
type: string
loadbalancerport:
description: The port on which the loadbalancer will listen
format: int32
type: integer
loadbalancerprotocol:
description: the routing protocol ('HTTP'|'TCP')
type: string
type: object
loadbalancername:
description: The Load Balancer unique name
type: string
loadbalancertype:
description: The Load Balancer type (internet-facing or internal)
type: string
securitygroupname:
description: The security group name for the load-balancer
(deprecated, add loadbalancer role to a security group)
type: string
subnetname:
description: The subnet name where to add the load balancer
(deprecated, add loadbalancer role to a subnet)
type: string
type: object
natPublicIpPool:
description: The IP Pool storing the Nat Services public IPs
type: string
natService:
description: The Nat Service configuration
properties:
clusterName:
description: The name of the cluster (unused)
type: string
name:
description: The name of the Nat Service
type: string
publicipname:
description: The Public Ip name (unused)
type: string
resourceId:
description: The resource id (unused)
type: string
subnetname:
description: The name of the Subnet to which the Nat Service
will be attached (deprecated, add nat role to subnets)
type: string
subregionName:
description: The name of the Subregion to which the Nat Service
will be attached, unless a subnet has been defined (unused)
type: string
type: object
natServices:
description: The Nat Services configuration
items:
properties:
clusterName:
description: The name of the cluster (unused)
type: string
name:
description: The name of the Nat Service
type: string
publicipname:
description: The Public Ip name (unused)
type: string
resourceId:
description: The resource id (unused)
type: string
subnetname:
description: The name of the Subnet to which the Nat Service
will be attached (deprecated, add nat role to subnets)
type: string
subregionName:
description: The name of the Subregion to which the Nat
Service will be attached, unless a subnet has been defined
(unused)
type: string
type: object
type: array
net:
description: The Net configuration
properties:
clusterName:
description: the name of the cluster (unused)
type: string
ipRange:
description: the ip range in CIDR notation of the Net
type: string
name:
description: the network name
type: string
resourceId:
description: The Id of the Net to reuse (if useExisting.net
is set)
type: string
type: object
netAccessPoints:
description: The NetAccessPoints configuration, required if internet
is disabled.
items:
enum:
- api
- directlink
- eim
- kms
- lbu
- oos
type: string
type: array
netPeering:
description: The NetPeering configuration, required if the load
balancer is internal, and management and workload clusters are
on separate VPCs.
properties:
enable:
description: Create a NetPeering between the management and
workload VPCs.
type: boolean
managementAccountId:
description: The management cluster account ID (optional,
fetched from the metadata server if not set).
type: string
managementCredentials:
description: The credentials of the management cluster account.
Required if management and workload cluster are not in the
same account.
properties:
fromFile:
description: Load credentials from this file instead of
the env.
type: string
fromSecret:
description: Load credentials from this secret instead
of the env.
type: string
profile:
description: Name of profile stored in file (unused using
fromSecret, "default" by default).
type: string
type: object
managementNetId:
description: The management cluster net ID (optional, fetched
from the metadata server if not set).
type: string
managementSubnetId:
description: By default, all subnets of managementNetId are
routed to the netPeering. If set, only the specified subnet
will be routed.
type: string
type: object
publicIps:
description: The Public Ip configuration (unused)
items:
properties:
clusterName:
description: unused
type: string
name:
description: The tag name associate with the Public Ip (unused)
type: string
resourceId:
description: The Public Ip Id response (unused)
type: string
type: object
type: array
reconciliationRules:
description: 'Reconciliation rules (default: {securityGroup, random,
10%}, {*, onChange}). Only the first matching rule applies.'
items:
properties:
appliesTo:
description: The list of items this rule applies to (bastion,
net, netPeering, netPeering/routes, subnet, internetService,
netAccessPoint, natService, routeTable, securityGroup,
loadbalancer, vm or * for all)
items:
enum:
- bastion
- net
- netPeering
- netPeering/routes
- subnet
- internetService
- netAccessPoint
- natService
- routeTable
- securityGroup
- loadbalancer
- vm
- '*'
type: string
type: array
mode:
description: 'The mode of reconciliation: onChange (only
when the spec change, default), always, random (onChange
+ randomPercent% chance)'
enum:
- onChange
- always
- random
type: string
reconciliationChance:
description: The chance (in percent, 1-100) of a reconciliation
happening when no change have been detected (when mode=random)
type: integer
type: object
type: array
routeTables:
description: The Route Table configuration
items:
properties:
name:
description: The tag name associate with the Route Table
type: string
resourceId:
description: The resource id (unused)
type: string
role:
description: The role for this route table
type: string
routes:
description: The Route configuration
items:
properties:
destination:
description: the destination match Ip range with CIDR
notation
type: string
name:
description: The tag name associate with the Route
type: string
resourceId:
description: The Route Id response
type: string
targetName:
description: The tag name associate with the target
resource type
type: string
targetType:
description: The target resource type which can be
Internet Service (gateway) or Nat Service (nat-service)
type: string
type: object
type: array
subnets:
description: The subnet tag name associate with a Subnet
(deprecated, use roles)
items:
type: string
type: array
subregionName:
description: The subregion for this route table
type: string
type: object
type: array
securityGroups:
description: The Security Groups configuration.
items:
properties:
authoritative:
description: Is the Security Group configuration authoritative
? (if yes, all rules not found in configuration will be
deleted).
type: boolean
description:
description: The description of the security group
type: string
name:
description: The name of the security group
type: string
resourceId:
description: When useExisting.securityGroup is set, the
id of an existing securityGroup to use.
type: string
roles:
description: The roles the securityGroup applies to.
items:
type: string
type: array
securityGroupRules:
description: The list of rules for this securityGroup.
items:
properties:
flow:
description: The flow of the security group (inbound
or outbound)
type: string
fromPortRange:
description: The beginning of the port range
format: int32
type: integer
ipProtocol:
description: The ip protocol name (tcp, udp, icmp
or -1)
type: string
ipRange:
description: The ip range of the security group rule
(deprecated, use ipRanges)
type: string
ipRanges:
description: The list of ip ranges of the security
group rule
items:
type: string
type: array
name:
description: The tag name associate with the security
group
type: string
resourceId:
description: The security group rule id
type: string
toPortRange:
description: The end of the port range
format: int32
type: integer
type: object
type: array
tag:
type: string
type: object
type: array
subnets:
description: The Subnets configuration
items:
properties:
ipSubnetRange:
description: the Ip range in CIDR notation of the Subnet
type: string
name:
description: The name of the Subnet
type: string
resourceId:
description: The id of the Subnet to reuse (if useExisting.net
is set)
type: string
roles:
description: The role of the Subnet (controlplane, worker,
loadbalancer, bastion or nat)
items:
type: string
type: array
subregionName:
description: The subregion name of the Subnet
type: string
type: object
type: array
subregionName:
description: The default subregion name (deprecated, use subregions)
type: string
subregions:
description: The list of subregions where to deploy this cluster
items:
type: string
type: array
useExisting:
description: Reuse externally managed resources ?
properties:
net:
description: If set, net, subnets, internet service, nat services
and route tables are externally managed
type: boolean
securityGroups:
description: If set, security groups are externally managed.
type: boolean
type: object
type: object
type: object
status:
description: OscClusterStatus defines the observed state of OscCluster
properties:
conditions:
description: Conditions provide observations of the operational state
of a Cluster API resource.
items:
description: Condition defines an observation of a Cluster API resource
operational state.
properties:
lastTransitionTime:
description: |-
lastTransitionTime is the last time the condition transitioned from one status to another.
This should be when the underlying condition changed. If that is not known, then using the time when
the API field changed is acceptable.
format: date-time
type: string
message:
description: |-
message is a human readable message indicating details about the transition.
This field may be empty.
maxLength: 10240
minLength: 1
type: string
reason:
description: |-
reason is the reason for the condition's last transition in CamelCase.
The specific API may choose whether or not this field is considered a guaranteed API.
This field may be empty.
maxLength: 256
minLength: 1
type: string
severity:
description: |-
severity provides an explicit classification of Reason code, so the users or machines can immediately
understand the current situation and act accordingly.
The Severity field MUST be set only when Status=False.
maxLength: 32
type: string
status:
description: status of the condition, one of True, False, Unknown.
type: string
type:
description: |-
type of condition in CamelCase or in foo.example.com/CamelCase.
Many .condition.type values are consistent across resources like Available, but because arbitrary conditions
can be useful (see .node.status.conditions), the ability to deconflict is important.
maxLength: 256
minLength: 1
type: string
required:
- lastTransitionTime
- status
- type
type: object
type: array
failureDomains:
additionalProperties:
description: |-
FailureDomainSpec is the Schema for Cluster API failure domains.
It allows controllers to understand how many failure domains a cluster can optionally span across.
properties:
attributes:
additionalProperties:
type: string
description: attributes is a free form map of attributes an
infrastructure provider might use or require.
type: object
controlPlane:
description: controlPlane determines if this failure domain
is suitable for use by control plane machines.
type: boolean
type: object
description: FailureDomains is a slice of FailureDomains.
type: object
network:
description: deprecated, replaced by resources
properties:
LoadbalancerRef:
description: Map between LoadbalancerId and LoadbalancerName (not
set anymore)
properties:
resourceMap:
additionalProperties:
type: string
type: object
type: object
bastionref:
description: Map between InstanceId and BastionName (not set
anymore)
properties:
resourceMap:
additionalProperties:
type: string
type: object
type: object
internetserviceref:
description: Map between InternetServiceId and InternetServiceName
(not set anymore)
properties:
resourceMap:
additionalProperties:
type: string
type: object
type: object
linkPublicIpRef:
description: Map between LinkPublicIpId and PublicIpName (not
set anymore)
properties:
resourceMap:
additionalProperties:
type: string
type: object
type: object
linkroutetableref:
additionalProperties:
items:
type: string
type: array
description: Map between LinkRouteTableId and RouteTablesName
(not set anymore)
type: object
natref:
description: Map between NatServiceId and NatServiceName (not
set anymore)
properties:
resourceMap:
additionalProperties:
type: string
type: object
type: object
netref:
description: Map between NetId and NetName (not set anymore)
properties:
resourceMap:
additionalProperties:
type: string
type: object
type: object
publicipref:
description: Map between PublicIpId and PublicIpName (not set
anymore)
properties:
resourceMap:
additionalProperties:
type: string
type: object
type: object
routeref:
description: Map between RouteId and RouteName (not set anymore)
properties:
resourceMap:
additionalProperties:
type: string
type: object
type: object
routetableref:
description: Map between RouteTablesId and RouteTablesName (not
set anymore)
properties:
resourceMap:
additionalProperties:
type: string
type: object
type: object
securitygroupref:
description: Map between SecurityGroupId and SecurityGroupName
(not set anymore)
properties:
resourceMap:
additionalProperties:
type: string
type: object
type: object
securitygroupruleref:
description: Map between SecurityGroupRuleId and SecurityGroupName
(not set anymore)
properties:
resourceMap:
additionalProperties:
type: string
type: object
type: object
subnetref:
description: Map between SubnetId and SubnetName (not set anymore)
properties:
resourceMap:
additionalProperties:
type: string
type: object
type: object
type: object
ready:
type: boolean
reconcilerGeneration:
additionalProperties:
format: int64
type: integer
type: object
resources:
properties:
bastion:
additionalProperties:
type: string
type: object
internetService:
additionalProperties:
type: string
type: object
natService:
additionalProperties:
type: string
type: object
net:
additionalProperties:
type: string
type: object
netAccessPoint:
additionalProperties:
type: string
type: object
netPeering:
additionalProperties:
type: string
type: object
publicIps:
additionalProperties:
type: string
type: object
securityGroup:
additionalProperties:
type: string
type: object
subnet:
additionalProperties:
type: string
type: object
type: object
vmState:
description: VmState The state of the VM (`pending` \| `running` \|
`stopping` \| `stopped` \| `shutting-down` \| `terminated` \| `quarantine`).
type: string
type: object
type: object
served: true
storage: false
subresources:
status: {}
- name: v1beta2
schema:
openAPIV3Schema:
description: OscCluster is the Schema for the oscclusters API
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: OscClusterSpec defines the desired state of OscCluster
properties:
controlPlaneEndpoint:
description: APIEndpoint represents a reachable Kubernetes API endpoint.
properties:
host:
description: host is the hostname on which the API server is serving.
maxLength: 512
type: string
port:
description: port is the port on which the API server is serving.
format: int32
type: integer
required:
- host
- port
type: object
credentials:
properties:
fromFile:
description: Load credentials from this file instead of the env.
type: string
fromSecret:
description: Load credentials from this secret instead of the
env.
type: string
profile:
description: Name of profile stored in file (unused when using
fromSecret, "default" by default).
type: string
type: object
network: