v1
v2
n1name: v1n1name: v2
2served: true2served: true
n3storage: falsen3storage: true
4schema:4schema:
5  openAPIV3Schema:5  openAPIV3Schema:
6    type: object6    type: object
tt7    properties:
8      spec:
9        type: object
10        properties:
11          metrics:
12            type: object
13            properties:
14              database:
15                type: object
16                properties:
17                  influxdb:
18                    type: object
19                    properties:
20                      enable:
21                        type: boolean
22                      scheduling:
23                        type: object
24                        properties:
25                          default:
26                            type: object
27                            properties:
28                              resources:
29                                type: object
30                                properties:
31                                  limits:
32                                    type: object
33                                    additionalProperties:
34                                      type: object
35                                  requests:
36                                    type: object
37                                    additionalProperties:
38                                      type: object
39                      storage:
40                        type: object
41                        properties:
42                          data:
43                            type: object
44                            properties:
45                              volumes:
46                                type: array
47                                items:
48                                  type: object
49                                  properties:
50                                    className:
51                                      type: string
52                                    labels:
53                                      type: object
54                                      additionalProperties:
55                                        type: string
56                                    annotations:
57                                      type: object
58                                      additionalProperties:
59                                        type: string
60                                    accessMode:
61                                      type: string
62                                    size:
63                                      type: string
64                                    claimName:
65                                      type: string
66                          logs:
67                            type: object
68                            properties:
69                              volumes:
70                                type: array
71                                items:
72                                  type: object
73                                  properties:
74                                    className:
75                                      type: string
76                                    labels:
77                                      type: object
78                                      additionalProperties:
79                                        type: string
80                                    annotations:
81                                      type: object
82                                      additionalProperties:
83                                        type: string
84                                    accessMode:
85                                      type: string
86                                    size:
87                                      type: string
88                                    claimName:
89                                      type: string
90                      settings:
91                        x-kubernetes-preserve-unknown-fields: true
92                  elasticsearch:
93                    type: object
94                    properties:
95                      enable:
96                        type: boolean
97                      scheduling:
98                        type: object
99                        properties:
100                          default:
101                            type: object
102                            properties:
103                              resources:
104                                type: object
105                                properties:
106                                  limits:
107                                    type: object
108                                    additionalProperties:
109                                      type: object
110                                  requests:
111                                    type: object
112                                    additionalProperties:
113                                      type: object
114                      storage:
115                        type: object
116                        properties:
117                          data:
118                            type: object
119                            properties:
120                              volumes:
121                                type: array
122                                items:
123                                  type: object
124                                  properties:
125                                    className:
126                                      type: string
127                                    labels:
128                                      type: object
129                                      additionalProperties:
130                                        type: string
131                                    annotations:
132                                      type: object
133                                      additionalProperties:
134                                        type: string
135                                    accessMode:
136                                      type: string
137                                    size:
138                                      type: string
139                                    claimName:
140                                      type: string
141                          logs:
142                            type: object
143                            properties:
144                              volumes:
145                                type: array
146                                items:
147                                  type: object
148                                  properties:
149                                    className:
150                                      type: string
151                                    labels:
152                                      type: object
153                                      additionalProperties:
154                                        type: string
155                                    annotations:
156                                      type: object
157                                      additionalProperties:
158                                        type: string
159                                    accessMode:
160                                      type: string
161                                    size:
162                                      type: string
163                                    claimName:
164                                      type: string
165                      settings:
166                        x-kubernetes-preserve-unknown-fields: true
167              userInterface:
168                type: object
169                properties:
170                  grafana:
171                    type: object
172                    properties:
173                      enable:
174                        type: boolean
175                      services:
176                        type: object
177                        properties:
178                          primary:
179                            type: object
180                            properties:
181                              type:
182                                type: string
183                              port:
184                                type: integer
185                              dnsName:
186                                type: string
187                      scheduling:
188                        type: object
189                        properties:
190                          default:
191                            type: object
192                            properties:
193                              resources:
194                                type: object
195                                properties:
196                                  limits:
197                                    type: object
198                                    additionalProperties:
199                                      type: object
200                                  requests:
201                                    type: object
202                                    additionalProperties:
203                                      type: object
204                      storage:
205                        type: object
206                        properties:
207                          data:
208                            type: object
209                            properties:
210                              volumes:
211                                type: array
212                                items:
213                                  type: object
214                                  properties:
215                                    className:
216                                      type: string
217                                    labels:
218                                      type: object
219                                      additionalProperties:
220                                        type: string
221                                    annotations:
222                                      type: object
223                                      additionalProperties:
224                                        type: string
225                                    accessMode:
226                                      type: string
227                                    size:
228                                      type: string
229                                    claimName:
230                                      type: string
231                          logs:
232                            type: object
233                            properties:
234                              volumes:
235                                type: array
236                                items:
237                                  type: object
238                                  properties:
239                                    className:
240                                      type: string
241                                    labels:
242                                      type: object
243                                      additionalProperties:
244                                        type: string
245                                    annotations:
246                                      type: object
247                                      additionalProperties:
248                                        type: string
249                                    accessMode:
250                                      type: string
251                                    size:
252                                      type: string
253                                    claimName:
254                                      type: string
255                      settings:
256                        x-kubernetes-preserve-unknown-fields: true
257                  kibana:
258                    type: object
259                    properties:
260                      enable:
261                        type: boolean
262                      services:
263                        type: object
264                        properties:
265                          primary:
266                            type: object
267                            properties:
268                              type:
269                                type: string
270                              port:
271                                type: integer
272                              dnsName:
273                                type: string
274                      scheduling:
275                        type: object
276                        properties:
277                          default:
278                            type: object
279                            properties:
280                              resources:
281                                type: object
282                                properties:
283                                  limits:
284                                    type: object
285                                    additionalProperties:
286                                      type: object
287                                  requests:
288                                    type: object
289                                    additionalProperties:
290                                      type: object
291                      storage:
292                        type: object
293                        properties:
294                          data:
295                            type: object
296                            properties:
297                              volumes:
298                                type: array
299                                items:
300                                  type: object
301                                  properties:
302                                    className:
303                                      type: string
304                                    labels:
305                                      type: object
306                                      additionalProperties:
307                                        type: string
308                                    annotations:
309                                      type: object
310                                      additionalProperties:
311                                        type: string
312                                    accessMode:
313                                      type: string
314                                    size:
315                                      type: string
316                                    claimName:
317                                      type: string
318                          logs:
319                            type: object
320                            properties:
321                              volumes:
322                                type: array
323                                items:
324                                  type: object
325                                  properties:
326                                    className:
327                                      type: string
328                                    labels:
329                                      type: object
330                                      additionalProperties:
331                                        type: string
332                                    annotations:
333                                      type: object
334                                      additionalProperties:
335                                        type: string
336                                    accessMode:
337                                      type: string
338                                    size:
339                                      type: string
340                                    claimName:
341                                      type: string
342                      settings:
343                        x-kubernetes-preserve-unknown-fields: true
344              settings:
7    x-kubernetes-preserve-unknown-fields: true345                x-kubernetes-preserve-unknown-fields: true
346          logs:
347            type: object
348            properties:
349              database:
350                type: object
351                properties:
352                  influxdb:
353                    type: object
354                    properties:
355                      enable:
356                        type: boolean
357                      scheduling:
358                        type: object
359                        properties:
360                          default:
361                            type: object
362                            properties:
363                              resources:
364                                type: object
365                                properties:
366                                  limits:
367                                    type: object
368                                    additionalProperties:
369                                      type: object
370                                  requests:
371                                    type: object
372                                    additionalProperties:
373                                      type: object
374                      storage:
375                        type: object
376                        properties:
377                          data:
378                            type: object
379                            properties:
380                              volumes:
381                                type: array
382                                items:
383                                  type: object
384                                  properties:
385                                    className:
386                                      type: string
387                                    labels:
388                                      type: object
389                                      additionalProperties:
390                                        type: string
391                                    annotations:
392                                      type: object
393                                      additionalProperties:
394                                        type: string
395                                    accessMode:
396                                      type: string
397                                    size:
398                                      type: string
399                                    claimName:
400                                      type: string
401                          logs:
402                            type: object
403                            properties:
404                              volumes:
405                                type: array
406                                items:
407                                  type: object
408                                  properties:
409                                    className:
410                                      type: string
411                                    labels:
412                                      type: object
413                                      additionalProperties:
414                                        type: string
415                                    annotations:
416                                      type: object
417                                      additionalProperties:
418                                        type: string
419                                    accessMode:
420                                      type: string
421                                    size:
422                                      type: string
423                                    claimName:
424                                      type: string
425                      settings:
426                        x-kubernetes-preserve-unknown-fields: true
427                  elasticsearch:
428                    type: object
429                    properties:
430                      enable:
431                        type: boolean
432                      scheduling:
433                        type: object
434                        properties:
435                          default:
436                            type: object
437                            properties:
438                              resources:
439                                type: object
440                                properties:
441                                  limits:
442                                    type: object
443                                    additionalProperties:
444                                      type: object
445                                  requests:
446                                    type: object
447                                    additionalProperties:
448                                      type: object
449                      storage:
450                        type: object
451                        properties:
452                          data:
453                            type: object
454                            properties:
455                              volumes:
456                                type: array
457                                items:
458                                  type: object
459                                  properties:
460                                    className:
461                                      type: string
462                                    labels:
463                                      type: object
464                                      additionalProperties:
465                                        type: string
466                                    annotations:
467                                      type: object
468                                      additionalProperties:
469                                        type: string
470                                    accessMode:
471                                      type: string
472                                    size:
473                                      type: string
474                                    claimName:
475                                      type: string
476                          logs:
477                            type: object
478                            properties:
479                              volumes:
480                                type: array
481                                items:
482                                  type: object
483                                  properties:
484                                    className:
485                                      type: string
486                                    labels:
487                                      type: object
488                                      additionalProperties:
489                                        type: string
490                                    annotations:
491                                      type: object
492                                      additionalProperties:
493                                        type: string
494                                    accessMode:
495                                      type: string
496                                    size:
497                                      type: string
498                                    claimName:
499                                      type: string
500                      settings:
501                        x-kubernetes-preserve-unknown-fields: true
502              userInterface:
503                type: object
504                properties:
505                  grafana:
506                    type: object
507                    properties:
508                      enable:
509                        type: boolean
510                      services:
511                        type: object
512                        properties:
513                          primary:
514                            type: object
515                            properties:
516                              type:
517                                type: string
518                              port:
519                                type: integer
520                              dnsName:
521                                type: string
522                      scheduling:
523                        type: object
524                        properties:
525                          default:
526                            type: object
527                            properties:
528                              resources:
529                                type: object
530                                properties:
531                                  limits:
532                                    type: object
533                                    additionalProperties:
534                                      type: object
535                                  requests:
536                                    type: object
537                                    additionalProperties:
538                                      type: object
539                      storage:
540                        type: object
541                        properties:
542                          data:
543                            type: object
544                            properties:
545                              volumes:
546                                type: array
547                                items:
548                                  type: object
549                                  properties:
550                                    className:
551                                      type: string
552                                    labels:
553                                      type: object
554                                      additionalProperties:
555                                        type: string
556                                    annotations:
557                                      type: object
558                                      additionalProperties:
559                                        type: string
560                                    accessMode:
561                                      type: string
562                                    size:
563                                      type: string
564                                    claimName:
565                                      type: string
566                          logs:
567                            type: object
568                            properties:
569                              volumes:
570                                type: array
571                                items:
572                                  type: object
573                                  properties:
574                                    className:
575                                      type: string
576                                    labels:
577                                      type: object
578                                      additionalProperties:
579                                        type: string
580                                    annotations:
581                                      type: object
582                                      additionalProperties:
583                                        type: string
584                                    accessMode:
585                                      type: string
586                                    size:
587                                      type: string
588                                    claimName:
589                                      type: string
590                      settings:
591                        x-kubernetes-preserve-unknown-fields: true
592                  kibana:
593                    type: object
594                    properties:
595                      enable:
596                        type: boolean
597                      services:
598                        type: object
599                        properties:
600                          primary:
601                            type: object
602                            properties:
603                              type:
604                                type: string
605                              port:
606                                type: integer
607                              dnsName:
608                                type: string
609                      scheduling:
610                        type: object
611                        properties:
612                          default:
613                            type: object
614                            properties:
615                              resources:
616                                type: object
617                                properties:
618                                  limits:
619                                    type: object
620                                    additionalProperties:
621                                      type: object
622                                  requests:
623                                    type: object
624                                    additionalProperties:
625                                      type: object
626                      storage:
627                        type: object
628                        properties:
629                          data:
630                            type: object
631                            properties:
632                              volumes:
633                                type: array
634                                items:
635                                  type: object
636                                  properties:
637                                    className:
638                                      type: string
639                                    labels:
640                                      type: object
641                                      additionalProperties:
642                                        type: string
643                                    annotations:
644                                      type: object
645                                      additionalProperties:
646                                        type: string
647                                    accessMode:
648                                      type: string
649                                    size:
650                                      type: string
651                                    claimName:
652                                      type: string
653                          logs:
654                            type: object
655                            properties:
656                              volumes:
657                                type: array
658                                items:
659                                  type: object
660                                  properties:
661                                    className:
662                                      type: string
663                                    labels:
664                                      type: object
665                                      additionalProperties:
666                                        type: string
667                                    annotations:
668                                      type: object
669                                      additionalProperties:
670                                        type: string
671                                    accessMode:
672                                      type: string
673                                    size:
674                                      type: string
675                                    claimName:
676                                      type: string
677                      settings:
678                        x-kubernetes-preserve-unknown-fields: true
679              settings:
680                x-kubernetes-preserve-unknown-fields: true
681          security:
682            type: object
683            properties:
684              kibana:
685                type: object
686                properties:
687                  AdminLoginSecret:
688                    type: string
689                  ServiceCertificateSecret:
690                    type: string
691              grafana:
692                type: object
693                properties:
694                  AdminLoginSecret:
695                    type: string
696                  ServiceCertificateSecret:
697                    type: string
698              allowDumps:
699                type: boolean
700                default: true
701              allowNodeMetricsCollection:
702                type: boolean
703                default: true
704              allowPodMetricsCollection:
705                type: boolean
706                default: true
707      status:
708        type: object
709        properties:
710          metricsDbReadyReplicas:
711            type: string
712          logsDbReadyReplicas:
713            type: string
714          metricsUiReadyReplicas:
715            type: string
716          logsUiReadyReplicas:
717            type: string
718          logSearchDashboard:
719            type: string
720          metricsDashboard:
721            type: string
722          observedGeneration:
723            type: integer
724          runningVersion:
725            type: string
726          registryVersions:
727            type: object
728            properties:
729              next:
730                type: string
731              previous:
732                type: string
733              current:
734                type: string
735              latest:
736                type: string
737              behind:
738                type: integer
739              available:
740                type: array
741                items:
742                  type: string
743          releasedVersions:
744            type: object
745            properties:
746              next:
747                type: string
748              previous:
749                type: string
750              current:
751                type: string
752              latest:
753                type: string
754              behind:
755                type: integer
756              available:
757                type: array
758                items:
759                  type: string
760          arcDataServicesK8sExtensionLatestVersion:
761            type: string
762          endpoints:
763            type: object
764            additionalProperties:
765              type: string
766          state:
767            type: string
768          healthState:
769            type: string
770          reason:
771            type: string
772          message:
773            type: string
774          lastUpdateTime:
775            type: string
776            format: date-time
777      apiVersion:
778        type: string
779      kind:
780        type: string
8subresources:781subresources:
9  status: {}782  status: {}
10additionalPrinterColumns:783additionalPrinterColumns:
11- jsonPath: .status.state784- jsonPath: .status.state
12  name: Status785  name: Status
13  type: string786  type: string
14- jsonPath: .metadata.creationTimestamp787- jsonPath: .metadata.creationTimestamp
15  name: Age788  name: Age
16  type: date789  type: date
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op