@kilic.dev/pulumi-k8s-crds 1.4.2 → 1.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types/input.d.ts +535 -194
- package/dist/types/output.d.ts +558 -195
- package/package.json +2 -2
package/dist/types/output.d.ts
CHANGED
|
@@ -91204,6 +91204,32 @@ export declare namespace gateway {
|
|
|
91204
91204
|
* Note that this field cannot be set when spec.os.name is windows.
|
|
91205
91205
|
*/
|
|
91206
91206
|
runAsUser: number;
|
|
91207
|
+
/**
|
|
91208
|
+
* seLinuxChangePolicy defines how the container's SELinux label is applied to all volumes used by the Pod.
|
|
91209
|
+
* It has no effect on nodes that do not support SELinux or to volumes does not support SELinux.
|
|
91210
|
+
* Valid values are "MountOption" and "Recursive".
|
|
91211
|
+
*
|
|
91212
|
+
* "Recursive" means relabeling of all files on all Pod volumes by the container runtime.
|
|
91213
|
+
* This may be slow for large volumes, but allows mixing privileged and unprivileged Pods sharing the same volume on the same node.
|
|
91214
|
+
*
|
|
91215
|
+
* "MountOption" mounts all eligible Pod volumes with `-o context` mount option.
|
|
91216
|
+
* This requires all Pods that share the same volume to use the same SELinux label.
|
|
91217
|
+
* It is not possible to share the same volume among privileged and unprivileged Pods.
|
|
91218
|
+
* Eligible volumes are in-tree FibreChannel and iSCSI volumes, and all CSI volumes
|
|
91219
|
+
* whose CSI driver announces SELinux support by setting spec.seLinuxMount: true in their
|
|
91220
|
+
* CSIDriver instance. Other volumes are always re-labelled recursively.
|
|
91221
|
+
* "MountOption" value is allowed only when SELinuxMount feature gate is enabled.
|
|
91222
|
+
*
|
|
91223
|
+
* If not specified and SELinuxMount feature gate is enabled, "MountOption" is used.
|
|
91224
|
+
* If not specified and SELinuxMount feature gate is disabled, "MountOption" is used for ReadWriteOncePod volumes
|
|
91225
|
+
* and "Recursive" for all other volumes.
|
|
91226
|
+
*
|
|
91227
|
+
* This field affects only Pods that have SELinux label set, either in PodSecurityContext or in SecurityContext of all containers.
|
|
91228
|
+
*
|
|
91229
|
+
* All Pods that use the same volume should use the same seLinuxChangePolicy, otherwise some pods can get stuck in ContainerCreating state.
|
|
91230
|
+
* Note that this field cannot be set when spec.os.name is windows.
|
|
91231
|
+
*/
|
|
91232
|
+
seLinuxChangePolicy: string;
|
|
91207
91233
|
seLinuxOptions: outputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodSecurityContextSeLinuxOptions;
|
|
91208
91234
|
seccompProfile: outputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodSecurityContextSeccompProfile;
|
|
91209
91235
|
/**
|
|
@@ -91584,6 +91610,8 @@ export declare namespace gateway {
|
|
|
91584
91610
|
/**
|
|
91585
91611
|
* awsElasticBlockStore represents an AWS Disk resource that is attached to a
|
|
91586
91612
|
* kubelet's host machine and then exposed to the pod.
|
|
91613
|
+
* Deprecated: AWSElasticBlockStore is deprecated. All operations for the in-tree
|
|
91614
|
+
* awsElasticBlockStore type are redirected to the ebs.csi.aws.com CSI driver.
|
|
91587
91615
|
* More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
|
|
91588
91616
|
*/
|
|
91589
91617
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesAwsElasticBlockStore {
|
|
@@ -91614,6 +91642,8 @@ export declare namespace gateway {
|
|
|
91614
91642
|
}
|
|
91615
91643
|
/**
|
|
91616
91644
|
* azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
|
91645
|
+
* Deprecated: AzureDisk is deprecated. All operations for the in-tree azureDisk type
|
|
91646
|
+
* are redirected to the disk.csi.azure.com CSI driver.
|
|
91617
91647
|
*/
|
|
91618
91648
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesAzureDisk {
|
|
91619
91649
|
/**
|
|
@@ -91646,6 +91676,8 @@ export declare namespace gateway {
|
|
|
91646
91676
|
}
|
|
91647
91677
|
/**
|
|
91648
91678
|
* azureFile represents an Azure File Service mount on the host and bind mount to the pod.
|
|
91679
|
+
* Deprecated: AzureFile is deprecated. All operations for the in-tree azureFile type
|
|
91680
|
+
* are redirected to the file.csi.azure.com CSI driver.
|
|
91649
91681
|
*/
|
|
91650
91682
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesAzureFile {
|
|
91651
91683
|
/**
|
|
@@ -91663,7 +91695,8 @@ export declare namespace gateway {
|
|
|
91663
91695
|
shareName: string;
|
|
91664
91696
|
}
|
|
91665
91697
|
/**
|
|
91666
|
-
* cephFS represents a Ceph FS mount on the host that shares a pod's lifetime
|
|
91698
|
+
* cephFS represents a Ceph FS mount on the host that shares a pod's lifetime.
|
|
91699
|
+
* Deprecated: CephFS is deprecated and the in-tree cephfs type is no longer supported.
|
|
91667
91700
|
*/
|
|
91668
91701
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesCephfs {
|
|
91669
91702
|
/**
|
|
@@ -91709,6 +91742,8 @@ export declare namespace gateway {
|
|
|
91709
91742
|
}
|
|
91710
91743
|
/**
|
|
91711
91744
|
* cinder represents a cinder volume attached and mounted on kubelets host machine.
|
|
91745
|
+
* Deprecated: Cinder is deprecated. All operations for the in-tree cinder type
|
|
91746
|
+
* are redirected to the cinder.csi.openstack.org CSI driver.
|
|
91712
91747
|
* More info: https://examples.k8s.io/mysql-cinder-pd/README.md
|
|
91713
91748
|
*/
|
|
91714
91749
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesCinder {
|
|
@@ -91809,7 +91844,7 @@ export declare namespace gateway {
|
|
|
91809
91844
|
path: string;
|
|
91810
91845
|
}
|
|
91811
91846
|
/**
|
|
91812
|
-
* csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers
|
|
91847
|
+
* csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers.
|
|
91813
91848
|
*/
|
|
91814
91849
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesCsi {
|
|
91815
91850
|
/**
|
|
@@ -92225,6 +92260,7 @@ export declare namespace gateway {
|
|
|
92225
92260
|
/**
|
|
92226
92261
|
* flexVolume represents a generic volume resource that is
|
|
92227
92262
|
* provisioned/attached using an exec based plugin.
|
|
92263
|
+
* Deprecated: FlexVolume is deprecated. Consider using a CSIDriver instead.
|
|
92228
92264
|
*/
|
|
92229
92265
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesFlexVolume {
|
|
92230
92266
|
/**
|
|
@@ -92268,7 +92304,8 @@ export declare namespace gateway {
|
|
|
92268
92304
|
name: string;
|
|
92269
92305
|
}
|
|
92270
92306
|
/**
|
|
92271
|
-
* flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running
|
|
92307
|
+
* flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running.
|
|
92308
|
+
* Deprecated: Flocker is deprecated and the in-tree flocker type is no longer supported.
|
|
92272
92309
|
*/
|
|
92273
92310
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesFlocker {
|
|
92274
92311
|
/**
|
|
@@ -92284,6 +92321,8 @@ export declare namespace gateway {
|
|
|
92284
92321
|
/**
|
|
92285
92322
|
* gcePersistentDisk represents a GCE Disk resource that is attached to a
|
|
92286
92323
|
* kubelet's host machine and then exposed to the pod.
|
|
92324
|
+
* Deprecated: GCEPersistentDisk is deprecated. All operations for the in-tree
|
|
92325
|
+
* gcePersistentDisk type are redirected to the pd.csi.storage.gke.io CSI driver.
|
|
92287
92326
|
* More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
|
|
92288
92327
|
*/
|
|
92289
92328
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesGcePersistentDisk {
|
|
@@ -92316,7 +92355,7 @@ export declare namespace gateway {
|
|
|
92316
92355
|
}
|
|
92317
92356
|
/**
|
|
92318
92357
|
* gitRepo represents a git repository at a particular revision.
|
|
92319
|
-
*
|
|
92358
|
+
* Deprecated: GitRepo is deprecated. To provision a container with a git repo, mount an
|
|
92320
92359
|
* EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir
|
|
92321
92360
|
* into the Pod's container.
|
|
92322
92361
|
*/
|
|
@@ -92339,6 +92378,7 @@ export declare namespace gateway {
|
|
|
92339
92378
|
}
|
|
92340
92379
|
/**
|
|
92341
92380
|
* glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.
|
|
92381
|
+
* Deprecated: Glusterfs is deprecated and the in-tree glusterfs type is no longer supported.
|
|
92342
92382
|
* More info: https://examples.k8s.io/volumes/glusterfs/README.md
|
|
92343
92383
|
*/
|
|
92344
92384
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesGlusterfs {
|
|
@@ -92525,7 +92565,8 @@ export declare namespace gateway {
|
|
|
92525
92565
|
readOnly: boolean;
|
|
92526
92566
|
}
|
|
92527
92567
|
/**
|
|
92528
|
-
* photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
|
92568
|
+
* photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine.
|
|
92569
|
+
* Deprecated: PhotonPersistentDisk is deprecated and the in-tree photonPersistentDisk type is no longer supported.
|
|
92529
92570
|
*/
|
|
92530
92571
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesPhotonPersistentDisk {
|
|
92531
92572
|
/**
|
|
@@ -92540,7 +92581,10 @@ export declare namespace gateway {
|
|
|
92540
92581
|
pdID: string;
|
|
92541
92582
|
}
|
|
92542
92583
|
/**
|
|
92543
|
-
* portworxVolume represents a portworx volume attached and mounted on kubelets host machine
|
|
92584
|
+
* portworxVolume represents a portworx volume attached and mounted on kubelets host machine.
|
|
92585
|
+
* Deprecated: PortworxVolume is deprecated. All operations for the in-tree portworxVolume type
|
|
92586
|
+
* are redirected to the pxd.portworx.com CSI driver when the CSIMigrationPortworx feature-gate
|
|
92587
|
+
* is on.
|
|
92544
92588
|
*/
|
|
92545
92589
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesPortworxVolume {
|
|
92546
92590
|
/**
|
|
@@ -92863,7 +92907,8 @@ export declare namespace gateway {
|
|
|
92863
92907
|
path: string;
|
|
92864
92908
|
}
|
|
92865
92909
|
/**
|
|
92866
|
-
* quobyte represents a Quobyte mount on the host that shares a pod's lifetime
|
|
92910
|
+
* quobyte represents a Quobyte mount on the host that shares a pod's lifetime.
|
|
92911
|
+
* Deprecated: Quobyte is deprecated and the in-tree quobyte type is no longer supported.
|
|
92867
92912
|
*/
|
|
92868
92913
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesQuobyte {
|
|
92869
92914
|
/**
|
|
@@ -92899,6 +92944,7 @@ export declare namespace gateway {
|
|
|
92899
92944
|
}
|
|
92900
92945
|
/**
|
|
92901
92946
|
* rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.
|
|
92947
|
+
* Deprecated: RBD is deprecated and the in-tree rbd type is no longer supported.
|
|
92902
92948
|
* More info: https://examples.k8s.io/volumes/rbd/README.md
|
|
92903
92949
|
*/
|
|
92904
92950
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesRbd {
|
|
@@ -92963,6 +93009,7 @@ export declare namespace gateway {
|
|
|
92963
93009
|
}
|
|
92964
93010
|
/**
|
|
92965
93011
|
* scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
|
|
93012
|
+
* Deprecated: ScaleIO is deprecated and the in-tree scaleIO type is no longer supported.
|
|
92966
93013
|
*/
|
|
92967
93014
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesScaleIO {
|
|
92968
93015
|
/**
|
|
@@ -93085,6 +93132,7 @@ export declare namespace gateway {
|
|
|
93085
93132
|
}
|
|
93086
93133
|
/**
|
|
93087
93134
|
* storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.
|
|
93135
|
+
* Deprecated: StorageOS is deprecated and the in-tree storageos type is no longer supported.
|
|
93088
93136
|
*/
|
|
93089
93137
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesStorageos {
|
|
93090
93138
|
/**
|
|
@@ -93129,7 +93177,9 @@ export declare namespace gateway {
|
|
|
93129
93177
|
name: string;
|
|
93130
93178
|
}
|
|
93131
93179
|
/**
|
|
93132
|
-
* vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
|
|
93180
|
+
* vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine.
|
|
93181
|
+
* Deprecated: VsphereVolume is deprecated. All operations for the in-tree vsphereVolume type
|
|
93182
|
+
* are redirected to the csi.vsphere.vmware.com CSI driver.
|
|
93133
93183
|
*/
|
|
93134
93184
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesVsphereVolume {
|
|
93135
93185
|
/**
|
|
@@ -93976,7 +94026,7 @@ export declare namespace gateway {
|
|
|
93976
94026
|
tcpSocket: outputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePostStartTcpSocket;
|
|
93977
94027
|
}
|
|
93978
94028
|
/**
|
|
93979
|
-
* Exec specifies
|
|
94029
|
+
* Exec specifies a command to execute in the container.
|
|
93980
94030
|
*/
|
|
93981
94031
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePostStartExec {
|
|
93982
94032
|
/**
|
|
@@ -93989,7 +94039,7 @@ export declare namespace gateway {
|
|
|
93989
94039
|
command: string[];
|
|
93990
94040
|
}
|
|
93991
94041
|
/**
|
|
93992
|
-
* HTTPGet specifies
|
|
94042
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
93993
94043
|
*/
|
|
93994
94044
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePostStartHttpGet {
|
|
93995
94045
|
/**
|
|
@@ -94032,7 +94082,7 @@ export declare namespace gateway {
|
|
|
94032
94082
|
value: string;
|
|
94033
94083
|
}
|
|
94034
94084
|
/**
|
|
94035
|
-
* Sleep represents
|
|
94085
|
+
* Sleep represents a duration that the container should sleep.
|
|
94036
94086
|
*/
|
|
94037
94087
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePostStartSleep {
|
|
94038
94088
|
/**
|
|
@@ -94042,8 +94092,8 @@ export declare namespace gateway {
|
|
|
94042
94092
|
}
|
|
94043
94093
|
/**
|
|
94044
94094
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
94045
|
-
* for
|
|
94046
|
-
* lifecycle hooks will fail
|
|
94095
|
+
* for backward compatibility. There is no validation of this field and
|
|
94096
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
94047
94097
|
*/
|
|
94048
94098
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePostStartTcpSocket {
|
|
94049
94099
|
/**
|
|
@@ -94075,7 +94125,7 @@ export declare namespace gateway {
|
|
|
94075
94125
|
tcpSocket: outputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePreStopTcpSocket;
|
|
94076
94126
|
}
|
|
94077
94127
|
/**
|
|
94078
|
-
* Exec specifies
|
|
94128
|
+
* Exec specifies a command to execute in the container.
|
|
94079
94129
|
*/
|
|
94080
94130
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePreStopExec {
|
|
94081
94131
|
/**
|
|
@@ -94088,7 +94138,7 @@ export declare namespace gateway {
|
|
|
94088
94138
|
command: string[];
|
|
94089
94139
|
}
|
|
94090
94140
|
/**
|
|
94091
|
-
* HTTPGet specifies
|
|
94141
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
94092
94142
|
*/
|
|
94093
94143
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePreStopHttpGet {
|
|
94094
94144
|
/**
|
|
@@ -94131,7 +94181,7 @@ export declare namespace gateway {
|
|
|
94131
94181
|
value: string;
|
|
94132
94182
|
}
|
|
94133
94183
|
/**
|
|
94134
|
-
* Sleep represents
|
|
94184
|
+
* Sleep represents a duration that the container should sleep.
|
|
94135
94185
|
*/
|
|
94136
94186
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePreStopSleep {
|
|
94137
94187
|
/**
|
|
@@ -94141,8 +94191,8 @@ export declare namespace gateway {
|
|
|
94141
94191
|
}
|
|
94142
94192
|
/**
|
|
94143
94193
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
94144
|
-
* for
|
|
94145
|
-
* lifecycle hooks will fail
|
|
94194
|
+
* for backward compatibility. There is no validation of this field and
|
|
94195
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
94146
94196
|
*/
|
|
94147
94197
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePreStopTcpSocket {
|
|
94148
94198
|
/**
|
|
@@ -94208,7 +94258,7 @@ export declare namespace gateway {
|
|
|
94208
94258
|
timeoutSeconds: number;
|
|
94209
94259
|
}
|
|
94210
94260
|
/**
|
|
94211
|
-
* Exec specifies
|
|
94261
|
+
* Exec specifies a command to execute in the container.
|
|
94212
94262
|
*/
|
|
94213
94263
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLivenessProbeExec {
|
|
94214
94264
|
/**
|
|
@@ -94221,7 +94271,7 @@ export declare namespace gateway {
|
|
|
94221
94271
|
command: string[];
|
|
94222
94272
|
}
|
|
94223
94273
|
/**
|
|
94224
|
-
* GRPC specifies
|
|
94274
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
94225
94275
|
*/
|
|
94226
94276
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLivenessProbeGrpc {
|
|
94227
94277
|
/**
|
|
@@ -94237,7 +94287,7 @@ export declare namespace gateway {
|
|
|
94237
94287
|
service: string;
|
|
94238
94288
|
}
|
|
94239
94289
|
/**
|
|
94240
|
-
* HTTPGet specifies
|
|
94290
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
94241
94291
|
*/
|
|
94242
94292
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLivenessProbeHttpGet {
|
|
94243
94293
|
/**
|
|
@@ -94280,7 +94330,7 @@ export declare namespace gateway {
|
|
|
94280
94330
|
value: string;
|
|
94281
94331
|
}
|
|
94282
94332
|
/**
|
|
94283
|
-
* TCPSocket specifies
|
|
94333
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
94284
94334
|
*/
|
|
94285
94335
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLivenessProbeTcpSocket {
|
|
94286
94336
|
/**
|
|
@@ -94378,7 +94428,7 @@ export declare namespace gateway {
|
|
|
94378
94428
|
timeoutSeconds: number;
|
|
94379
94429
|
}
|
|
94380
94430
|
/**
|
|
94381
|
-
* Exec specifies
|
|
94431
|
+
* Exec specifies a command to execute in the container.
|
|
94382
94432
|
*/
|
|
94383
94433
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersReadinessProbeExec {
|
|
94384
94434
|
/**
|
|
@@ -94391,7 +94441,7 @@ export declare namespace gateway {
|
|
|
94391
94441
|
command: string[];
|
|
94392
94442
|
}
|
|
94393
94443
|
/**
|
|
94394
|
-
* GRPC specifies
|
|
94444
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
94395
94445
|
*/
|
|
94396
94446
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersReadinessProbeGrpc {
|
|
94397
94447
|
/**
|
|
@@ -94407,7 +94457,7 @@ export declare namespace gateway {
|
|
|
94407
94457
|
service: string;
|
|
94408
94458
|
}
|
|
94409
94459
|
/**
|
|
94410
|
-
* HTTPGet specifies
|
|
94460
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
94411
94461
|
*/
|
|
94412
94462
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersReadinessProbeHttpGet {
|
|
94413
94463
|
/**
|
|
@@ -94450,7 +94500,7 @@ export declare namespace gateway {
|
|
|
94450
94500
|
value: string;
|
|
94451
94501
|
}
|
|
94452
94502
|
/**
|
|
94453
|
-
* TCPSocket specifies
|
|
94503
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
94454
94504
|
*/
|
|
94455
94505
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersReadinessProbeTcpSocket {
|
|
94456
94506
|
/**
|
|
@@ -94770,7 +94820,7 @@ export declare namespace gateway {
|
|
|
94770
94820
|
timeoutSeconds: number;
|
|
94771
94821
|
}
|
|
94772
94822
|
/**
|
|
94773
|
-
* Exec specifies
|
|
94823
|
+
* Exec specifies a command to execute in the container.
|
|
94774
94824
|
*/
|
|
94775
94825
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersStartupProbeExec {
|
|
94776
94826
|
/**
|
|
@@ -94783,7 +94833,7 @@ export declare namespace gateway {
|
|
|
94783
94833
|
command: string[];
|
|
94784
94834
|
}
|
|
94785
94835
|
/**
|
|
94786
|
-
* GRPC specifies
|
|
94836
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
94787
94837
|
*/
|
|
94788
94838
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersStartupProbeGrpc {
|
|
94789
94839
|
/**
|
|
@@ -94799,7 +94849,7 @@ export declare namespace gateway {
|
|
|
94799
94849
|
service: string;
|
|
94800
94850
|
}
|
|
94801
94851
|
/**
|
|
94802
|
-
* HTTPGet specifies
|
|
94852
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
94803
94853
|
*/
|
|
94804
94854
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersStartupProbeHttpGet {
|
|
94805
94855
|
/**
|
|
@@ -94842,7 +94892,7 @@ export declare namespace gateway {
|
|
|
94842
94892
|
value: string;
|
|
94843
94893
|
}
|
|
94844
94894
|
/**
|
|
94845
|
-
* TCPSocket specifies
|
|
94895
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
94846
94896
|
*/
|
|
94847
94897
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersStartupProbeTcpSocket {
|
|
94848
94898
|
/**
|
|
@@ -95838,6 +95888,32 @@ export declare namespace gateway {
|
|
|
95838
95888
|
* Note that this field cannot be set when spec.os.name is windows.
|
|
95839
95889
|
*/
|
|
95840
95890
|
runAsUser: number;
|
|
95891
|
+
/**
|
|
95892
|
+
* seLinuxChangePolicy defines how the container's SELinux label is applied to all volumes used by the Pod.
|
|
95893
|
+
* It has no effect on nodes that do not support SELinux or to volumes does not support SELinux.
|
|
95894
|
+
* Valid values are "MountOption" and "Recursive".
|
|
95895
|
+
*
|
|
95896
|
+
* "Recursive" means relabeling of all files on all Pod volumes by the container runtime.
|
|
95897
|
+
* This may be slow for large volumes, but allows mixing privileged and unprivileged Pods sharing the same volume on the same node.
|
|
95898
|
+
*
|
|
95899
|
+
* "MountOption" mounts all eligible Pod volumes with `-o context` mount option.
|
|
95900
|
+
* This requires all Pods that share the same volume to use the same SELinux label.
|
|
95901
|
+
* It is not possible to share the same volume among privileged and unprivileged Pods.
|
|
95902
|
+
* Eligible volumes are in-tree FibreChannel and iSCSI volumes, and all CSI volumes
|
|
95903
|
+
* whose CSI driver announces SELinux support by setting spec.seLinuxMount: true in their
|
|
95904
|
+
* CSIDriver instance. Other volumes are always re-labelled recursively.
|
|
95905
|
+
* "MountOption" value is allowed only when SELinuxMount feature gate is enabled.
|
|
95906
|
+
*
|
|
95907
|
+
* If not specified and SELinuxMount feature gate is enabled, "MountOption" is used.
|
|
95908
|
+
* If not specified and SELinuxMount feature gate is disabled, "MountOption" is used for ReadWriteOncePod volumes
|
|
95909
|
+
* and "Recursive" for all other volumes.
|
|
95910
|
+
*
|
|
95911
|
+
* This field affects only Pods that have SELinux label set, either in PodSecurityContext or in SecurityContext of all containers.
|
|
95912
|
+
*
|
|
95913
|
+
* All Pods that use the same volume should use the same seLinuxChangePolicy, otherwise some pods can get stuck in ContainerCreating state.
|
|
95914
|
+
* Note that this field cannot be set when spec.os.name is windows.
|
|
95915
|
+
*/
|
|
95916
|
+
seLinuxChangePolicy: string;
|
|
95841
95917
|
seLinuxOptions: outputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodSecurityContextSeLinuxOptions;
|
|
95842
95918
|
seccompProfile: outputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodSecurityContextSeccompProfile;
|
|
95843
95919
|
/**
|
|
@@ -96218,6 +96294,8 @@ export declare namespace gateway {
|
|
|
96218
96294
|
/**
|
|
96219
96295
|
* awsElasticBlockStore represents an AWS Disk resource that is attached to a
|
|
96220
96296
|
* kubelet's host machine and then exposed to the pod.
|
|
96297
|
+
* Deprecated: AWSElasticBlockStore is deprecated. All operations for the in-tree
|
|
96298
|
+
* awsElasticBlockStore type are redirected to the ebs.csi.aws.com CSI driver.
|
|
96221
96299
|
* More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
|
|
96222
96300
|
*/
|
|
96223
96301
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesAwsElasticBlockStore {
|
|
@@ -96248,6 +96326,8 @@ export declare namespace gateway {
|
|
|
96248
96326
|
}
|
|
96249
96327
|
/**
|
|
96250
96328
|
* azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
|
96329
|
+
* Deprecated: AzureDisk is deprecated. All operations for the in-tree azureDisk type
|
|
96330
|
+
* are redirected to the disk.csi.azure.com CSI driver.
|
|
96251
96331
|
*/
|
|
96252
96332
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesAzureDisk {
|
|
96253
96333
|
/**
|
|
@@ -96280,6 +96360,8 @@ export declare namespace gateway {
|
|
|
96280
96360
|
}
|
|
96281
96361
|
/**
|
|
96282
96362
|
* azureFile represents an Azure File Service mount on the host and bind mount to the pod.
|
|
96363
|
+
* Deprecated: AzureFile is deprecated. All operations for the in-tree azureFile type
|
|
96364
|
+
* are redirected to the file.csi.azure.com CSI driver.
|
|
96283
96365
|
*/
|
|
96284
96366
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesAzureFile {
|
|
96285
96367
|
/**
|
|
@@ -96297,7 +96379,8 @@ export declare namespace gateway {
|
|
|
96297
96379
|
shareName: string;
|
|
96298
96380
|
}
|
|
96299
96381
|
/**
|
|
96300
|
-
* cephFS represents a Ceph FS mount on the host that shares a pod's lifetime
|
|
96382
|
+
* cephFS represents a Ceph FS mount on the host that shares a pod's lifetime.
|
|
96383
|
+
* Deprecated: CephFS is deprecated and the in-tree cephfs type is no longer supported.
|
|
96301
96384
|
*/
|
|
96302
96385
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesCephfs {
|
|
96303
96386
|
/**
|
|
@@ -96343,6 +96426,8 @@ export declare namespace gateway {
|
|
|
96343
96426
|
}
|
|
96344
96427
|
/**
|
|
96345
96428
|
* cinder represents a cinder volume attached and mounted on kubelets host machine.
|
|
96429
|
+
* Deprecated: Cinder is deprecated. All operations for the in-tree cinder type
|
|
96430
|
+
* are redirected to the cinder.csi.openstack.org CSI driver.
|
|
96346
96431
|
* More info: https://examples.k8s.io/mysql-cinder-pd/README.md
|
|
96347
96432
|
*/
|
|
96348
96433
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesCinder {
|
|
@@ -96443,7 +96528,7 @@ export declare namespace gateway {
|
|
|
96443
96528
|
path: string;
|
|
96444
96529
|
}
|
|
96445
96530
|
/**
|
|
96446
|
-
* csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers
|
|
96531
|
+
* csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers.
|
|
96447
96532
|
*/
|
|
96448
96533
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesCsi {
|
|
96449
96534
|
/**
|
|
@@ -96859,6 +96944,7 @@ export declare namespace gateway {
|
|
|
96859
96944
|
/**
|
|
96860
96945
|
* flexVolume represents a generic volume resource that is
|
|
96861
96946
|
* provisioned/attached using an exec based plugin.
|
|
96947
|
+
* Deprecated: FlexVolume is deprecated. Consider using a CSIDriver instead.
|
|
96862
96948
|
*/
|
|
96863
96949
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesFlexVolume {
|
|
96864
96950
|
/**
|
|
@@ -96902,7 +96988,8 @@ export declare namespace gateway {
|
|
|
96902
96988
|
name: string;
|
|
96903
96989
|
}
|
|
96904
96990
|
/**
|
|
96905
|
-
* flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running
|
|
96991
|
+
* flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running.
|
|
96992
|
+
* Deprecated: Flocker is deprecated and the in-tree flocker type is no longer supported.
|
|
96906
96993
|
*/
|
|
96907
96994
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesFlocker {
|
|
96908
96995
|
/**
|
|
@@ -96918,6 +97005,8 @@ export declare namespace gateway {
|
|
|
96918
97005
|
/**
|
|
96919
97006
|
* gcePersistentDisk represents a GCE Disk resource that is attached to a
|
|
96920
97007
|
* kubelet's host machine and then exposed to the pod.
|
|
97008
|
+
* Deprecated: GCEPersistentDisk is deprecated. All operations for the in-tree
|
|
97009
|
+
* gcePersistentDisk type are redirected to the pd.csi.storage.gke.io CSI driver.
|
|
96921
97010
|
* More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
|
|
96922
97011
|
*/
|
|
96923
97012
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesGcePersistentDisk {
|
|
@@ -96950,7 +97039,7 @@ export declare namespace gateway {
|
|
|
96950
97039
|
}
|
|
96951
97040
|
/**
|
|
96952
97041
|
* gitRepo represents a git repository at a particular revision.
|
|
96953
|
-
*
|
|
97042
|
+
* Deprecated: GitRepo is deprecated. To provision a container with a git repo, mount an
|
|
96954
97043
|
* EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir
|
|
96955
97044
|
* into the Pod's container.
|
|
96956
97045
|
*/
|
|
@@ -96973,6 +97062,7 @@ export declare namespace gateway {
|
|
|
96973
97062
|
}
|
|
96974
97063
|
/**
|
|
96975
97064
|
* glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.
|
|
97065
|
+
* Deprecated: Glusterfs is deprecated and the in-tree glusterfs type is no longer supported.
|
|
96976
97066
|
* More info: https://examples.k8s.io/volumes/glusterfs/README.md
|
|
96977
97067
|
*/
|
|
96978
97068
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesGlusterfs {
|
|
@@ -97159,7 +97249,8 @@ export declare namespace gateway {
|
|
|
97159
97249
|
readOnly: boolean;
|
|
97160
97250
|
}
|
|
97161
97251
|
/**
|
|
97162
|
-
* photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
|
97252
|
+
* photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine.
|
|
97253
|
+
* Deprecated: PhotonPersistentDisk is deprecated and the in-tree photonPersistentDisk type is no longer supported.
|
|
97163
97254
|
*/
|
|
97164
97255
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesPhotonPersistentDisk {
|
|
97165
97256
|
/**
|
|
@@ -97174,7 +97265,10 @@ export declare namespace gateway {
|
|
|
97174
97265
|
pdID: string;
|
|
97175
97266
|
}
|
|
97176
97267
|
/**
|
|
97177
|
-
* portworxVolume represents a portworx volume attached and mounted on kubelets host machine
|
|
97268
|
+
* portworxVolume represents a portworx volume attached and mounted on kubelets host machine.
|
|
97269
|
+
* Deprecated: PortworxVolume is deprecated. All operations for the in-tree portworxVolume type
|
|
97270
|
+
* are redirected to the pxd.portworx.com CSI driver when the CSIMigrationPortworx feature-gate
|
|
97271
|
+
* is on.
|
|
97178
97272
|
*/
|
|
97179
97273
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesPortworxVolume {
|
|
97180
97274
|
/**
|
|
@@ -97497,7 +97591,8 @@ export declare namespace gateway {
|
|
|
97497
97591
|
path: string;
|
|
97498
97592
|
}
|
|
97499
97593
|
/**
|
|
97500
|
-
* quobyte represents a Quobyte mount on the host that shares a pod's lifetime
|
|
97594
|
+
* quobyte represents a Quobyte mount on the host that shares a pod's lifetime.
|
|
97595
|
+
* Deprecated: Quobyte is deprecated and the in-tree quobyte type is no longer supported.
|
|
97501
97596
|
*/
|
|
97502
97597
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesQuobyte {
|
|
97503
97598
|
/**
|
|
@@ -97533,6 +97628,7 @@ export declare namespace gateway {
|
|
|
97533
97628
|
}
|
|
97534
97629
|
/**
|
|
97535
97630
|
* rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.
|
|
97631
|
+
* Deprecated: RBD is deprecated and the in-tree rbd type is no longer supported.
|
|
97536
97632
|
* More info: https://examples.k8s.io/volumes/rbd/README.md
|
|
97537
97633
|
*/
|
|
97538
97634
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesRbd {
|
|
@@ -97597,6 +97693,7 @@ export declare namespace gateway {
|
|
|
97597
97693
|
}
|
|
97598
97694
|
/**
|
|
97599
97695
|
* scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
|
|
97696
|
+
* Deprecated: ScaleIO is deprecated and the in-tree scaleIO type is no longer supported.
|
|
97600
97697
|
*/
|
|
97601
97698
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesScaleIO {
|
|
97602
97699
|
/**
|
|
@@ -97719,6 +97816,7 @@ export declare namespace gateway {
|
|
|
97719
97816
|
}
|
|
97720
97817
|
/**
|
|
97721
97818
|
* storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.
|
|
97819
|
+
* Deprecated: StorageOS is deprecated and the in-tree storageos type is no longer supported.
|
|
97722
97820
|
*/
|
|
97723
97821
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesStorageos {
|
|
97724
97822
|
/**
|
|
@@ -97763,7 +97861,9 @@ export declare namespace gateway {
|
|
|
97763
97861
|
name: string;
|
|
97764
97862
|
}
|
|
97765
97863
|
/**
|
|
97766
|
-
* vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
|
|
97864
|
+
* vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine.
|
|
97865
|
+
* Deprecated: VsphereVolume is deprecated. All operations for the in-tree vsphereVolume type
|
|
97866
|
+
* are redirected to the csi.vsphere.vmware.com CSI driver.
|
|
97767
97867
|
*/
|
|
97768
97868
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesVsphereVolume {
|
|
97769
97869
|
/**
|
|
@@ -97969,8 +98069,6 @@ export declare namespace gateway {
|
|
|
97969
98069
|
/**
|
|
97970
98070
|
* type is the type of metric source. It should be one of "ContainerResource", "External",
|
|
97971
98071
|
* "Object", "Pods" or "Resource", each mapping to a matching field in the object.
|
|
97972
|
-
* Note: "ContainerResource" type is available on when the feature-gate
|
|
97973
|
-
* HPAContainerMetrics is enabled
|
|
97974
98072
|
*/
|
|
97975
98073
|
type: string;
|
|
97976
98074
|
}
|
|
@@ -97980,7 +98078,6 @@ export declare namespace gateway {
|
|
|
97980
98078
|
* each pod of the current scale target (e.g. CPU or memory). Such metrics are
|
|
97981
98079
|
* built in to Kubernetes, and have special scaling options on top of those
|
|
97982
98080
|
* available to normal per-pod metrics using the "pods" source.
|
|
97983
|
-
* This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag.
|
|
97984
98081
|
*/
|
|
97985
98082
|
interface EnvoyProxySpecProviderKubernetesEnvoyHpaMetricsContainerResource {
|
|
97986
98083
|
/**
|
|
@@ -132208,7 +132305,7 @@ export declare namespace postgresql {
|
|
|
132208
132305
|
* not set, the implementation will apply its default routing strategy. If set
|
|
132209
132306
|
* to "PreferClose", implementations should prioritize endpoints that are
|
|
132210
132307
|
* topologically close (e.g., same zone).
|
|
132211
|
-
* This is
|
|
132308
|
+
* This is a beta field and requires enabling ServiceTrafficDistribution feature.
|
|
132212
132309
|
*/
|
|
132213
132310
|
trafficDistribution: string;
|
|
132214
132311
|
/**
|
|
@@ -132446,7 +132543,7 @@ export declare namespace postgresql {
|
|
|
132446
132543
|
* not set, the implementation will apply its default routing strategy. If set
|
|
132447
132544
|
* to "PreferClose", implementations should prioritize endpoints that are
|
|
132448
132545
|
* topologically close (e.g., same zone).
|
|
132449
|
-
* This is
|
|
132546
|
+
* This is a beta field and requires enabling ServiceTrafficDistribution feature.
|
|
132450
132547
|
*/
|
|
132451
132548
|
trafficDistribution: string;
|
|
132452
132549
|
/**
|
|
@@ -138349,7 +138446,7 @@ export declare namespace postgresql {
|
|
|
138349
138446
|
* not set, the implementation will apply its default routing strategy. If set
|
|
138350
138447
|
* to "PreferClose", implementations should prioritize endpoints that are
|
|
138351
138448
|
* topologically close (e.g., same zone).
|
|
138352
|
-
* This is
|
|
138449
|
+
* This is a beta field and requires enabling ServiceTrafficDistribution feature.
|
|
138353
138450
|
*/
|
|
138354
138451
|
trafficDistribution: string;
|
|
138355
138452
|
/**
|
|
@@ -138587,7 +138684,7 @@ export declare namespace postgresql {
|
|
|
138587
138684
|
* not set, the implementation will apply its default routing strategy. If set
|
|
138588
138685
|
* to "PreferClose", implementations should prioritize endpoints that are
|
|
138589
138686
|
* topologically close (e.g., same zone).
|
|
138590
|
-
* This is
|
|
138687
|
+
* This is a beta field and requires enabling ServiceTrafficDistribution feature.
|
|
138591
138688
|
*/
|
|
138592
138689
|
trafficDistribution: string;
|
|
138593
138690
|
/**
|
|
@@ -139017,6 +139114,7 @@ export declare namespace postgresql {
|
|
|
139017
139114
|
* This field is immutable.
|
|
139018
139115
|
*/
|
|
139019
139116
|
resourceClaims: outputs.postgresql.v1.PoolerSpecTemplateSpecResourceClaims[];
|
|
139117
|
+
resources: outputs.postgresql.v1.PoolerSpecTemplateSpecResources;
|
|
139020
139118
|
/**
|
|
139021
139119
|
* Restart policy for all containers within the pod.
|
|
139022
139120
|
* One of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted.
|
|
@@ -141134,7 +141232,7 @@ export declare namespace postgresql {
|
|
|
141134
141232
|
tcpSocket: outputs.postgresql.v1.PoolerSpecTemplateSpecContainersLifecyclePostStartTcpSocket;
|
|
141135
141233
|
}
|
|
141136
141234
|
/**
|
|
141137
|
-
* Exec specifies
|
|
141235
|
+
* Exec specifies a command to execute in the container.
|
|
141138
141236
|
*/
|
|
141139
141237
|
interface PoolerSpecTemplateSpecContainersLifecyclePostStartExec {
|
|
141140
141238
|
/**
|
|
@@ -141147,7 +141245,7 @@ export declare namespace postgresql {
|
|
|
141147
141245
|
command: string[];
|
|
141148
141246
|
}
|
|
141149
141247
|
/**
|
|
141150
|
-
* Exec specifies
|
|
141248
|
+
* Exec specifies a command to execute in the container.
|
|
141151
141249
|
*/
|
|
141152
141250
|
interface PoolerSpecTemplateSpecContainersLifecyclePostStartExecPatch {
|
|
141153
141251
|
/**
|
|
@@ -141160,7 +141258,7 @@ export declare namespace postgresql {
|
|
|
141160
141258
|
command: string[];
|
|
141161
141259
|
}
|
|
141162
141260
|
/**
|
|
141163
|
-
* HTTPGet specifies
|
|
141261
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
141164
141262
|
*/
|
|
141165
141263
|
interface PoolerSpecTemplateSpecContainersLifecyclePostStartHttpGet {
|
|
141166
141264
|
/**
|
|
@@ -141217,7 +141315,7 @@ export declare namespace postgresql {
|
|
|
141217
141315
|
value: string;
|
|
141218
141316
|
}
|
|
141219
141317
|
/**
|
|
141220
|
-
* HTTPGet specifies
|
|
141318
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
141221
141319
|
*/
|
|
141222
141320
|
interface PoolerSpecTemplateSpecContainersLifecyclePostStartHttpGetPatch {
|
|
141223
141321
|
/**
|
|
@@ -141258,7 +141356,7 @@ export declare namespace postgresql {
|
|
|
141258
141356
|
tcpSocket: outputs.postgresql.v1.PoolerSpecTemplateSpecContainersLifecyclePostStartTcpSocketPatch;
|
|
141259
141357
|
}
|
|
141260
141358
|
/**
|
|
141261
|
-
* Sleep represents
|
|
141359
|
+
* Sleep represents a duration that the container should sleep.
|
|
141262
141360
|
*/
|
|
141263
141361
|
interface PoolerSpecTemplateSpecContainersLifecyclePostStartSleep {
|
|
141264
141362
|
/**
|
|
@@ -141267,7 +141365,7 @@ export declare namespace postgresql {
|
|
|
141267
141365
|
seconds: number;
|
|
141268
141366
|
}
|
|
141269
141367
|
/**
|
|
141270
|
-
* Sleep represents
|
|
141368
|
+
* Sleep represents a duration that the container should sleep.
|
|
141271
141369
|
*/
|
|
141272
141370
|
interface PoolerSpecTemplateSpecContainersLifecyclePostStartSleepPatch {
|
|
141273
141371
|
/**
|
|
@@ -141277,8 +141375,8 @@ export declare namespace postgresql {
|
|
|
141277
141375
|
}
|
|
141278
141376
|
/**
|
|
141279
141377
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
141280
|
-
* for
|
|
141281
|
-
* lifecycle hooks will fail
|
|
141378
|
+
* for backward compatibility. There is no validation of this field and
|
|
141379
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
141282
141380
|
*/
|
|
141283
141381
|
interface PoolerSpecTemplateSpecContainersLifecyclePostStartTcpSocket {
|
|
141284
141382
|
/**
|
|
@@ -141294,8 +141392,8 @@ export declare namespace postgresql {
|
|
|
141294
141392
|
}
|
|
141295
141393
|
/**
|
|
141296
141394
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
141297
|
-
* for
|
|
141298
|
-
* lifecycle hooks will fail
|
|
141395
|
+
* for backward compatibility. There is no validation of this field and
|
|
141396
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
141299
141397
|
*/
|
|
141300
141398
|
interface PoolerSpecTemplateSpecContainersLifecyclePostStartTcpSocketPatch {
|
|
141301
141399
|
/**
|
|
@@ -141327,7 +141425,7 @@ export declare namespace postgresql {
|
|
|
141327
141425
|
tcpSocket: outputs.postgresql.v1.PoolerSpecTemplateSpecContainersLifecyclePreStopTcpSocket;
|
|
141328
141426
|
}
|
|
141329
141427
|
/**
|
|
141330
|
-
* Exec specifies
|
|
141428
|
+
* Exec specifies a command to execute in the container.
|
|
141331
141429
|
*/
|
|
141332
141430
|
interface PoolerSpecTemplateSpecContainersLifecyclePreStopExec {
|
|
141333
141431
|
/**
|
|
@@ -141340,7 +141438,7 @@ export declare namespace postgresql {
|
|
|
141340
141438
|
command: string[];
|
|
141341
141439
|
}
|
|
141342
141440
|
/**
|
|
141343
|
-
* Exec specifies
|
|
141441
|
+
* Exec specifies a command to execute in the container.
|
|
141344
141442
|
*/
|
|
141345
141443
|
interface PoolerSpecTemplateSpecContainersLifecyclePreStopExecPatch {
|
|
141346
141444
|
/**
|
|
@@ -141353,7 +141451,7 @@ export declare namespace postgresql {
|
|
|
141353
141451
|
command: string[];
|
|
141354
141452
|
}
|
|
141355
141453
|
/**
|
|
141356
|
-
* HTTPGet specifies
|
|
141454
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
141357
141455
|
*/
|
|
141358
141456
|
interface PoolerSpecTemplateSpecContainersLifecyclePreStopHttpGet {
|
|
141359
141457
|
/**
|
|
@@ -141410,7 +141508,7 @@ export declare namespace postgresql {
|
|
|
141410
141508
|
value: string;
|
|
141411
141509
|
}
|
|
141412
141510
|
/**
|
|
141413
|
-
* HTTPGet specifies
|
|
141511
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
141414
141512
|
*/
|
|
141415
141513
|
interface PoolerSpecTemplateSpecContainersLifecyclePreStopHttpGetPatch {
|
|
141416
141514
|
/**
|
|
@@ -141456,7 +141554,7 @@ export declare namespace postgresql {
|
|
|
141456
141554
|
tcpSocket: outputs.postgresql.v1.PoolerSpecTemplateSpecContainersLifecyclePreStopTcpSocketPatch;
|
|
141457
141555
|
}
|
|
141458
141556
|
/**
|
|
141459
|
-
* Sleep represents
|
|
141557
|
+
* Sleep represents a duration that the container should sleep.
|
|
141460
141558
|
*/
|
|
141461
141559
|
interface PoolerSpecTemplateSpecContainersLifecyclePreStopSleep {
|
|
141462
141560
|
/**
|
|
@@ -141465,7 +141563,7 @@ export declare namespace postgresql {
|
|
|
141465
141563
|
seconds: number;
|
|
141466
141564
|
}
|
|
141467
141565
|
/**
|
|
141468
|
-
* Sleep represents
|
|
141566
|
+
* Sleep represents a duration that the container should sleep.
|
|
141469
141567
|
*/
|
|
141470
141568
|
interface PoolerSpecTemplateSpecContainersLifecyclePreStopSleepPatch {
|
|
141471
141569
|
/**
|
|
@@ -141475,8 +141573,8 @@ export declare namespace postgresql {
|
|
|
141475
141573
|
}
|
|
141476
141574
|
/**
|
|
141477
141575
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
141478
|
-
* for
|
|
141479
|
-
* lifecycle hooks will fail
|
|
141576
|
+
* for backward compatibility. There is no validation of this field and
|
|
141577
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
141480
141578
|
*/
|
|
141481
141579
|
interface PoolerSpecTemplateSpecContainersLifecyclePreStopTcpSocket {
|
|
141482
141580
|
/**
|
|
@@ -141492,8 +141590,8 @@ export declare namespace postgresql {
|
|
|
141492
141590
|
}
|
|
141493
141591
|
/**
|
|
141494
141592
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
141495
|
-
* for
|
|
141496
|
-
* lifecycle hooks will fail
|
|
141593
|
+
* for backward compatibility. There is no validation of this field and
|
|
141594
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
141497
141595
|
*/
|
|
141498
141596
|
interface PoolerSpecTemplateSpecContainersLifecyclePreStopTcpSocketPatch {
|
|
141499
141597
|
/**
|
|
@@ -141559,7 +141657,7 @@ export declare namespace postgresql {
|
|
|
141559
141657
|
timeoutSeconds: number;
|
|
141560
141658
|
}
|
|
141561
141659
|
/**
|
|
141562
|
-
* Exec specifies
|
|
141660
|
+
* Exec specifies a command to execute in the container.
|
|
141563
141661
|
*/
|
|
141564
141662
|
interface PoolerSpecTemplateSpecContainersLivenessProbeExec {
|
|
141565
141663
|
/**
|
|
@@ -141572,7 +141670,7 @@ export declare namespace postgresql {
|
|
|
141572
141670
|
command: string[];
|
|
141573
141671
|
}
|
|
141574
141672
|
/**
|
|
141575
|
-
* Exec specifies
|
|
141673
|
+
* Exec specifies a command to execute in the container.
|
|
141576
141674
|
*/
|
|
141577
141675
|
interface PoolerSpecTemplateSpecContainersLivenessProbeExecPatch {
|
|
141578
141676
|
/**
|
|
@@ -141585,7 +141683,7 @@ export declare namespace postgresql {
|
|
|
141585
141683
|
command: string[];
|
|
141586
141684
|
}
|
|
141587
141685
|
/**
|
|
141588
|
-
* GRPC specifies
|
|
141686
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
141589
141687
|
*/
|
|
141590
141688
|
interface PoolerSpecTemplateSpecContainersLivenessProbeGrpc {
|
|
141591
141689
|
/**
|
|
@@ -141601,7 +141699,7 @@ export declare namespace postgresql {
|
|
|
141601
141699
|
service: string;
|
|
141602
141700
|
}
|
|
141603
141701
|
/**
|
|
141604
|
-
* GRPC specifies
|
|
141702
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
141605
141703
|
*/
|
|
141606
141704
|
interface PoolerSpecTemplateSpecContainersLivenessProbeGrpcPatch {
|
|
141607
141705
|
/**
|
|
@@ -141617,7 +141715,7 @@ export declare namespace postgresql {
|
|
|
141617
141715
|
service: string;
|
|
141618
141716
|
}
|
|
141619
141717
|
/**
|
|
141620
|
-
* HTTPGet specifies
|
|
141718
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
141621
141719
|
*/
|
|
141622
141720
|
interface PoolerSpecTemplateSpecContainersLivenessProbeHttpGet {
|
|
141623
141721
|
/**
|
|
@@ -141674,7 +141772,7 @@ export declare namespace postgresql {
|
|
|
141674
141772
|
value: string;
|
|
141675
141773
|
}
|
|
141676
141774
|
/**
|
|
141677
|
-
* HTTPGet specifies
|
|
141775
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
141678
141776
|
*/
|
|
141679
141777
|
interface PoolerSpecTemplateSpecContainersLivenessProbeHttpGetPatch {
|
|
141680
141778
|
/**
|
|
@@ -141754,7 +141852,7 @@ export declare namespace postgresql {
|
|
|
141754
141852
|
timeoutSeconds: number;
|
|
141755
141853
|
}
|
|
141756
141854
|
/**
|
|
141757
|
-
* TCPSocket specifies
|
|
141855
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
141758
141856
|
*/
|
|
141759
141857
|
interface PoolerSpecTemplateSpecContainersLivenessProbeTcpSocket {
|
|
141760
141858
|
/**
|
|
@@ -141769,7 +141867,7 @@ export declare namespace postgresql {
|
|
|
141769
141867
|
port: number | string;
|
|
141770
141868
|
}
|
|
141771
141869
|
/**
|
|
141772
|
-
* TCPSocket specifies
|
|
141870
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
141773
141871
|
*/
|
|
141774
141872
|
interface PoolerSpecTemplateSpecContainersLivenessProbeTcpSocketPatch {
|
|
141775
141873
|
/**
|
|
@@ -142056,7 +142154,7 @@ export declare namespace postgresql {
|
|
|
142056
142154
|
timeoutSeconds: number;
|
|
142057
142155
|
}
|
|
142058
142156
|
/**
|
|
142059
|
-
* Exec specifies
|
|
142157
|
+
* Exec specifies a command to execute in the container.
|
|
142060
142158
|
*/
|
|
142061
142159
|
interface PoolerSpecTemplateSpecContainersReadinessProbeExec {
|
|
142062
142160
|
/**
|
|
@@ -142069,7 +142167,7 @@ export declare namespace postgresql {
|
|
|
142069
142167
|
command: string[];
|
|
142070
142168
|
}
|
|
142071
142169
|
/**
|
|
142072
|
-
* Exec specifies
|
|
142170
|
+
* Exec specifies a command to execute in the container.
|
|
142073
142171
|
*/
|
|
142074
142172
|
interface PoolerSpecTemplateSpecContainersReadinessProbeExecPatch {
|
|
142075
142173
|
/**
|
|
@@ -142082,7 +142180,7 @@ export declare namespace postgresql {
|
|
|
142082
142180
|
command: string[];
|
|
142083
142181
|
}
|
|
142084
142182
|
/**
|
|
142085
|
-
* GRPC specifies
|
|
142183
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
142086
142184
|
*/
|
|
142087
142185
|
interface PoolerSpecTemplateSpecContainersReadinessProbeGrpc {
|
|
142088
142186
|
/**
|
|
@@ -142098,7 +142196,7 @@ export declare namespace postgresql {
|
|
|
142098
142196
|
service: string;
|
|
142099
142197
|
}
|
|
142100
142198
|
/**
|
|
142101
|
-
* GRPC specifies
|
|
142199
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
142102
142200
|
*/
|
|
142103
142201
|
interface PoolerSpecTemplateSpecContainersReadinessProbeGrpcPatch {
|
|
142104
142202
|
/**
|
|
@@ -142114,7 +142212,7 @@ export declare namespace postgresql {
|
|
|
142114
142212
|
service: string;
|
|
142115
142213
|
}
|
|
142116
142214
|
/**
|
|
142117
|
-
* HTTPGet specifies
|
|
142215
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
142118
142216
|
*/
|
|
142119
142217
|
interface PoolerSpecTemplateSpecContainersReadinessProbeHttpGet {
|
|
142120
142218
|
/**
|
|
@@ -142171,7 +142269,7 @@ export declare namespace postgresql {
|
|
|
142171
142269
|
value: string;
|
|
142172
142270
|
}
|
|
142173
142271
|
/**
|
|
142174
|
-
* HTTPGet specifies
|
|
142272
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
142175
142273
|
*/
|
|
142176
142274
|
interface PoolerSpecTemplateSpecContainersReadinessProbeHttpGetPatch {
|
|
142177
142275
|
/**
|
|
@@ -142251,7 +142349,7 @@ export declare namespace postgresql {
|
|
|
142251
142349
|
timeoutSeconds: number;
|
|
142252
142350
|
}
|
|
142253
142351
|
/**
|
|
142254
|
-
* TCPSocket specifies
|
|
142352
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
142255
142353
|
*/
|
|
142256
142354
|
interface PoolerSpecTemplateSpecContainersReadinessProbeTcpSocket {
|
|
142257
142355
|
/**
|
|
@@ -142266,7 +142364,7 @@ export declare namespace postgresql {
|
|
|
142266
142364
|
port: number | string;
|
|
142267
142365
|
}
|
|
142268
142366
|
/**
|
|
142269
|
-
* TCPSocket specifies
|
|
142367
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
142270
142368
|
*/
|
|
142271
142369
|
interface PoolerSpecTemplateSpecContainersReadinessProbeTcpSocketPatch {
|
|
142272
142370
|
/**
|
|
@@ -142837,7 +142935,7 @@ export declare namespace postgresql {
|
|
|
142837
142935
|
timeoutSeconds: number;
|
|
142838
142936
|
}
|
|
142839
142937
|
/**
|
|
142840
|
-
* Exec specifies
|
|
142938
|
+
* Exec specifies a command to execute in the container.
|
|
142841
142939
|
*/
|
|
142842
142940
|
interface PoolerSpecTemplateSpecContainersStartupProbeExec {
|
|
142843
142941
|
/**
|
|
@@ -142850,7 +142948,7 @@ export declare namespace postgresql {
|
|
|
142850
142948
|
command: string[];
|
|
142851
142949
|
}
|
|
142852
142950
|
/**
|
|
142853
|
-
* Exec specifies
|
|
142951
|
+
* Exec specifies a command to execute in the container.
|
|
142854
142952
|
*/
|
|
142855
142953
|
interface PoolerSpecTemplateSpecContainersStartupProbeExecPatch {
|
|
142856
142954
|
/**
|
|
@@ -142863,7 +142961,7 @@ export declare namespace postgresql {
|
|
|
142863
142961
|
command: string[];
|
|
142864
142962
|
}
|
|
142865
142963
|
/**
|
|
142866
|
-
* GRPC specifies
|
|
142964
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
142867
142965
|
*/
|
|
142868
142966
|
interface PoolerSpecTemplateSpecContainersStartupProbeGrpc {
|
|
142869
142967
|
/**
|
|
@@ -142879,7 +142977,7 @@ export declare namespace postgresql {
|
|
|
142879
142977
|
service: string;
|
|
142880
142978
|
}
|
|
142881
142979
|
/**
|
|
142882
|
-
* GRPC specifies
|
|
142980
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
142883
142981
|
*/
|
|
142884
142982
|
interface PoolerSpecTemplateSpecContainersStartupProbeGrpcPatch {
|
|
142885
142983
|
/**
|
|
@@ -142895,7 +142993,7 @@ export declare namespace postgresql {
|
|
|
142895
142993
|
service: string;
|
|
142896
142994
|
}
|
|
142897
142995
|
/**
|
|
142898
|
-
* HTTPGet specifies
|
|
142996
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
142899
142997
|
*/
|
|
142900
142998
|
interface PoolerSpecTemplateSpecContainersStartupProbeHttpGet {
|
|
142901
142999
|
/**
|
|
@@ -142952,7 +143050,7 @@ export declare namespace postgresql {
|
|
|
142952
143050
|
value: string;
|
|
142953
143051
|
}
|
|
142954
143052
|
/**
|
|
142955
|
-
* HTTPGet specifies
|
|
143053
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
142956
143054
|
*/
|
|
142957
143055
|
interface PoolerSpecTemplateSpecContainersStartupProbeHttpGetPatch {
|
|
142958
143056
|
/**
|
|
@@ -143035,7 +143133,7 @@ export declare namespace postgresql {
|
|
|
143035
143133
|
timeoutSeconds: number;
|
|
143036
143134
|
}
|
|
143037
143135
|
/**
|
|
143038
|
-
* TCPSocket specifies
|
|
143136
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
143039
143137
|
*/
|
|
143040
143138
|
interface PoolerSpecTemplateSpecContainersStartupProbeTcpSocket {
|
|
143041
143139
|
/**
|
|
@@ -143050,7 +143148,7 @@ export declare namespace postgresql {
|
|
|
143050
143148
|
port: number | string;
|
|
143051
143149
|
}
|
|
143052
143150
|
/**
|
|
143053
|
-
* TCPSocket specifies
|
|
143151
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
143054
143152
|
*/
|
|
143055
143153
|
interface PoolerSpecTemplateSpecContainersStartupProbeTcpSocketPatch {
|
|
143056
143154
|
/**
|
|
@@ -143239,9 +143337,13 @@ export declare namespace postgresql {
|
|
|
143239
143337
|
*/
|
|
143240
143338
|
interface PoolerSpecTemplateSpecDnsConfigOptions {
|
|
143241
143339
|
/**
|
|
143340
|
+
* Name is this DNS resolver option's name.
|
|
143242
143341
|
* Required.
|
|
143243
143342
|
*/
|
|
143244
143343
|
name: string;
|
|
143344
|
+
/**
|
|
143345
|
+
* Value is this DNS resolver option's value.
|
|
143346
|
+
*/
|
|
143245
143347
|
value: string;
|
|
143246
143348
|
}
|
|
143247
143349
|
/**
|
|
@@ -143249,9 +143351,13 @@ export declare namespace postgresql {
|
|
|
143249
143351
|
*/
|
|
143250
143352
|
interface PoolerSpecTemplateSpecDnsConfigOptionsPatch {
|
|
143251
143353
|
/**
|
|
143354
|
+
* Name is this DNS resolver option's name.
|
|
143252
143355
|
* Required.
|
|
143253
143356
|
*/
|
|
143254
143357
|
name: string;
|
|
143358
|
+
/**
|
|
143359
|
+
* Value is this DNS resolver option's value.
|
|
143360
|
+
*/
|
|
143255
143361
|
value: string;
|
|
143256
143362
|
}
|
|
143257
143363
|
/**
|
|
@@ -143760,7 +143866,7 @@ export declare namespace postgresql {
|
|
|
143760
143866
|
tcpSocket: outputs.postgresql.v1.PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartTcpSocket;
|
|
143761
143867
|
}
|
|
143762
143868
|
/**
|
|
143763
|
-
* Exec specifies
|
|
143869
|
+
* Exec specifies a command to execute in the container.
|
|
143764
143870
|
*/
|
|
143765
143871
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartExec {
|
|
143766
143872
|
/**
|
|
@@ -143773,7 +143879,7 @@ export declare namespace postgresql {
|
|
|
143773
143879
|
command: string[];
|
|
143774
143880
|
}
|
|
143775
143881
|
/**
|
|
143776
|
-
* Exec specifies
|
|
143882
|
+
* Exec specifies a command to execute in the container.
|
|
143777
143883
|
*/
|
|
143778
143884
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartExecPatch {
|
|
143779
143885
|
/**
|
|
@@ -143786,7 +143892,7 @@ export declare namespace postgresql {
|
|
|
143786
143892
|
command: string[];
|
|
143787
143893
|
}
|
|
143788
143894
|
/**
|
|
143789
|
-
* HTTPGet specifies
|
|
143895
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
143790
143896
|
*/
|
|
143791
143897
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartHttpGet {
|
|
143792
143898
|
/**
|
|
@@ -143843,7 +143949,7 @@ export declare namespace postgresql {
|
|
|
143843
143949
|
value: string;
|
|
143844
143950
|
}
|
|
143845
143951
|
/**
|
|
143846
|
-
* HTTPGet specifies
|
|
143952
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
143847
143953
|
*/
|
|
143848
143954
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartHttpGetPatch {
|
|
143849
143955
|
/**
|
|
@@ -143884,7 +143990,7 @@ export declare namespace postgresql {
|
|
|
143884
143990
|
tcpSocket: outputs.postgresql.v1.PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartTcpSocketPatch;
|
|
143885
143991
|
}
|
|
143886
143992
|
/**
|
|
143887
|
-
* Sleep represents
|
|
143993
|
+
* Sleep represents a duration that the container should sleep.
|
|
143888
143994
|
*/
|
|
143889
143995
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartSleep {
|
|
143890
143996
|
/**
|
|
@@ -143893,7 +143999,7 @@ export declare namespace postgresql {
|
|
|
143893
143999
|
seconds: number;
|
|
143894
144000
|
}
|
|
143895
144001
|
/**
|
|
143896
|
-
* Sleep represents
|
|
144002
|
+
* Sleep represents a duration that the container should sleep.
|
|
143897
144003
|
*/
|
|
143898
144004
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartSleepPatch {
|
|
143899
144005
|
/**
|
|
@@ -143903,8 +144009,8 @@ export declare namespace postgresql {
|
|
|
143903
144009
|
}
|
|
143904
144010
|
/**
|
|
143905
144011
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
143906
|
-
* for
|
|
143907
|
-
* lifecycle hooks will fail
|
|
144012
|
+
* for backward compatibility. There is no validation of this field and
|
|
144013
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
143908
144014
|
*/
|
|
143909
144015
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartTcpSocket {
|
|
143910
144016
|
/**
|
|
@@ -143920,8 +144026,8 @@ export declare namespace postgresql {
|
|
|
143920
144026
|
}
|
|
143921
144027
|
/**
|
|
143922
144028
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
143923
|
-
* for
|
|
143924
|
-
* lifecycle hooks will fail
|
|
144029
|
+
* for backward compatibility. There is no validation of this field and
|
|
144030
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
143925
144031
|
*/
|
|
143926
144032
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartTcpSocketPatch {
|
|
143927
144033
|
/**
|
|
@@ -143953,7 +144059,7 @@ export declare namespace postgresql {
|
|
|
143953
144059
|
tcpSocket: outputs.postgresql.v1.PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopTcpSocket;
|
|
143954
144060
|
}
|
|
143955
144061
|
/**
|
|
143956
|
-
* Exec specifies
|
|
144062
|
+
* Exec specifies a command to execute in the container.
|
|
143957
144063
|
*/
|
|
143958
144064
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopExec {
|
|
143959
144065
|
/**
|
|
@@ -143966,7 +144072,7 @@ export declare namespace postgresql {
|
|
|
143966
144072
|
command: string[];
|
|
143967
144073
|
}
|
|
143968
144074
|
/**
|
|
143969
|
-
* Exec specifies
|
|
144075
|
+
* Exec specifies a command to execute in the container.
|
|
143970
144076
|
*/
|
|
143971
144077
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopExecPatch {
|
|
143972
144078
|
/**
|
|
@@ -143979,7 +144085,7 @@ export declare namespace postgresql {
|
|
|
143979
144085
|
command: string[];
|
|
143980
144086
|
}
|
|
143981
144087
|
/**
|
|
143982
|
-
* HTTPGet specifies
|
|
144088
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
143983
144089
|
*/
|
|
143984
144090
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopHttpGet {
|
|
143985
144091
|
/**
|
|
@@ -144036,7 +144142,7 @@ export declare namespace postgresql {
|
|
|
144036
144142
|
value: string;
|
|
144037
144143
|
}
|
|
144038
144144
|
/**
|
|
144039
|
-
* HTTPGet specifies
|
|
144145
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
144040
144146
|
*/
|
|
144041
144147
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopHttpGetPatch {
|
|
144042
144148
|
/**
|
|
@@ -144082,7 +144188,7 @@ export declare namespace postgresql {
|
|
|
144082
144188
|
tcpSocket: outputs.postgresql.v1.PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopTcpSocketPatch;
|
|
144083
144189
|
}
|
|
144084
144190
|
/**
|
|
144085
|
-
* Sleep represents
|
|
144191
|
+
* Sleep represents a duration that the container should sleep.
|
|
144086
144192
|
*/
|
|
144087
144193
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopSleep {
|
|
144088
144194
|
/**
|
|
@@ -144091,7 +144197,7 @@ export declare namespace postgresql {
|
|
|
144091
144197
|
seconds: number;
|
|
144092
144198
|
}
|
|
144093
144199
|
/**
|
|
144094
|
-
* Sleep represents
|
|
144200
|
+
* Sleep represents a duration that the container should sleep.
|
|
144095
144201
|
*/
|
|
144096
144202
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopSleepPatch {
|
|
144097
144203
|
/**
|
|
@@ -144101,8 +144207,8 @@ export declare namespace postgresql {
|
|
|
144101
144207
|
}
|
|
144102
144208
|
/**
|
|
144103
144209
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
144104
|
-
* for
|
|
144105
|
-
* lifecycle hooks will fail
|
|
144210
|
+
* for backward compatibility. There is no validation of this field and
|
|
144211
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
144106
144212
|
*/
|
|
144107
144213
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopTcpSocket {
|
|
144108
144214
|
/**
|
|
@@ -144118,8 +144224,8 @@ export declare namespace postgresql {
|
|
|
144118
144224
|
}
|
|
144119
144225
|
/**
|
|
144120
144226
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
144121
|
-
* for
|
|
144122
|
-
* lifecycle hooks will fail
|
|
144227
|
+
* for backward compatibility. There is no validation of this field and
|
|
144228
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
144123
144229
|
*/
|
|
144124
144230
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopTcpSocketPatch {
|
|
144125
144231
|
/**
|
|
@@ -144182,7 +144288,7 @@ export declare namespace postgresql {
|
|
|
144182
144288
|
timeoutSeconds: number;
|
|
144183
144289
|
}
|
|
144184
144290
|
/**
|
|
144185
|
-
* Exec specifies
|
|
144291
|
+
* Exec specifies a command to execute in the container.
|
|
144186
144292
|
*/
|
|
144187
144293
|
interface PoolerSpecTemplateSpecEphemeralContainersLivenessProbeExec {
|
|
144188
144294
|
/**
|
|
@@ -144195,7 +144301,7 @@ export declare namespace postgresql {
|
|
|
144195
144301
|
command: string[];
|
|
144196
144302
|
}
|
|
144197
144303
|
/**
|
|
144198
|
-
* Exec specifies
|
|
144304
|
+
* Exec specifies a command to execute in the container.
|
|
144199
144305
|
*/
|
|
144200
144306
|
interface PoolerSpecTemplateSpecEphemeralContainersLivenessProbeExecPatch {
|
|
144201
144307
|
/**
|
|
@@ -144208,7 +144314,7 @@ export declare namespace postgresql {
|
|
|
144208
144314
|
command: string[];
|
|
144209
144315
|
}
|
|
144210
144316
|
/**
|
|
144211
|
-
* GRPC specifies
|
|
144317
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
144212
144318
|
*/
|
|
144213
144319
|
interface PoolerSpecTemplateSpecEphemeralContainersLivenessProbeGrpc {
|
|
144214
144320
|
/**
|
|
@@ -144224,7 +144330,7 @@ export declare namespace postgresql {
|
|
|
144224
144330
|
service: string;
|
|
144225
144331
|
}
|
|
144226
144332
|
/**
|
|
144227
|
-
* GRPC specifies
|
|
144333
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
144228
144334
|
*/
|
|
144229
144335
|
interface PoolerSpecTemplateSpecEphemeralContainersLivenessProbeGrpcPatch {
|
|
144230
144336
|
/**
|
|
@@ -144240,7 +144346,7 @@ export declare namespace postgresql {
|
|
|
144240
144346
|
service: string;
|
|
144241
144347
|
}
|
|
144242
144348
|
/**
|
|
144243
|
-
* HTTPGet specifies
|
|
144349
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
144244
144350
|
*/
|
|
144245
144351
|
interface PoolerSpecTemplateSpecEphemeralContainersLivenessProbeHttpGet {
|
|
144246
144352
|
/**
|
|
@@ -144297,7 +144403,7 @@ export declare namespace postgresql {
|
|
|
144297
144403
|
value: string;
|
|
144298
144404
|
}
|
|
144299
144405
|
/**
|
|
144300
|
-
* HTTPGet specifies
|
|
144406
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
144301
144407
|
*/
|
|
144302
144408
|
interface PoolerSpecTemplateSpecEphemeralContainersLivenessProbeHttpGetPatch {
|
|
144303
144409
|
/**
|
|
@@ -144374,7 +144480,7 @@ export declare namespace postgresql {
|
|
|
144374
144480
|
timeoutSeconds: number;
|
|
144375
144481
|
}
|
|
144376
144482
|
/**
|
|
144377
|
-
* TCPSocket specifies
|
|
144483
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
144378
144484
|
*/
|
|
144379
144485
|
interface PoolerSpecTemplateSpecEphemeralContainersLivenessProbeTcpSocket {
|
|
144380
144486
|
/**
|
|
@@ -144389,7 +144495,7 @@ export declare namespace postgresql {
|
|
|
144389
144495
|
port: number | string;
|
|
144390
144496
|
}
|
|
144391
144497
|
/**
|
|
144392
|
-
* TCPSocket specifies
|
|
144498
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
144393
144499
|
*/
|
|
144394
144500
|
interface PoolerSpecTemplateSpecEphemeralContainersLivenessProbeTcpSocketPatch {
|
|
144395
144501
|
/**
|
|
@@ -144669,7 +144775,7 @@ export declare namespace postgresql {
|
|
|
144669
144775
|
timeoutSeconds: number;
|
|
144670
144776
|
}
|
|
144671
144777
|
/**
|
|
144672
|
-
* Exec specifies
|
|
144778
|
+
* Exec specifies a command to execute in the container.
|
|
144673
144779
|
*/
|
|
144674
144780
|
interface PoolerSpecTemplateSpecEphemeralContainersReadinessProbeExec {
|
|
144675
144781
|
/**
|
|
@@ -144682,7 +144788,7 @@ export declare namespace postgresql {
|
|
|
144682
144788
|
command: string[];
|
|
144683
144789
|
}
|
|
144684
144790
|
/**
|
|
144685
|
-
* Exec specifies
|
|
144791
|
+
* Exec specifies a command to execute in the container.
|
|
144686
144792
|
*/
|
|
144687
144793
|
interface PoolerSpecTemplateSpecEphemeralContainersReadinessProbeExecPatch {
|
|
144688
144794
|
/**
|
|
@@ -144695,7 +144801,7 @@ export declare namespace postgresql {
|
|
|
144695
144801
|
command: string[];
|
|
144696
144802
|
}
|
|
144697
144803
|
/**
|
|
144698
|
-
* GRPC specifies
|
|
144804
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
144699
144805
|
*/
|
|
144700
144806
|
interface PoolerSpecTemplateSpecEphemeralContainersReadinessProbeGrpc {
|
|
144701
144807
|
/**
|
|
@@ -144711,7 +144817,7 @@ export declare namespace postgresql {
|
|
|
144711
144817
|
service: string;
|
|
144712
144818
|
}
|
|
144713
144819
|
/**
|
|
144714
|
-
* GRPC specifies
|
|
144820
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
144715
144821
|
*/
|
|
144716
144822
|
interface PoolerSpecTemplateSpecEphemeralContainersReadinessProbeGrpcPatch {
|
|
144717
144823
|
/**
|
|
@@ -144727,7 +144833,7 @@ export declare namespace postgresql {
|
|
|
144727
144833
|
service: string;
|
|
144728
144834
|
}
|
|
144729
144835
|
/**
|
|
144730
|
-
* HTTPGet specifies
|
|
144836
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
144731
144837
|
*/
|
|
144732
144838
|
interface PoolerSpecTemplateSpecEphemeralContainersReadinessProbeHttpGet {
|
|
144733
144839
|
/**
|
|
@@ -144784,7 +144890,7 @@ export declare namespace postgresql {
|
|
|
144784
144890
|
value: string;
|
|
144785
144891
|
}
|
|
144786
144892
|
/**
|
|
144787
|
-
* HTTPGet specifies
|
|
144893
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
144788
144894
|
*/
|
|
144789
144895
|
interface PoolerSpecTemplateSpecEphemeralContainersReadinessProbeHttpGetPatch {
|
|
144790
144896
|
/**
|
|
@@ -144861,7 +144967,7 @@ export declare namespace postgresql {
|
|
|
144861
144967
|
timeoutSeconds: number;
|
|
144862
144968
|
}
|
|
144863
144969
|
/**
|
|
144864
|
-
* TCPSocket specifies
|
|
144970
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
144865
144971
|
*/
|
|
144866
144972
|
interface PoolerSpecTemplateSpecEphemeralContainersReadinessProbeTcpSocket {
|
|
144867
144973
|
/**
|
|
@@ -144876,7 +144982,7 @@ export declare namespace postgresql {
|
|
|
144876
144982
|
port: number | string;
|
|
144877
144983
|
}
|
|
144878
144984
|
/**
|
|
144879
|
-
* TCPSocket specifies
|
|
144985
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
144880
144986
|
*/
|
|
144881
144987
|
interface PoolerSpecTemplateSpecEphemeralContainersReadinessProbeTcpSocketPatch {
|
|
144882
144988
|
/**
|
|
@@ -145437,7 +145543,7 @@ export declare namespace postgresql {
|
|
|
145437
145543
|
timeoutSeconds: number;
|
|
145438
145544
|
}
|
|
145439
145545
|
/**
|
|
145440
|
-
* Exec specifies
|
|
145546
|
+
* Exec specifies a command to execute in the container.
|
|
145441
145547
|
*/
|
|
145442
145548
|
interface PoolerSpecTemplateSpecEphemeralContainersStartupProbeExec {
|
|
145443
145549
|
/**
|
|
@@ -145450,7 +145556,7 @@ export declare namespace postgresql {
|
|
|
145450
145556
|
command: string[];
|
|
145451
145557
|
}
|
|
145452
145558
|
/**
|
|
145453
|
-
* Exec specifies
|
|
145559
|
+
* Exec specifies a command to execute in the container.
|
|
145454
145560
|
*/
|
|
145455
145561
|
interface PoolerSpecTemplateSpecEphemeralContainersStartupProbeExecPatch {
|
|
145456
145562
|
/**
|
|
@@ -145463,7 +145569,7 @@ export declare namespace postgresql {
|
|
|
145463
145569
|
command: string[];
|
|
145464
145570
|
}
|
|
145465
145571
|
/**
|
|
145466
|
-
* GRPC specifies
|
|
145572
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
145467
145573
|
*/
|
|
145468
145574
|
interface PoolerSpecTemplateSpecEphemeralContainersStartupProbeGrpc {
|
|
145469
145575
|
/**
|
|
@@ -145479,7 +145585,7 @@ export declare namespace postgresql {
|
|
|
145479
145585
|
service: string;
|
|
145480
145586
|
}
|
|
145481
145587
|
/**
|
|
145482
|
-
* GRPC specifies
|
|
145588
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
145483
145589
|
*/
|
|
145484
145590
|
interface PoolerSpecTemplateSpecEphemeralContainersStartupProbeGrpcPatch {
|
|
145485
145591
|
/**
|
|
@@ -145495,7 +145601,7 @@ export declare namespace postgresql {
|
|
|
145495
145601
|
service: string;
|
|
145496
145602
|
}
|
|
145497
145603
|
/**
|
|
145498
|
-
* HTTPGet specifies
|
|
145604
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
145499
145605
|
*/
|
|
145500
145606
|
interface PoolerSpecTemplateSpecEphemeralContainersStartupProbeHttpGet {
|
|
145501
145607
|
/**
|
|
@@ -145552,7 +145658,7 @@ export declare namespace postgresql {
|
|
|
145552
145658
|
value: string;
|
|
145553
145659
|
}
|
|
145554
145660
|
/**
|
|
145555
|
-
* HTTPGet specifies
|
|
145661
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
145556
145662
|
*/
|
|
145557
145663
|
interface PoolerSpecTemplateSpecEphemeralContainersStartupProbeHttpGetPatch {
|
|
145558
145664
|
/**
|
|
@@ -145629,7 +145735,7 @@ export declare namespace postgresql {
|
|
|
145629
145735
|
timeoutSeconds: number;
|
|
145630
145736
|
}
|
|
145631
145737
|
/**
|
|
145632
|
-
* TCPSocket specifies
|
|
145738
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
145633
145739
|
*/
|
|
145634
145740
|
interface PoolerSpecTemplateSpecEphemeralContainersStartupProbeTcpSocket {
|
|
145635
145741
|
/**
|
|
@@ -145644,7 +145750,7 @@ export declare namespace postgresql {
|
|
|
145644
145750
|
port: number | string;
|
|
145645
145751
|
}
|
|
145646
145752
|
/**
|
|
145647
|
-
* TCPSocket specifies
|
|
145753
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
145648
145754
|
*/
|
|
145649
145755
|
interface PoolerSpecTemplateSpecEphemeralContainersStartupProbeTcpSocketPatch {
|
|
145650
145756
|
/**
|
|
@@ -146344,7 +146450,7 @@ export declare namespace postgresql {
|
|
|
146344
146450
|
tcpSocket: outputs.postgresql.v1.PoolerSpecTemplateSpecInitContainersLifecyclePostStartTcpSocket;
|
|
146345
146451
|
}
|
|
146346
146452
|
/**
|
|
146347
|
-
* Exec specifies
|
|
146453
|
+
* Exec specifies a command to execute in the container.
|
|
146348
146454
|
*/
|
|
146349
146455
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePostStartExec {
|
|
146350
146456
|
/**
|
|
@@ -146357,7 +146463,7 @@ export declare namespace postgresql {
|
|
|
146357
146463
|
command: string[];
|
|
146358
146464
|
}
|
|
146359
146465
|
/**
|
|
146360
|
-
* Exec specifies
|
|
146466
|
+
* Exec specifies a command to execute in the container.
|
|
146361
146467
|
*/
|
|
146362
146468
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePostStartExecPatch {
|
|
146363
146469
|
/**
|
|
@@ -146370,7 +146476,7 @@ export declare namespace postgresql {
|
|
|
146370
146476
|
command: string[];
|
|
146371
146477
|
}
|
|
146372
146478
|
/**
|
|
146373
|
-
* HTTPGet specifies
|
|
146479
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
146374
146480
|
*/
|
|
146375
146481
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePostStartHttpGet {
|
|
146376
146482
|
/**
|
|
@@ -146427,7 +146533,7 @@ export declare namespace postgresql {
|
|
|
146427
146533
|
value: string;
|
|
146428
146534
|
}
|
|
146429
146535
|
/**
|
|
146430
|
-
* HTTPGet specifies
|
|
146536
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
146431
146537
|
*/
|
|
146432
146538
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePostStartHttpGetPatch {
|
|
146433
146539
|
/**
|
|
@@ -146468,7 +146574,7 @@ export declare namespace postgresql {
|
|
|
146468
146574
|
tcpSocket: outputs.postgresql.v1.PoolerSpecTemplateSpecInitContainersLifecyclePostStartTcpSocketPatch;
|
|
146469
146575
|
}
|
|
146470
146576
|
/**
|
|
146471
|
-
* Sleep represents
|
|
146577
|
+
* Sleep represents a duration that the container should sleep.
|
|
146472
146578
|
*/
|
|
146473
146579
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePostStartSleep {
|
|
146474
146580
|
/**
|
|
@@ -146477,7 +146583,7 @@ export declare namespace postgresql {
|
|
|
146477
146583
|
seconds: number;
|
|
146478
146584
|
}
|
|
146479
146585
|
/**
|
|
146480
|
-
* Sleep represents
|
|
146586
|
+
* Sleep represents a duration that the container should sleep.
|
|
146481
146587
|
*/
|
|
146482
146588
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePostStartSleepPatch {
|
|
146483
146589
|
/**
|
|
@@ -146487,8 +146593,8 @@ export declare namespace postgresql {
|
|
|
146487
146593
|
}
|
|
146488
146594
|
/**
|
|
146489
146595
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
146490
|
-
* for
|
|
146491
|
-
* lifecycle hooks will fail
|
|
146596
|
+
* for backward compatibility. There is no validation of this field and
|
|
146597
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
146492
146598
|
*/
|
|
146493
146599
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePostStartTcpSocket {
|
|
146494
146600
|
/**
|
|
@@ -146504,8 +146610,8 @@ export declare namespace postgresql {
|
|
|
146504
146610
|
}
|
|
146505
146611
|
/**
|
|
146506
146612
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
146507
|
-
* for
|
|
146508
|
-
* lifecycle hooks will fail
|
|
146613
|
+
* for backward compatibility. There is no validation of this field and
|
|
146614
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
146509
146615
|
*/
|
|
146510
146616
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePostStartTcpSocketPatch {
|
|
146511
146617
|
/**
|
|
@@ -146537,7 +146643,7 @@ export declare namespace postgresql {
|
|
|
146537
146643
|
tcpSocket: outputs.postgresql.v1.PoolerSpecTemplateSpecInitContainersLifecyclePreStopTcpSocket;
|
|
146538
146644
|
}
|
|
146539
146645
|
/**
|
|
146540
|
-
* Exec specifies
|
|
146646
|
+
* Exec specifies a command to execute in the container.
|
|
146541
146647
|
*/
|
|
146542
146648
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePreStopExec {
|
|
146543
146649
|
/**
|
|
@@ -146550,7 +146656,7 @@ export declare namespace postgresql {
|
|
|
146550
146656
|
command: string[];
|
|
146551
146657
|
}
|
|
146552
146658
|
/**
|
|
146553
|
-
* Exec specifies
|
|
146659
|
+
* Exec specifies a command to execute in the container.
|
|
146554
146660
|
*/
|
|
146555
146661
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePreStopExecPatch {
|
|
146556
146662
|
/**
|
|
@@ -146563,7 +146669,7 @@ export declare namespace postgresql {
|
|
|
146563
146669
|
command: string[];
|
|
146564
146670
|
}
|
|
146565
146671
|
/**
|
|
146566
|
-
* HTTPGet specifies
|
|
146672
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
146567
146673
|
*/
|
|
146568
146674
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePreStopHttpGet {
|
|
146569
146675
|
/**
|
|
@@ -146620,7 +146726,7 @@ export declare namespace postgresql {
|
|
|
146620
146726
|
value: string;
|
|
146621
146727
|
}
|
|
146622
146728
|
/**
|
|
146623
|
-
* HTTPGet specifies
|
|
146729
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
146624
146730
|
*/
|
|
146625
146731
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePreStopHttpGetPatch {
|
|
146626
146732
|
/**
|
|
@@ -146666,7 +146772,7 @@ export declare namespace postgresql {
|
|
|
146666
146772
|
tcpSocket: outputs.postgresql.v1.PoolerSpecTemplateSpecInitContainersLifecyclePreStopTcpSocketPatch;
|
|
146667
146773
|
}
|
|
146668
146774
|
/**
|
|
146669
|
-
* Sleep represents
|
|
146775
|
+
* Sleep represents a duration that the container should sleep.
|
|
146670
146776
|
*/
|
|
146671
146777
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePreStopSleep {
|
|
146672
146778
|
/**
|
|
@@ -146675,7 +146781,7 @@ export declare namespace postgresql {
|
|
|
146675
146781
|
seconds: number;
|
|
146676
146782
|
}
|
|
146677
146783
|
/**
|
|
146678
|
-
* Sleep represents
|
|
146784
|
+
* Sleep represents a duration that the container should sleep.
|
|
146679
146785
|
*/
|
|
146680
146786
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePreStopSleepPatch {
|
|
146681
146787
|
/**
|
|
@@ -146685,8 +146791,8 @@ export declare namespace postgresql {
|
|
|
146685
146791
|
}
|
|
146686
146792
|
/**
|
|
146687
146793
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
146688
|
-
* for
|
|
146689
|
-
* lifecycle hooks will fail
|
|
146794
|
+
* for backward compatibility. There is no validation of this field and
|
|
146795
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
146690
146796
|
*/
|
|
146691
146797
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePreStopTcpSocket {
|
|
146692
146798
|
/**
|
|
@@ -146702,8 +146808,8 @@ export declare namespace postgresql {
|
|
|
146702
146808
|
}
|
|
146703
146809
|
/**
|
|
146704
146810
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
146705
|
-
* for
|
|
146706
|
-
* lifecycle hooks will fail
|
|
146811
|
+
* for backward compatibility. There is no validation of this field and
|
|
146812
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
146707
146813
|
*/
|
|
146708
146814
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePreStopTcpSocketPatch {
|
|
146709
146815
|
/**
|
|
@@ -146769,7 +146875,7 @@ export declare namespace postgresql {
|
|
|
146769
146875
|
timeoutSeconds: number;
|
|
146770
146876
|
}
|
|
146771
146877
|
/**
|
|
146772
|
-
* Exec specifies
|
|
146878
|
+
* Exec specifies a command to execute in the container.
|
|
146773
146879
|
*/
|
|
146774
146880
|
interface PoolerSpecTemplateSpecInitContainersLivenessProbeExec {
|
|
146775
146881
|
/**
|
|
@@ -146782,7 +146888,7 @@ export declare namespace postgresql {
|
|
|
146782
146888
|
command: string[];
|
|
146783
146889
|
}
|
|
146784
146890
|
/**
|
|
146785
|
-
* Exec specifies
|
|
146891
|
+
* Exec specifies a command to execute in the container.
|
|
146786
146892
|
*/
|
|
146787
146893
|
interface PoolerSpecTemplateSpecInitContainersLivenessProbeExecPatch {
|
|
146788
146894
|
/**
|
|
@@ -146795,7 +146901,7 @@ export declare namespace postgresql {
|
|
|
146795
146901
|
command: string[];
|
|
146796
146902
|
}
|
|
146797
146903
|
/**
|
|
146798
|
-
* GRPC specifies
|
|
146904
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
146799
146905
|
*/
|
|
146800
146906
|
interface PoolerSpecTemplateSpecInitContainersLivenessProbeGrpc {
|
|
146801
146907
|
/**
|
|
@@ -146811,7 +146917,7 @@ export declare namespace postgresql {
|
|
|
146811
146917
|
service: string;
|
|
146812
146918
|
}
|
|
146813
146919
|
/**
|
|
146814
|
-
* GRPC specifies
|
|
146920
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
146815
146921
|
*/
|
|
146816
146922
|
interface PoolerSpecTemplateSpecInitContainersLivenessProbeGrpcPatch {
|
|
146817
146923
|
/**
|
|
@@ -146827,7 +146933,7 @@ export declare namespace postgresql {
|
|
|
146827
146933
|
service: string;
|
|
146828
146934
|
}
|
|
146829
146935
|
/**
|
|
146830
|
-
* HTTPGet specifies
|
|
146936
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
146831
146937
|
*/
|
|
146832
146938
|
interface PoolerSpecTemplateSpecInitContainersLivenessProbeHttpGet {
|
|
146833
146939
|
/**
|
|
@@ -146884,7 +146990,7 @@ export declare namespace postgresql {
|
|
|
146884
146990
|
value: string;
|
|
146885
146991
|
}
|
|
146886
146992
|
/**
|
|
146887
|
-
* HTTPGet specifies
|
|
146993
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
146888
146994
|
*/
|
|
146889
146995
|
interface PoolerSpecTemplateSpecInitContainersLivenessProbeHttpGetPatch {
|
|
146890
146996
|
/**
|
|
@@ -146964,7 +147070,7 @@ export declare namespace postgresql {
|
|
|
146964
147070
|
timeoutSeconds: number;
|
|
146965
147071
|
}
|
|
146966
147072
|
/**
|
|
146967
|
-
* TCPSocket specifies
|
|
147073
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
146968
147074
|
*/
|
|
146969
147075
|
interface PoolerSpecTemplateSpecInitContainersLivenessProbeTcpSocket {
|
|
146970
147076
|
/**
|
|
@@ -146979,7 +147085,7 @@ export declare namespace postgresql {
|
|
|
146979
147085
|
port: number | string;
|
|
146980
147086
|
}
|
|
146981
147087
|
/**
|
|
146982
|
-
* TCPSocket specifies
|
|
147088
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
146983
147089
|
*/
|
|
146984
147090
|
interface PoolerSpecTemplateSpecInitContainersLivenessProbeTcpSocketPatch {
|
|
146985
147091
|
/**
|
|
@@ -147266,7 +147372,7 @@ export declare namespace postgresql {
|
|
|
147266
147372
|
timeoutSeconds: number;
|
|
147267
147373
|
}
|
|
147268
147374
|
/**
|
|
147269
|
-
* Exec specifies
|
|
147375
|
+
* Exec specifies a command to execute in the container.
|
|
147270
147376
|
*/
|
|
147271
147377
|
interface PoolerSpecTemplateSpecInitContainersReadinessProbeExec {
|
|
147272
147378
|
/**
|
|
@@ -147279,7 +147385,7 @@ export declare namespace postgresql {
|
|
|
147279
147385
|
command: string[];
|
|
147280
147386
|
}
|
|
147281
147387
|
/**
|
|
147282
|
-
* Exec specifies
|
|
147388
|
+
* Exec specifies a command to execute in the container.
|
|
147283
147389
|
*/
|
|
147284
147390
|
interface PoolerSpecTemplateSpecInitContainersReadinessProbeExecPatch {
|
|
147285
147391
|
/**
|
|
@@ -147292,7 +147398,7 @@ export declare namespace postgresql {
|
|
|
147292
147398
|
command: string[];
|
|
147293
147399
|
}
|
|
147294
147400
|
/**
|
|
147295
|
-
* GRPC specifies
|
|
147401
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
147296
147402
|
*/
|
|
147297
147403
|
interface PoolerSpecTemplateSpecInitContainersReadinessProbeGrpc {
|
|
147298
147404
|
/**
|
|
@@ -147308,7 +147414,7 @@ export declare namespace postgresql {
|
|
|
147308
147414
|
service: string;
|
|
147309
147415
|
}
|
|
147310
147416
|
/**
|
|
147311
|
-
* GRPC specifies
|
|
147417
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
147312
147418
|
*/
|
|
147313
147419
|
interface PoolerSpecTemplateSpecInitContainersReadinessProbeGrpcPatch {
|
|
147314
147420
|
/**
|
|
@@ -147324,7 +147430,7 @@ export declare namespace postgresql {
|
|
|
147324
147430
|
service: string;
|
|
147325
147431
|
}
|
|
147326
147432
|
/**
|
|
147327
|
-
* HTTPGet specifies
|
|
147433
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
147328
147434
|
*/
|
|
147329
147435
|
interface PoolerSpecTemplateSpecInitContainersReadinessProbeHttpGet {
|
|
147330
147436
|
/**
|
|
@@ -147381,7 +147487,7 @@ export declare namespace postgresql {
|
|
|
147381
147487
|
value: string;
|
|
147382
147488
|
}
|
|
147383
147489
|
/**
|
|
147384
|
-
* HTTPGet specifies
|
|
147490
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
147385
147491
|
*/
|
|
147386
147492
|
interface PoolerSpecTemplateSpecInitContainersReadinessProbeHttpGetPatch {
|
|
147387
147493
|
/**
|
|
@@ -147461,7 +147567,7 @@ export declare namespace postgresql {
|
|
|
147461
147567
|
timeoutSeconds: number;
|
|
147462
147568
|
}
|
|
147463
147569
|
/**
|
|
147464
|
-
* TCPSocket specifies
|
|
147570
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
147465
147571
|
*/
|
|
147466
147572
|
interface PoolerSpecTemplateSpecInitContainersReadinessProbeTcpSocket {
|
|
147467
147573
|
/**
|
|
@@ -147476,7 +147582,7 @@ export declare namespace postgresql {
|
|
|
147476
147582
|
port: number | string;
|
|
147477
147583
|
}
|
|
147478
147584
|
/**
|
|
147479
|
-
* TCPSocket specifies
|
|
147585
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
147480
147586
|
*/
|
|
147481
147587
|
interface PoolerSpecTemplateSpecInitContainersReadinessProbeTcpSocketPatch {
|
|
147482
147588
|
/**
|
|
@@ -148047,7 +148153,7 @@ export declare namespace postgresql {
|
|
|
148047
148153
|
timeoutSeconds: number;
|
|
148048
148154
|
}
|
|
148049
148155
|
/**
|
|
148050
|
-
* Exec specifies
|
|
148156
|
+
* Exec specifies a command to execute in the container.
|
|
148051
148157
|
*/
|
|
148052
148158
|
interface PoolerSpecTemplateSpecInitContainersStartupProbeExec {
|
|
148053
148159
|
/**
|
|
@@ -148060,7 +148166,7 @@ export declare namespace postgresql {
|
|
|
148060
148166
|
command: string[];
|
|
148061
148167
|
}
|
|
148062
148168
|
/**
|
|
148063
|
-
* Exec specifies
|
|
148169
|
+
* Exec specifies a command to execute in the container.
|
|
148064
148170
|
*/
|
|
148065
148171
|
interface PoolerSpecTemplateSpecInitContainersStartupProbeExecPatch {
|
|
148066
148172
|
/**
|
|
@@ -148073,7 +148179,7 @@ export declare namespace postgresql {
|
|
|
148073
148179
|
command: string[];
|
|
148074
148180
|
}
|
|
148075
148181
|
/**
|
|
148076
|
-
* GRPC specifies
|
|
148182
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
148077
148183
|
*/
|
|
148078
148184
|
interface PoolerSpecTemplateSpecInitContainersStartupProbeGrpc {
|
|
148079
148185
|
/**
|
|
@@ -148089,7 +148195,7 @@ export declare namespace postgresql {
|
|
|
148089
148195
|
service: string;
|
|
148090
148196
|
}
|
|
148091
148197
|
/**
|
|
148092
|
-
* GRPC specifies
|
|
148198
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
148093
148199
|
*/
|
|
148094
148200
|
interface PoolerSpecTemplateSpecInitContainersStartupProbeGrpcPatch {
|
|
148095
148201
|
/**
|
|
@@ -148105,7 +148211,7 @@ export declare namespace postgresql {
|
|
|
148105
148211
|
service: string;
|
|
148106
148212
|
}
|
|
148107
148213
|
/**
|
|
148108
|
-
* HTTPGet specifies
|
|
148214
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
148109
148215
|
*/
|
|
148110
148216
|
interface PoolerSpecTemplateSpecInitContainersStartupProbeHttpGet {
|
|
148111
148217
|
/**
|
|
@@ -148162,7 +148268,7 @@ export declare namespace postgresql {
|
|
|
148162
148268
|
value: string;
|
|
148163
148269
|
}
|
|
148164
148270
|
/**
|
|
148165
|
-
* HTTPGet specifies
|
|
148271
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
148166
148272
|
*/
|
|
148167
148273
|
interface PoolerSpecTemplateSpecInitContainersStartupProbeHttpGetPatch {
|
|
148168
148274
|
/**
|
|
@@ -148245,7 +148351,7 @@ export declare namespace postgresql {
|
|
|
148245
148351
|
timeoutSeconds: number;
|
|
148246
148352
|
}
|
|
148247
148353
|
/**
|
|
148248
|
-
* TCPSocket specifies
|
|
148354
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
148249
148355
|
*/
|
|
148250
148356
|
interface PoolerSpecTemplateSpecInitContainersStartupProbeTcpSocket {
|
|
148251
148357
|
/**
|
|
@@ -148260,7 +148366,7 @@ export declare namespace postgresql {
|
|
|
148260
148366
|
port: number | string;
|
|
148261
148367
|
}
|
|
148262
148368
|
/**
|
|
148263
|
-
* TCPSocket specifies
|
|
148369
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
148264
148370
|
*/
|
|
148265
148371
|
interface PoolerSpecTemplateSpecInitContainersStartupProbeTcpSocketPatch {
|
|
148266
148372
|
/**
|
|
@@ -148679,6 +148785,7 @@ export declare namespace postgresql {
|
|
|
148679
148785
|
* This field is immutable.
|
|
148680
148786
|
*/
|
|
148681
148787
|
resourceClaims: outputs.postgresql.v1.PoolerSpecTemplateSpecResourceClaimsPatch[];
|
|
148788
|
+
resources: outputs.postgresql.v1.PoolerSpecTemplateSpecResourcesPatch;
|
|
148682
148789
|
/**
|
|
148683
148790
|
* Restart policy for all containers within the pod.
|
|
148684
148791
|
* One of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted.
|
|
@@ -148866,6 +148973,118 @@ export declare namespace postgresql {
|
|
|
148866
148973
|
*/
|
|
148867
148974
|
resourceClaimTemplateName: string;
|
|
148868
148975
|
}
|
|
148976
|
+
/**
|
|
148977
|
+
* Resources is the total amount of CPU and Memory resources required by all
|
|
148978
|
+
* containers in the pod. It supports specifying Requests and Limits for
|
|
148979
|
+
* "cpu" and "memory" resource names only. ResourceClaims are not supported.
|
|
148980
|
+
*
|
|
148981
|
+
* This field enables fine-grained control over resource allocation for the
|
|
148982
|
+
* entire pod, allowing resource sharing among containers in a pod.
|
|
148983
|
+
*
|
|
148984
|
+
* This is an alpha field and requires enabling the PodLevelResources feature
|
|
148985
|
+
* gate.
|
|
148986
|
+
*/
|
|
148987
|
+
interface PoolerSpecTemplateSpecResources {
|
|
148988
|
+
/**
|
|
148989
|
+
* Claims lists the names of resources, defined in spec.resourceClaims,
|
|
148990
|
+
* that are used by this container.
|
|
148991
|
+
*
|
|
148992
|
+
* This is an alpha field and requires enabling the
|
|
148993
|
+
* DynamicResourceAllocation feature gate.
|
|
148994
|
+
*
|
|
148995
|
+
* This field is immutable. It can only be set for containers.
|
|
148996
|
+
*/
|
|
148997
|
+
claims: outputs.postgresql.v1.PoolerSpecTemplateSpecResourcesClaims[];
|
|
148998
|
+
/**
|
|
148999
|
+
* Limits describes the maximum amount of compute resources allowed.
|
|
149000
|
+
* More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
|
|
149001
|
+
*/
|
|
149002
|
+
limits: {
|
|
149003
|
+
[key: string]: number | string;
|
|
149004
|
+
};
|
|
149005
|
+
/**
|
|
149006
|
+
* Requests describes the minimum amount of compute resources required.
|
|
149007
|
+
* If Requests is omitted for a container, it defaults to Limits if that is explicitly specified,
|
|
149008
|
+
* otherwise to an implementation-defined value. Requests cannot exceed Limits.
|
|
149009
|
+
* More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
|
|
149010
|
+
*/
|
|
149011
|
+
requests: {
|
|
149012
|
+
[key: string]: number | string;
|
|
149013
|
+
};
|
|
149014
|
+
}
|
|
149015
|
+
/**
|
|
149016
|
+
* ResourceClaim references one entry in PodSpec.ResourceClaims.
|
|
149017
|
+
*/
|
|
149018
|
+
interface PoolerSpecTemplateSpecResourcesClaims {
|
|
149019
|
+
/**
|
|
149020
|
+
* Name must match the name of one entry in pod.spec.resourceClaims of
|
|
149021
|
+
* the Pod where this field is used. It makes that resource available
|
|
149022
|
+
* inside a container.
|
|
149023
|
+
*/
|
|
149024
|
+
name: string;
|
|
149025
|
+
/**
|
|
149026
|
+
* Request is the name chosen for a request in the referenced claim.
|
|
149027
|
+
* If empty, everything from the claim is made available, otherwise
|
|
149028
|
+
* only the result of this request.
|
|
149029
|
+
*/
|
|
149030
|
+
request: string;
|
|
149031
|
+
}
|
|
149032
|
+
/**
|
|
149033
|
+
* ResourceClaim references one entry in PodSpec.ResourceClaims.
|
|
149034
|
+
*/
|
|
149035
|
+
interface PoolerSpecTemplateSpecResourcesClaimsPatch {
|
|
149036
|
+
/**
|
|
149037
|
+
* Name must match the name of one entry in pod.spec.resourceClaims of
|
|
149038
|
+
* the Pod where this field is used. It makes that resource available
|
|
149039
|
+
* inside a container.
|
|
149040
|
+
*/
|
|
149041
|
+
name: string;
|
|
149042
|
+
/**
|
|
149043
|
+
* Request is the name chosen for a request in the referenced claim.
|
|
149044
|
+
* If empty, everything from the claim is made available, otherwise
|
|
149045
|
+
* only the result of this request.
|
|
149046
|
+
*/
|
|
149047
|
+
request: string;
|
|
149048
|
+
}
|
|
149049
|
+
/**
|
|
149050
|
+
* Resources is the total amount of CPU and Memory resources required by all
|
|
149051
|
+
* containers in the pod. It supports specifying Requests and Limits for
|
|
149052
|
+
* "cpu" and "memory" resource names only. ResourceClaims are not supported.
|
|
149053
|
+
*
|
|
149054
|
+
* This field enables fine-grained control over resource allocation for the
|
|
149055
|
+
* entire pod, allowing resource sharing among containers in a pod.
|
|
149056
|
+
*
|
|
149057
|
+
* This is an alpha field and requires enabling the PodLevelResources feature
|
|
149058
|
+
* gate.
|
|
149059
|
+
*/
|
|
149060
|
+
interface PoolerSpecTemplateSpecResourcesPatch {
|
|
149061
|
+
/**
|
|
149062
|
+
* Claims lists the names of resources, defined in spec.resourceClaims,
|
|
149063
|
+
* that are used by this container.
|
|
149064
|
+
*
|
|
149065
|
+
* This is an alpha field and requires enabling the
|
|
149066
|
+
* DynamicResourceAllocation feature gate.
|
|
149067
|
+
*
|
|
149068
|
+
* This field is immutable. It can only be set for containers.
|
|
149069
|
+
*/
|
|
149070
|
+
claims: outputs.postgresql.v1.PoolerSpecTemplateSpecResourcesClaimsPatch[];
|
|
149071
|
+
/**
|
|
149072
|
+
* Limits describes the maximum amount of compute resources allowed.
|
|
149073
|
+
* More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
|
|
149074
|
+
*/
|
|
149075
|
+
limits: {
|
|
149076
|
+
[key: string]: number | string;
|
|
149077
|
+
};
|
|
149078
|
+
/**
|
|
149079
|
+
* Requests describes the minimum amount of compute resources required.
|
|
149080
|
+
* If Requests is omitted for a container, it defaults to Limits if that is explicitly specified,
|
|
149081
|
+
* otherwise to an implementation-defined value. Requests cannot exceed Limits.
|
|
149082
|
+
* More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
|
|
149083
|
+
*/
|
|
149084
|
+
requests: {
|
|
149085
|
+
[key: string]: number | string;
|
|
149086
|
+
};
|
|
149087
|
+
}
|
|
148869
149088
|
/**
|
|
148870
149089
|
* PodSchedulingGate is associated to a Pod to guard its scheduling.
|
|
148871
149090
|
*/
|
|
@@ -148942,6 +149161,32 @@ export declare namespace postgresql {
|
|
|
148942
149161
|
* Note that this field cannot be set when spec.os.name is windows.
|
|
148943
149162
|
*/
|
|
148944
149163
|
runAsUser: number;
|
|
149164
|
+
/**
|
|
149165
|
+
* seLinuxChangePolicy defines how the container's SELinux label is applied to all volumes used by the Pod.
|
|
149166
|
+
* It has no effect on nodes that do not support SELinux or to volumes does not support SELinux.
|
|
149167
|
+
* Valid values are "MountOption" and "Recursive".
|
|
149168
|
+
*
|
|
149169
|
+
* "Recursive" means relabeling of all files on all Pod volumes by the container runtime.
|
|
149170
|
+
* This may be slow for large volumes, but allows mixing privileged and unprivileged Pods sharing the same volume on the same node.
|
|
149171
|
+
*
|
|
149172
|
+
* "MountOption" mounts all eligible Pod volumes with `-o context` mount option.
|
|
149173
|
+
* This requires all Pods that share the same volume to use the same SELinux label.
|
|
149174
|
+
* It is not possible to share the same volume among privileged and unprivileged Pods.
|
|
149175
|
+
* Eligible volumes are in-tree FibreChannel and iSCSI volumes, and all CSI volumes
|
|
149176
|
+
* whose CSI driver announces SELinux support by setting spec.seLinuxMount: true in their
|
|
149177
|
+
* CSIDriver instance. Other volumes are always re-labelled recursively.
|
|
149178
|
+
* "MountOption" value is allowed only when SELinuxMount feature gate is enabled.
|
|
149179
|
+
*
|
|
149180
|
+
* If not specified and SELinuxMount feature gate is enabled, "MountOption" is used.
|
|
149181
|
+
* If not specified and SELinuxMount feature gate is disabled, "MountOption" is used for ReadWriteOncePod volumes
|
|
149182
|
+
* and "Recursive" for all other volumes.
|
|
149183
|
+
*
|
|
149184
|
+
* This field affects only Pods that have SELinux label set, either in PodSecurityContext or in SecurityContext of all containers.
|
|
149185
|
+
*
|
|
149186
|
+
* All Pods that use the same volume should use the same seLinuxChangePolicy, otherwise some pods can get stuck in ContainerCreating state.
|
|
149187
|
+
* Note that this field cannot be set when spec.os.name is windows.
|
|
149188
|
+
*/
|
|
149189
|
+
seLinuxChangePolicy: string;
|
|
148945
149190
|
seLinuxOptions: outputs.postgresql.v1.PoolerSpecTemplateSpecSecurityContextSeLinuxOptions;
|
|
148946
149191
|
seccompProfile: outputs.postgresql.v1.PoolerSpecTemplateSpecSecurityContextSeccompProfile;
|
|
148947
149192
|
/**
|
|
@@ -149070,6 +149315,32 @@ export declare namespace postgresql {
|
|
|
149070
149315
|
* Note that this field cannot be set when spec.os.name is windows.
|
|
149071
149316
|
*/
|
|
149072
149317
|
runAsUser: number;
|
|
149318
|
+
/**
|
|
149319
|
+
* seLinuxChangePolicy defines how the container's SELinux label is applied to all volumes used by the Pod.
|
|
149320
|
+
* It has no effect on nodes that do not support SELinux or to volumes does not support SELinux.
|
|
149321
|
+
* Valid values are "MountOption" and "Recursive".
|
|
149322
|
+
*
|
|
149323
|
+
* "Recursive" means relabeling of all files on all Pod volumes by the container runtime.
|
|
149324
|
+
* This may be slow for large volumes, but allows mixing privileged and unprivileged Pods sharing the same volume on the same node.
|
|
149325
|
+
*
|
|
149326
|
+
* "MountOption" mounts all eligible Pod volumes with `-o context` mount option.
|
|
149327
|
+
* This requires all Pods that share the same volume to use the same SELinux label.
|
|
149328
|
+
* It is not possible to share the same volume among privileged and unprivileged Pods.
|
|
149329
|
+
* Eligible volumes are in-tree FibreChannel and iSCSI volumes, and all CSI volumes
|
|
149330
|
+
* whose CSI driver announces SELinux support by setting spec.seLinuxMount: true in their
|
|
149331
|
+
* CSIDriver instance. Other volumes are always re-labelled recursively.
|
|
149332
|
+
* "MountOption" value is allowed only when SELinuxMount feature gate is enabled.
|
|
149333
|
+
*
|
|
149334
|
+
* If not specified and SELinuxMount feature gate is enabled, "MountOption" is used.
|
|
149335
|
+
* If not specified and SELinuxMount feature gate is disabled, "MountOption" is used for ReadWriteOncePod volumes
|
|
149336
|
+
* and "Recursive" for all other volumes.
|
|
149337
|
+
*
|
|
149338
|
+
* This field affects only Pods that have SELinux label set, either in PodSecurityContext or in SecurityContext of all containers.
|
|
149339
|
+
*
|
|
149340
|
+
* All Pods that use the same volume should use the same seLinuxChangePolicy, otherwise some pods can get stuck in ContainerCreating state.
|
|
149341
|
+
* Note that this field cannot be set when spec.os.name is windows.
|
|
149342
|
+
*/
|
|
149343
|
+
seLinuxChangePolicy: string;
|
|
149073
149344
|
seLinuxOptions: outputs.postgresql.v1.PoolerSpecTemplateSpecSecurityContextSeLinuxOptionsPatch;
|
|
149074
149345
|
seccompProfile: outputs.postgresql.v1.PoolerSpecTemplateSpecSecurityContextSeccompProfilePatch;
|
|
149075
149346
|
/**
|
|
@@ -149714,6 +149985,8 @@ export declare namespace postgresql {
|
|
|
149714
149985
|
/**
|
|
149715
149986
|
* awsElasticBlockStore represents an AWS Disk resource that is attached to a
|
|
149716
149987
|
* kubelet's host machine and then exposed to the pod.
|
|
149988
|
+
* Deprecated: AWSElasticBlockStore is deprecated. All operations for the in-tree
|
|
149989
|
+
* awsElasticBlockStore type are redirected to the ebs.csi.aws.com CSI driver.
|
|
149717
149990
|
* More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
|
|
149718
149991
|
*/
|
|
149719
149992
|
interface PoolerSpecTemplateSpecVolumesAwsElasticBlockStore {
|
|
@@ -149745,6 +150018,8 @@ export declare namespace postgresql {
|
|
|
149745
150018
|
/**
|
|
149746
150019
|
* awsElasticBlockStore represents an AWS Disk resource that is attached to a
|
|
149747
150020
|
* kubelet's host machine and then exposed to the pod.
|
|
150021
|
+
* Deprecated: AWSElasticBlockStore is deprecated. All operations for the in-tree
|
|
150022
|
+
* awsElasticBlockStore type are redirected to the ebs.csi.aws.com CSI driver.
|
|
149748
150023
|
* More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
|
|
149749
150024
|
*/
|
|
149750
150025
|
interface PoolerSpecTemplateSpecVolumesAwsElasticBlockStorePatch {
|
|
@@ -149775,6 +150050,8 @@ export declare namespace postgresql {
|
|
|
149775
150050
|
}
|
|
149776
150051
|
/**
|
|
149777
150052
|
* azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
|
150053
|
+
* Deprecated: AzureDisk is deprecated. All operations for the in-tree azureDisk type
|
|
150054
|
+
* are redirected to the disk.csi.azure.com CSI driver.
|
|
149778
150055
|
*/
|
|
149779
150056
|
interface PoolerSpecTemplateSpecVolumesAzureDisk {
|
|
149780
150057
|
/**
|
|
@@ -149807,6 +150084,8 @@ export declare namespace postgresql {
|
|
|
149807
150084
|
}
|
|
149808
150085
|
/**
|
|
149809
150086
|
* azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
|
150087
|
+
* Deprecated: AzureDisk is deprecated. All operations for the in-tree azureDisk type
|
|
150088
|
+
* are redirected to the disk.csi.azure.com CSI driver.
|
|
149810
150089
|
*/
|
|
149811
150090
|
interface PoolerSpecTemplateSpecVolumesAzureDiskPatch {
|
|
149812
150091
|
/**
|
|
@@ -149839,6 +150118,8 @@ export declare namespace postgresql {
|
|
|
149839
150118
|
}
|
|
149840
150119
|
/**
|
|
149841
150120
|
* azureFile represents an Azure File Service mount on the host and bind mount to the pod.
|
|
150121
|
+
* Deprecated: AzureFile is deprecated. All operations for the in-tree azureFile type
|
|
150122
|
+
* are redirected to the file.csi.azure.com CSI driver.
|
|
149842
150123
|
*/
|
|
149843
150124
|
interface PoolerSpecTemplateSpecVolumesAzureFile {
|
|
149844
150125
|
/**
|
|
@@ -149857,6 +150138,8 @@ export declare namespace postgresql {
|
|
|
149857
150138
|
}
|
|
149858
150139
|
/**
|
|
149859
150140
|
* azureFile represents an Azure File Service mount on the host and bind mount to the pod.
|
|
150141
|
+
* Deprecated: AzureFile is deprecated. All operations for the in-tree azureFile type
|
|
150142
|
+
* are redirected to the file.csi.azure.com CSI driver.
|
|
149860
150143
|
*/
|
|
149861
150144
|
interface PoolerSpecTemplateSpecVolumesAzureFilePatch {
|
|
149862
150145
|
/**
|
|
@@ -149874,7 +150157,8 @@ export declare namespace postgresql {
|
|
|
149874
150157
|
shareName: string;
|
|
149875
150158
|
}
|
|
149876
150159
|
/**
|
|
149877
|
-
* cephFS represents a Ceph FS mount on the host that shares a pod's lifetime
|
|
150160
|
+
* cephFS represents a Ceph FS mount on the host that shares a pod's lifetime.
|
|
150161
|
+
* Deprecated: CephFS is deprecated and the in-tree cephfs type is no longer supported.
|
|
149878
150162
|
*/
|
|
149879
150163
|
interface PoolerSpecTemplateSpecVolumesCephfs {
|
|
149880
150164
|
/**
|
|
@@ -149905,7 +150189,8 @@ export declare namespace postgresql {
|
|
|
149905
150189
|
user: string;
|
|
149906
150190
|
}
|
|
149907
150191
|
/**
|
|
149908
|
-
* cephFS represents a Ceph FS mount on the host that shares a pod's lifetime
|
|
150192
|
+
* cephFS represents a Ceph FS mount on the host that shares a pod's lifetime.
|
|
150193
|
+
* Deprecated: CephFS is deprecated and the in-tree cephfs type is no longer supported.
|
|
149909
150194
|
*/
|
|
149910
150195
|
interface PoolerSpecTemplateSpecVolumesCephfsPatch {
|
|
149911
150196
|
/**
|
|
@@ -149965,6 +150250,8 @@ export declare namespace postgresql {
|
|
|
149965
150250
|
}
|
|
149966
150251
|
/**
|
|
149967
150252
|
* cinder represents a cinder volume attached and mounted on kubelets host machine.
|
|
150253
|
+
* Deprecated: Cinder is deprecated. All operations for the in-tree cinder type
|
|
150254
|
+
* are redirected to the cinder.csi.openstack.org CSI driver.
|
|
149968
150255
|
* More info: https://examples.k8s.io/mysql-cinder-pd/README.md
|
|
149969
150256
|
*/
|
|
149970
150257
|
interface PoolerSpecTemplateSpecVolumesCinder {
|
|
@@ -149990,6 +150277,8 @@ export declare namespace postgresql {
|
|
|
149990
150277
|
}
|
|
149991
150278
|
/**
|
|
149992
150279
|
* cinder represents a cinder volume attached and mounted on kubelets host machine.
|
|
150280
|
+
* Deprecated: Cinder is deprecated. All operations for the in-tree cinder type
|
|
150281
|
+
* are redirected to the cinder.csi.openstack.org CSI driver.
|
|
149993
150282
|
* More info: https://examples.k8s.io/mysql-cinder-pd/README.md
|
|
149994
150283
|
*/
|
|
149995
150284
|
interface PoolerSpecTemplateSpecVolumesCinderPatch {
|
|
@@ -150166,7 +150455,7 @@ export declare namespace postgresql {
|
|
|
150166
150455
|
optional: boolean;
|
|
150167
150456
|
}
|
|
150168
150457
|
/**
|
|
150169
|
-
* csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers
|
|
150458
|
+
* csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers.
|
|
150170
150459
|
*/
|
|
150171
150460
|
interface PoolerSpecTemplateSpecVolumesCsi {
|
|
150172
150461
|
/**
|
|
@@ -150229,7 +150518,7 @@ export declare namespace postgresql {
|
|
|
150229
150518
|
name: string;
|
|
150230
150519
|
}
|
|
150231
150520
|
/**
|
|
150232
|
-
* csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers
|
|
150521
|
+
* csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers.
|
|
150233
150522
|
*/
|
|
150234
150523
|
interface PoolerSpecTemplateSpecVolumesCsiPatch {
|
|
150235
150524
|
/**
|
|
@@ -150996,6 +151285,7 @@ export declare namespace postgresql {
|
|
|
150996
151285
|
/**
|
|
150997
151286
|
* flexVolume represents a generic volume resource that is
|
|
150998
151287
|
* provisioned/attached using an exec based plugin.
|
|
151288
|
+
* Deprecated: FlexVolume is deprecated. Consider using a CSIDriver instead.
|
|
150999
151289
|
*/
|
|
151000
151290
|
interface PoolerSpecTemplateSpecVolumesFlexVolume {
|
|
151001
151291
|
/**
|
|
@@ -151024,6 +151314,7 @@ export declare namespace postgresql {
|
|
|
151024
151314
|
/**
|
|
151025
151315
|
* flexVolume represents a generic volume resource that is
|
|
151026
151316
|
* provisioned/attached using an exec based plugin.
|
|
151317
|
+
* Deprecated: FlexVolume is deprecated. Consider using a CSIDriver instead.
|
|
151027
151318
|
*/
|
|
151028
151319
|
interface PoolerSpecTemplateSpecVolumesFlexVolumePatch {
|
|
151029
151320
|
/**
|
|
@@ -151084,7 +151375,8 @@ export declare namespace postgresql {
|
|
|
151084
151375
|
name: string;
|
|
151085
151376
|
}
|
|
151086
151377
|
/**
|
|
151087
|
-
* flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running
|
|
151378
|
+
* flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running.
|
|
151379
|
+
* Deprecated: Flocker is deprecated and the in-tree flocker type is no longer supported.
|
|
151088
151380
|
*/
|
|
151089
151381
|
interface PoolerSpecTemplateSpecVolumesFlocker {
|
|
151090
151382
|
/**
|
|
@@ -151098,7 +151390,8 @@ export declare namespace postgresql {
|
|
|
151098
151390
|
datasetUUID: string;
|
|
151099
151391
|
}
|
|
151100
151392
|
/**
|
|
151101
|
-
* flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running
|
|
151393
|
+
* flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running.
|
|
151394
|
+
* Deprecated: Flocker is deprecated and the in-tree flocker type is no longer supported.
|
|
151102
151395
|
*/
|
|
151103
151396
|
interface PoolerSpecTemplateSpecVolumesFlockerPatch {
|
|
151104
151397
|
/**
|
|
@@ -151114,6 +151407,8 @@ export declare namespace postgresql {
|
|
|
151114
151407
|
/**
|
|
151115
151408
|
* gcePersistentDisk represents a GCE Disk resource that is attached to a
|
|
151116
151409
|
* kubelet's host machine and then exposed to the pod.
|
|
151410
|
+
* Deprecated: GCEPersistentDisk is deprecated. All operations for the in-tree
|
|
151411
|
+
* gcePersistentDisk type are redirected to the pd.csi.storage.gke.io CSI driver.
|
|
151117
151412
|
* More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
|
|
151118
151413
|
*/
|
|
151119
151414
|
interface PoolerSpecTemplateSpecVolumesGcePersistentDisk {
|
|
@@ -151147,6 +151442,8 @@ export declare namespace postgresql {
|
|
|
151147
151442
|
/**
|
|
151148
151443
|
* gcePersistentDisk represents a GCE Disk resource that is attached to a
|
|
151149
151444
|
* kubelet's host machine and then exposed to the pod.
|
|
151445
|
+
* Deprecated: GCEPersistentDisk is deprecated. All operations for the in-tree
|
|
151446
|
+
* gcePersistentDisk type are redirected to the pd.csi.storage.gke.io CSI driver.
|
|
151150
151447
|
* More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
|
|
151151
151448
|
*/
|
|
151152
151449
|
interface PoolerSpecTemplateSpecVolumesGcePersistentDiskPatch {
|
|
@@ -151179,7 +151476,7 @@ export declare namespace postgresql {
|
|
|
151179
151476
|
}
|
|
151180
151477
|
/**
|
|
151181
151478
|
* gitRepo represents a git repository at a particular revision.
|
|
151182
|
-
*
|
|
151479
|
+
* Deprecated: GitRepo is deprecated. To provision a container with a git repo, mount an
|
|
151183
151480
|
* EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir
|
|
151184
151481
|
* into the Pod's container.
|
|
151185
151482
|
*/
|
|
@@ -151202,7 +151499,7 @@ export declare namespace postgresql {
|
|
|
151202
151499
|
}
|
|
151203
151500
|
/**
|
|
151204
151501
|
* gitRepo represents a git repository at a particular revision.
|
|
151205
|
-
*
|
|
151502
|
+
* Deprecated: GitRepo is deprecated. To provision a container with a git repo, mount an
|
|
151206
151503
|
* EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir
|
|
151207
151504
|
* into the Pod's container.
|
|
151208
151505
|
*/
|
|
@@ -151225,6 +151522,7 @@ export declare namespace postgresql {
|
|
|
151225
151522
|
}
|
|
151226
151523
|
/**
|
|
151227
151524
|
* glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.
|
|
151525
|
+
* Deprecated: Glusterfs is deprecated and the in-tree glusterfs type is no longer supported.
|
|
151228
151526
|
* More info: https://examples.k8s.io/volumes/glusterfs/README.md
|
|
151229
151527
|
*/
|
|
151230
151528
|
interface PoolerSpecTemplateSpecVolumesGlusterfs {
|
|
@@ -151247,6 +151545,7 @@ export declare namespace postgresql {
|
|
|
151247
151545
|
}
|
|
151248
151546
|
/**
|
|
151249
151547
|
* glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.
|
|
151548
|
+
* Deprecated: Glusterfs is deprecated and the in-tree glusterfs type is no longer supported.
|
|
151250
151549
|
* More info: https://examples.k8s.io/volumes/glusterfs/README.md
|
|
151251
151550
|
*/
|
|
151252
151551
|
interface PoolerSpecTemplateSpecVolumesGlusterfsPatch {
|
|
@@ -151639,7 +151938,8 @@ export declare namespace postgresql {
|
|
|
151639
151938
|
readOnly: boolean;
|
|
151640
151939
|
}
|
|
151641
151940
|
/**
|
|
151642
|
-
* photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
|
151941
|
+
* photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine.
|
|
151942
|
+
* Deprecated: PhotonPersistentDisk is deprecated and the in-tree photonPersistentDisk type is no longer supported.
|
|
151643
151943
|
*/
|
|
151644
151944
|
interface PoolerSpecTemplateSpecVolumesPhotonPersistentDisk {
|
|
151645
151945
|
/**
|
|
@@ -151654,7 +151954,8 @@ export declare namespace postgresql {
|
|
|
151654
151954
|
pdID: string;
|
|
151655
151955
|
}
|
|
151656
151956
|
/**
|
|
151657
|
-
* photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
|
151957
|
+
* photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine.
|
|
151958
|
+
* Deprecated: PhotonPersistentDisk is deprecated and the in-tree photonPersistentDisk type is no longer supported.
|
|
151658
151959
|
*/
|
|
151659
151960
|
interface PoolerSpecTemplateSpecVolumesPhotonPersistentDiskPatch {
|
|
151660
151961
|
/**
|
|
@@ -151669,7 +151970,10 @@ export declare namespace postgresql {
|
|
|
151669
151970
|
pdID: string;
|
|
151670
151971
|
}
|
|
151671
151972
|
/**
|
|
151672
|
-
* portworxVolume represents a portworx volume attached and mounted on kubelets host machine
|
|
151973
|
+
* portworxVolume represents a portworx volume attached and mounted on kubelets host machine.
|
|
151974
|
+
* Deprecated: PortworxVolume is deprecated. All operations for the in-tree portworxVolume type
|
|
151975
|
+
* are redirected to the pxd.portworx.com CSI driver when the CSIMigrationPortworx feature-gate
|
|
151976
|
+
* is on.
|
|
151673
151977
|
*/
|
|
151674
151978
|
interface PoolerSpecTemplateSpecVolumesPortworxVolume {
|
|
151675
151979
|
/**
|
|
@@ -151689,7 +151993,10 @@ export declare namespace postgresql {
|
|
|
151689
151993
|
volumeID: string;
|
|
151690
151994
|
}
|
|
151691
151995
|
/**
|
|
151692
|
-
* portworxVolume represents a portworx volume attached and mounted on kubelets host machine
|
|
151996
|
+
* portworxVolume represents a portworx volume attached and mounted on kubelets host machine.
|
|
151997
|
+
* Deprecated: PortworxVolume is deprecated. All operations for the in-tree portworxVolume type
|
|
151998
|
+
* are redirected to the pxd.portworx.com CSI driver when the CSIMigrationPortworx feature-gate
|
|
151999
|
+
* is on.
|
|
151693
152000
|
*/
|
|
151694
152001
|
interface PoolerSpecTemplateSpecVolumesPortworxVolumePatch {
|
|
151695
152002
|
/**
|
|
@@ -152315,7 +152622,8 @@ export declare namespace postgresql {
|
|
|
152315
152622
|
path: string;
|
|
152316
152623
|
}
|
|
152317
152624
|
/**
|
|
152318
|
-
* quobyte represents a Quobyte mount on the host that shares a pod's lifetime
|
|
152625
|
+
* quobyte represents a Quobyte mount on the host that shares a pod's lifetime.
|
|
152626
|
+
* Deprecated: Quobyte is deprecated and the in-tree quobyte type is no longer supported.
|
|
152319
152627
|
*/
|
|
152320
152628
|
interface PoolerSpecTemplateSpecVolumesQuobyte {
|
|
152321
152629
|
/**
|
|
@@ -152350,7 +152658,8 @@ export declare namespace postgresql {
|
|
|
152350
152658
|
volume: string;
|
|
152351
152659
|
}
|
|
152352
152660
|
/**
|
|
152353
|
-
* quobyte represents a Quobyte mount on the host that shares a pod's lifetime
|
|
152661
|
+
* quobyte represents a Quobyte mount on the host that shares a pod's lifetime.
|
|
152662
|
+
* Deprecated: Quobyte is deprecated and the in-tree quobyte type is no longer supported.
|
|
152354
152663
|
*/
|
|
152355
152664
|
interface PoolerSpecTemplateSpecVolumesQuobytePatch {
|
|
152356
152665
|
/**
|
|
@@ -152386,6 +152695,7 @@ export declare namespace postgresql {
|
|
|
152386
152695
|
}
|
|
152387
152696
|
/**
|
|
152388
152697
|
* rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.
|
|
152698
|
+
* Deprecated: RBD is deprecated and the in-tree rbd type is no longer supported.
|
|
152389
152699
|
* More info: https://examples.k8s.io/volumes/rbd/README.md
|
|
152390
152700
|
*/
|
|
152391
152701
|
interface PoolerSpecTemplateSpecVolumesRbd {
|
|
@@ -152434,6 +152744,7 @@ export declare namespace postgresql {
|
|
|
152434
152744
|
}
|
|
152435
152745
|
/**
|
|
152436
152746
|
* rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.
|
|
152747
|
+
* Deprecated: RBD is deprecated and the in-tree rbd type is no longer supported.
|
|
152437
152748
|
* More info: https://examples.k8s.io/volumes/rbd/README.md
|
|
152438
152749
|
*/
|
|
152439
152750
|
interface PoolerSpecTemplateSpecVolumesRbdPatch {
|
|
@@ -152514,6 +152825,7 @@ export declare namespace postgresql {
|
|
|
152514
152825
|
}
|
|
152515
152826
|
/**
|
|
152516
152827
|
* scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
|
|
152828
|
+
* Deprecated: ScaleIO is deprecated and the in-tree scaleIO type is no longer supported.
|
|
152517
152829
|
*/
|
|
152518
152830
|
interface PoolerSpecTemplateSpecVolumesScaleIO {
|
|
152519
152831
|
/**
|
|
@@ -152562,6 +152874,7 @@ export declare namespace postgresql {
|
|
|
152562
152874
|
}
|
|
152563
152875
|
/**
|
|
152564
152876
|
* scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
|
|
152877
|
+
* Deprecated: ScaleIO is deprecated and the in-tree scaleIO type is no longer supported.
|
|
152565
152878
|
*/
|
|
152566
152879
|
interface PoolerSpecTemplateSpecVolumesScaleIOPatch {
|
|
152567
152880
|
/**
|
|
@@ -152758,6 +153071,7 @@ export declare namespace postgresql {
|
|
|
152758
153071
|
}
|
|
152759
153072
|
/**
|
|
152760
153073
|
* storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.
|
|
153074
|
+
* Deprecated: StorageOS is deprecated and the in-tree storageos type is no longer supported.
|
|
152761
153075
|
*/
|
|
152762
153076
|
interface PoolerSpecTemplateSpecVolumesStorageos {
|
|
152763
153077
|
/**
|
|
@@ -152789,6 +153103,7 @@ export declare namespace postgresql {
|
|
|
152789
153103
|
}
|
|
152790
153104
|
/**
|
|
152791
153105
|
* storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.
|
|
153106
|
+
* Deprecated: StorageOS is deprecated and the in-tree storageos type is no longer supported.
|
|
152792
153107
|
*/
|
|
152793
153108
|
interface PoolerSpecTemplateSpecVolumesStorageosPatch {
|
|
152794
153109
|
/**
|
|
@@ -152847,7 +153162,9 @@ export declare namespace postgresql {
|
|
|
152847
153162
|
name: string;
|
|
152848
153163
|
}
|
|
152849
153164
|
/**
|
|
152850
|
-
* vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
|
|
153165
|
+
* vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine.
|
|
153166
|
+
* Deprecated: VsphereVolume is deprecated. All operations for the in-tree vsphereVolume type
|
|
153167
|
+
* are redirected to the csi.vsphere.vmware.com CSI driver.
|
|
152851
153168
|
*/
|
|
152852
153169
|
interface PoolerSpecTemplateSpecVolumesVsphereVolume {
|
|
152853
153170
|
/**
|
|
@@ -152870,7 +153187,9 @@ export declare namespace postgresql {
|
|
|
152870
153187
|
volumePath: string;
|
|
152871
153188
|
}
|
|
152872
153189
|
/**
|
|
152873
|
-
* vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
|
|
153190
|
+
* vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine.
|
|
153191
|
+
* Deprecated: VsphereVolume is deprecated. All operations for the in-tree vsphereVolume type
|
|
153192
|
+
* are redirected to the csi.vsphere.vmware.com CSI driver.
|
|
152874
153193
|
*/
|
|
152875
153194
|
interface PoolerSpecTemplateSpecVolumesVsphereVolumePatch {
|
|
152876
153195
|
/**
|
|
@@ -153520,7 +153839,7 @@ export declare namespace velero {
|
|
|
153520
153839
|
*/
|
|
153521
153840
|
interface BackupRepositoryStatus {
|
|
153522
153841
|
/**
|
|
153523
|
-
* LastMaintenanceTime is the last time maintenance
|
|
153842
|
+
* LastMaintenanceTime is the last time repo maintenance succeeded.
|
|
153524
153843
|
*/
|
|
153525
153844
|
lastMaintenanceTime: string;
|
|
153526
153845
|
/**
|
|
@@ -153531,13 +153850,17 @@ export declare namespace velero {
|
|
|
153531
153850
|
* Phase is the current state of the BackupRepository.
|
|
153532
153851
|
*/
|
|
153533
153852
|
phase: string;
|
|
153853
|
+
/**
|
|
153854
|
+
* RecentMaintenance is status of the recent repo maintenance.
|
|
153855
|
+
*/
|
|
153856
|
+
recentMaintenance: outputs.velero.v1.BackupRepositoryStatusRecentMaintenance[];
|
|
153534
153857
|
}
|
|
153535
153858
|
/**
|
|
153536
153859
|
* BackupRepositoryStatus is the current status of a BackupRepository.
|
|
153537
153860
|
*/
|
|
153538
153861
|
interface BackupRepositoryStatusPatch {
|
|
153539
153862
|
/**
|
|
153540
|
-
* LastMaintenanceTime is the last time maintenance
|
|
153863
|
+
* LastMaintenanceTime is the last time repo maintenance succeeded.
|
|
153541
153864
|
*/
|
|
153542
153865
|
lastMaintenanceTime: string;
|
|
153543
153866
|
/**
|
|
@@ -153548,6 +153871,46 @@ export declare namespace velero {
|
|
|
153548
153871
|
* Phase is the current state of the BackupRepository.
|
|
153549
153872
|
*/
|
|
153550
153873
|
phase: string;
|
|
153874
|
+
/**
|
|
153875
|
+
* RecentMaintenance is status of the recent repo maintenance.
|
|
153876
|
+
*/
|
|
153877
|
+
recentMaintenance: outputs.velero.v1.BackupRepositoryStatusRecentMaintenancePatch[];
|
|
153878
|
+
}
|
|
153879
|
+
interface BackupRepositoryStatusRecentMaintenance {
|
|
153880
|
+
/**
|
|
153881
|
+
* CompleteTimestamp is the completion time of the repo maintenance.
|
|
153882
|
+
*/
|
|
153883
|
+
completeTimestamp: string;
|
|
153884
|
+
/**
|
|
153885
|
+
* Message is a message about the current status of the repo maintenance.
|
|
153886
|
+
*/
|
|
153887
|
+
message: string;
|
|
153888
|
+
/**
|
|
153889
|
+
* Result is the result of the repo maintenance.
|
|
153890
|
+
*/
|
|
153891
|
+
result: string;
|
|
153892
|
+
/**
|
|
153893
|
+
* StartTimestamp is the start time of the repo maintenance.
|
|
153894
|
+
*/
|
|
153895
|
+
startTimestamp: string;
|
|
153896
|
+
}
|
|
153897
|
+
interface BackupRepositoryStatusRecentMaintenancePatch {
|
|
153898
|
+
/**
|
|
153899
|
+
* CompleteTimestamp is the completion time of the repo maintenance.
|
|
153900
|
+
*/
|
|
153901
|
+
completeTimestamp: string;
|
|
153902
|
+
/**
|
|
153903
|
+
* Message is a message about the current status of the repo maintenance.
|
|
153904
|
+
*/
|
|
153905
|
+
message: string;
|
|
153906
|
+
/**
|
|
153907
|
+
* Result is the result of the repo maintenance.
|
|
153908
|
+
*/
|
|
153909
|
+
result: string;
|
|
153910
|
+
/**
|
|
153911
|
+
* StartTimestamp is the start time of the repo maintenance.
|
|
153912
|
+
*/
|
|
153913
|
+
startTimestamp: string;
|
|
153551
153914
|
}
|
|
153552
153915
|
/**
|
|
153553
153916
|
* BackupSpec defines the specification for a Velero backup.
|