v1beta4
v1beta5
n1name: v1beta4n1name: v1beta5
2served: true2served: true
n3storage: falsen3storage: true
4schema:4schema:
5  openAPIV3Schema:5  openAPIV3Schema:
6    type: object6    type: object
7    properties:7    properties:
8      spec:8      spec:
9        type: object9        type: object
10        properties:10        properties:
11          services:11          services:
12            type: object12            type: object
13            properties:13            properties:
14              primary:14              primary:
15                type: object15                type: object
16                properties:16                properties:
17                  type:17                  type:
18                    type: string18                    type: string
19                  port:19                  port:
20                    type: integer20                    type: integer
21                  dnsName:21                  dnsName:
22                    type: string22                    type: string
23                  labels:23                  labels:
24                    type: object24                    type: object
25                    additionalProperties:25                    additionalProperties:
26                      type: string26                      type: string
27                  annotations:27                  annotations:
28                    type: object28                    type: object
29                    additionalProperties:29                    additionalProperties:
30                      type: string30                      type: string
31          security:31          security:
32            type: object32            type: object
33            properties:33            properties:
34              adminLoginSecret:34              adminLoginSecret:
35                type: string35                type: string
36              serviceCertificateSecret:36              serviceCertificateSecret:
37                description: Name of the Kubernetes secret to generate that hosts37                description: Name of the Kubernetes secret to generate that hosts
38                  the SSL certificate.38                  the SSL certificate.
39                type: string39                type: string
nn40              activeDirectory:
41                type: object
42                properties:
43                  connector:
44                    type: object
45                    properties:
46                      name:
47                        type: string
48                      namespace:
49                        type: string
50                  accountName:
51                    type: string
52                  keytabSecret:
53                    type: string
40          scheduling:54          scheduling:
41            type: object55            type: object
42            properties:56            properties:
43              default:57              default:
44                type: object58                type: object
45                properties:59                properties:
46                  resources:60                  resources:
47                    type: object61                    type: object
48                    properties:62                    properties:
49                      limits:63                      limits:
50                        type: object64                        type: object
51                        additionalProperties:65                        additionalProperties:
52                          type: object66                          type: object
53                      requests:67                      requests:
54                        type: object68                        type: object
55                        additionalProperties:69                        additionalProperties:
56                          type: object70                          type: object
57          storage:71          storage:
58            type: object72            type: object
59            properties:73            properties:
60              data:74              data:
61                type: object75                type: object
62                properties:76                properties:
63                  volumes:77                  volumes:
64                    type: array78                    type: array
65                    items:79                    items:
66                      type: object80                      type: object
67                      properties:81                      properties:
68                        className:82                        className:
69                          type: string83                          type: string
70                        labels:84                        labels:
71                          type: object85                          type: object
72                          additionalProperties:86                          additionalProperties:
73                            type: string87                            type: string
74                        annotations:88                        annotations:
75                          type: object89                          type: object
76                          additionalProperties:90                          additionalProperties:
77                            type: string91                            type: string
78                        accessMode:92                        accessMode:
79                          type: string93                          type: string
80                        size:94                        size:
81                          type: string95                          type: string
82                        claimName:96                        claimName:
83                          type: string97                          type: string
84              logs:98              logs:
85                type: object99                type: object
86                properties:100                properties:
87                  volumes:101                  volumes:
88                    type: array102                    type: array
89                    items:103                    items:
90                      type: object104                      type: object
91                      properties:105                      properties:
92                        className:106                        className:
93                          type: string107                          type: string
94                        labels:108                        labels:
95                          type: object109                          type: object
96                          additionalProperties:110                          additionalProperties:
97                            type: string111                            type: string
98                        annotations:112                        annotations:
99                          type: object113                          type: object
100                          additionalProperties:114                          additionalProperties:
101                            type: string115                            type: string
102                        accessMode:116                        accessMode:
103                          type: string117                          type: string
104                        size:118                        size:
105                          type: string119                          type: string
106                        claimName:120                        claimName:
107                          type: string121                          type: string
108              backups:122              backups:
109                type: object123                type: object
110                properties:124                properties:
111                  volumes:125                  volumes:
112                    type: array126                    type: array
113                    items:127                    items:
114                      type: object128                      type: object
115                      properties:129                      properties:
116                        className:130                        className:
117                          type: string131                          type: string
118                        labels:132                        labels:
119                          type: object133                          type: object
120                          additionalProperties:134                          additionalProperties:
121                            type: string135                            type: string
122                        annotations:136                        annotations:
123                          type: object137                          type: object
124                          additionalProperties:138                          additionalProperties:
125                            type: string139                            type: string
126                        accessMode:140                        accessMode:
127                          type: string141                          type: string
128                        size:142                        size:
129                          type: string143                          type: string
130                        claimName:144                        claimName:
131                          type: string145                          type: string
132          config:146          config:
133            type: object147            type: object
134            properties:148            properties:
nn149              startup:
150                type: object
151                properties:
135              recoverySettings:152                  recoverySettings:
136                type: object153                    type: object
137                properties:154                    properties:
138                  sourceName:155                      sourceName:
139                    description: The name of the Postgres instance to restore from.156                        description: The name of the Postgres instance to restore
157                          from.
140                    type: string158                        type: string
141                  recoveryTargetTime:159                      recoveryTargetTime:
142                    description: The timestamp to which the postgres recovery will160                        description: The timestamp to which the postgres recovery
143                      proceed.161                          will proceed.
144                    type: string162                        type: string
145                    format: date-time163                        format: date-time
146                required:164                    required:
147                - recoveryTargetTime165                    - sourceName
148            required:166              postgreSqlExtensions:
149            - recoverySettings167                description: Configure extensions.
168                type: string
150          dev:169          dev:
151            type: boolean170            type: boolean
152          settings:171          settings:
153            description: Configure postgres.conf.172            description: Configure postgres.conf.
154            x-kubernetes-preserve-unknown-fields: true173            x-kubernetes-preserve-unknown-fields: true
tt174          backup:
175            type: object
176            properties:
177              retentionPeriodInDays:
178                type: integer
155          update:179          update:
156            type: object180            type: object
157            properties:181            properties:
158              desiredVersion:182              desiredVersion:
159                type: string183                type: string
160          parentResource:184          parentResource:
161            type: object185            type: object
162            properties:186            properties:
163              apiGroup:187              apiGroup:
164                type: string188                type: string
165              kind:189              kind:
166                type: string190                type: string
167              name:191              name:
168                type: string192                type: string
169              namespace:193              namespace:
170                type: string194                type: string
171      status:195      status:
172        type: object196        type: object
173        properties:197        properties:
174          primaryEndpoint:198          primaryEndpoint:
175            type: string199            type: string
176          logSearchDashboard:200          logSearchDashboard:
177            type: string201            type: string
178          metricsDashboard:202          metricsDashboard:
179            type: string203            type: string
180          readyPods:204          readyPods:
181            type: string205            type: string
182          observedGeneration:206          observedGeneration:
183            type: integer207            type: integer
184          runningVersion:208          runningVersion:
185            type: string209            type: string
186          registryVersions:210          registryVersions:
187            type: object211            type: object
188            properties:212            properties:
189              next:213              next:
190                type: string214                type: string
191              previous:215              previous:
192                type: string216                type: string
193              current:217              current:
194                type: string218                type: string
195              latest:219              latest:
196                type: string220                type: string
197              behind:221              behind:
198                type: integer222                type: integer
199              available:223              available:
200                type: array224                type: array
201                items:225                items:
202                  type: string226                  type: string
203          releasedVersions:227          releasedVersions:
204            type: object228            type: object
205            properties:229            properties:
206              next:230              next:
207                type: string231                type: string
208              previous:232              previous:
209                type: string233                type: string
210              current:234              current:
211                type: string235                type: string
212              latest:236              latest:
213                type: string237                type: string
214              behind:238              behind:
215                type: integer239                type: integer
216              available:240              available:
217                type: array241                type: array
218                items:242                items:
219                  type: string243                  type: string
220          arcDataServicesK8sExtensionLatestVersion:244          arcDataServicesK8sExtensionLatestVersion:
221            type: string245            type: string
222          endpoints:246          endpoints:
223            type: object247            type: object
224            additionalProperties:248            additionalProperties:
225              type: string249              type: string
226          state:250          state:
227            type: string251            type: string
228          healthState:252          healthState:
229            type: string253            type: string
230          reason:254          reason:
231            type: string255            type: string
232          message:256          message:
233            type: string257            type: string
234          lastUpdateTime:258          lastUpdateTime:
235            type: string259            type: string
236            format: date-time260            format: date-time
237      apiVersion:261      apiVersion:
238        type: string262        type: string
239      kind:263      kind:
240        type: string264        type: string
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op