@kilic.dev/pulumi-k8s-crds 1.4.3 → 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 +1 -1
package/dist/types/input.d.ts
CHANGED
|
@@ -85602,6 +85602,32 @@ export declare namespace gateway {
|
|
|
85602
85602
|
* Note that this field cannot be set when spec.os.name is windows.
|
|
85603
85603
|
*/
|
|
85604
85604
|
runAsUser?: pulumi.Input<number>;
|
|
85605
|
+
/**
|
|
85606
|
+
* seLinuxChangePolicy defines how the container's SELinux label is applied to all volumes used by the Pod.
|
|
85607
|
+
* It has no effect on nodes that do not support SELinux or to volumes does not support SELinux.
|
|
85608
|
+
* Valid values are "MountOption" and "Recursive".
|
|
85609
|
+
*
|
|
85610
|
+
* "Recursive" means relabeling of all files on all Pod volumes by the container runtime.
|
|
85611
|
+
* This may be slow for large volumes, but allows mixing privileged and unprivileged Pods sharing the same volume on the same node.
|
|
85612
|
+
*
|
|
85613
|
+
* "MountOption" mounts all eligible Pod volumes with `-o context` mount option.
|
|
85614
|
+
* This requires all Pods that share the same volume to use the same SELinux label.
|
|
85615
|
+
* It is not possible to share the same volume among privileged and unprivileged Pods.
|
|
85616
|
+
* Eligible volumes are in-tree FibreChannel and iSCSI volumes, and all CSI volumes
|
|
85617
|
+
* whose CSI driver announces SELinux support by setting spec.seLinuxMount: true in their
|
|
85618
|
+
* CSIDriver instance. Other volumes are always re-labelled recursively.
|
|
85619
|
+
* "MountOption" value is allowed only when SELinuxMount feature gate is enabled.
|
|
85620
|
+
*
|
|
85621
|
+
* If not specified and SELinuxMount feature gate is enabled, "MountOption" is used.
|
|
85622
|
+
* If not specified and SELinuxMount feature gate is disabled, "MountOption" is used for ReadWriteOncePod volumes
|
|
85623
|
+
* and "Recursive" for all other volumes.
|
|
85624
|
+
*
|
|
85625
|
+
* This field affects only Pods that have SELinux label set, either in PodSecurityContext or in SecurityContext of all containers.
|
|
85626
|
+
*
|
|
85627
|
+
* All Pods that use the same volume should use the same seLinuxChangePolicy, otherwise some pods can get stuck in ContainerCreating state.
|
|
85628
|
+
* Note that this field cannot be set when spec.os.name is windows.
|
|
85629
|
+
*/
|
|
85630
|
+
seLinuxChangePolicy?: pulumi.Input<string>;
|
|
85605
85631
|
seLinuxOptions?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodSecurityContextSeLinuxOptions>;
|
|
85606
85632
|
seccompProfile?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodSecurityContextSeccompProfile>;
|
|
85607
85633
|
/**
|
|
@@ -85982,6 +86008,8 @@ export declare namespace gateway {
|
|
|
85982
86008
|
/**
|
|
85983
86009
|
* awsElasticBlockStore represents an AWS Disk resource that is attached to a
|
|
85984
86010
|
* kubelet's host machine and then exposed to the pod.
|
|
86011
|
+
* Deprecated: AWSElasticBlockStore is deprecated. All operations for the in-tree
|
|
86012
|
+
* awsElasticBlockStore type are redirected to the ebs.csi.aws.com CSI driver.
|
|
85985
86013
|
* More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
|
|
85986
86014
|
*/
|
|
85987
86015
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesAwsElasticBlockStore {
|
|
@@ -86012,6 +86040,8 @@ export declare namespace gateway {
|
|
|
86012
86040
|
}
|
|
86013
86041
|
/**
|
|
86014
86042
|
* azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
|
86043
|
+
* Deprecated: AzureDisk is deprecated. All operations for the in-tree azureDisk type
|
|
86044
|
+
* are redirected to the disk.csi.azure.com CSI driver.
|
|
86015
86045
|
*/
|
|
86016
86046
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesAzureDisk {
|
|
86017
86047
|
/**
|
|
@@ -86044,6 +86074,8 @@ export declare namespace gateway {
|
|
|
86044
86074
|
}
|
|
86045
86075
|
/**
|
|
86046
86076
|
* azureFile represents an Azure File Service mount on the host and bind mount to the pod.
|
|
86077
|
+
* Deprecated: AzureFile is deprecated. All operations for the in-tree azureFile type
|
|
86078
|
+
* are redirected to the file.csi.azure.com CSI driver.
|
|
86047
86079
|
*/
|
|
86048
86080
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesAzureFile {
|
|
86049
86081
|
/**
|
|
@@ -86061,7 +86093,8 @@ export declare namespace gateway {
|
|
|
86061
86093
|
shareName?: pulumi.Input<string>;
|
|
86062
86094
|
}
|
|
86063
86095
|
/**
|
|
86064
|
-
* cephFS represents a Ceph FS mount on the host that shares a pod's lifetime
|
|
86096
|
+
* cephFS represents a Ceph FS mount on the host that shares a pod's lifetime.
|
|
86097
|
+
* Deprecated: CephFS is deprecated and the in-tree cephfs type is no longer supported.
|
|
86065
86098
|
*/
|
|
86066
86099
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesCephfs {
|
|
86067
86100
|
/**
|
|
@@ -86107,6 +86140,8 @@ export declare namespace gateway {
|
|
|
86107
86140
|
}
|
|
86108
86141
|
/**
|
|
86109
86142
|
* cinder represents a cinder volume attached and mounted on kubelets host machine.
|
|
86143
|
+
* Deprecated: Cinder is deprecated. All operations for the in-tree cinder type
|
|
86144
|
+
* are redirected to the cinder.csi.openstack.org CSI driver.
|
|
86110
86145
|
* More info: https://examples.k8s.io/mysql-cinder-pd/README.md
|
|
86111
86146
|
*/
|
|
86112
86147
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesCinder {
|
|
@@ -86207,7 +86242,7 @@ export declare namespace gateway {
|
|
|
86207
86242
|
path?: pulumi.Input<string>;
|
|
86208
86243
|
}
|
|
86209
86244
|
/**
|
|
86210
|
-
* csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers
|
|
86245
|
+
* csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers.
|
|
86211
86246
|
*/
|
|
86212
86247
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesCsi {
|
|
86213
86248
|
/**
|
|
@@ -86623,6 +86658,7 @@ export declare namespace gateway {
|
|
|
86623
86658
|
/**
|
|
86624
86659
|
* flexVolume represents a generic volume resource that is
|
|
86625
86660
|
* provisioned/attached using an exec based plugin.
|
|
86661
|
+
* Deprecated: FlexVolume is deprecated. Consider using a CSIDriver instead.
|
|
86626
86662
|
*/
|
|
86627
86663
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesFlexVolume {
|
|
86628
86664
|
/**
|
|
@@ -86666,7 +86702,8 @@ export declare namespace gateway {
|
|
|
86666
86702
|
name?: pulumi.Input<string>;
|
|
86667
86703
|
}
|
|
86668
86704
|
/**
|
|
86669
|
-
* flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running
|
|
86705
|
+
* flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running.
|
|
86706
|
+
* Deprecated: Flocker is deprecated and the in-tree flocker type is no longer supported.
|
|
86670
86707
|
*/
|
|
86671
86708
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesFlocker {
|
|
86672
86709
|
/**
|
|
@@ -86682,6 +86719,8 @@ export declare namespace gateway {
|
|
|
86682
86719
|
/**
|
|
86683
86720
|
* gcePersistentDisk represents a GCE Disk resource that is attached to a
|
|
86684
86721
|
* kubelet's host machine and then exposed to the pod.
|
|
86722
|
+
* Deprecated: GCEPersistentDisk is deprecated. All operations for the in-tree
|
|
86723
|
+
* gcePersistentDisk type are redirected to the pd.csi.storage.gke.io CSI driver.
|
|
86685
86724
|
* More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
|
|
86686
86725
|
*/
|
|
86687
86726
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesGcePersistentDisk {
|
|
@@ -86714,7 +86753,7 @@ export declare namespace gateway {
|
|
|
86714
86753
|
}
|
|
86715
86754
|
/**
|
|
86716
86755
|
* gitRepo represents a git repository at a particular revision.
|
|
86717
|
-
*
|
|
86756
|
+
* Deprecated: GitRepo is deprecated. To provision a container with a git repo, mount an
|
|
86718
86757
|
* EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir
|
|
86719
86758
|
* into the Pod's container.
|
|
86720
86759
|
*/
|
|
@@ -86737,6 +86776,7 @@ export declare namespace gateway {
|
|
|
86737
86776
|
}
|
|
86738
86777
|
/**
|
|
86739
86778
|
* glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.
|
|
86779
|
+
* Deprecated: Glusterfs is deprecated and the in-tree glusterfs type is no longer supported.
|
|
86740
86780
|
* More info: https://examples.k8s.io/volumes/glusterfs/README.md
|
|
86741
86781
|
*/
|
|
86742
86782
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesGlusterfs {
|
|
@@ -86923,7 +86963,8 @@ export declare namespace gateway {
|
|
|
86923
86963
|
readOnly?: pulumi.Input<boolean>;
|
|
86924
86964
|
}
|
|
86925
86965
|
/**
|
|
86926
|
-
* photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
|
86966
|
+
* photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine.
|
|
86967
|
+
* Deprecated: PhotonPersistentDisk is deprecated and the in-tree photonPersistentDisk type is no longer supported.
|
|
86927
86968
|
*/
|
|
86928
86969
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesPhotonPersistentDisk {
|
|
86929
86970
|
/**
|
|
@@ -86938,7 +86979,10 @@ export declare namespace gateway {
|
|
|
86938
86979
|
pdID?: pulumi.Input<string>;
|
|
86939
86980
|
}
|
|
86940
86981
|
/**
|
|
86941
|
-
* portworxVolume represents a portworx volume attached and mounted on kubelets host machine
|
|
86982
|
+
* portworxVolume represents a portworx volume attached and mounted on kubelets host machine.
|
|
86983
|
+
* Deprecated: PortworxVolume is deprecated. All operations for the in-tree portworxVolume type
|
|
86984
|
+
* are redirected to the pxd.portworx.com CSI driver when the CSIMigrationPortworx feature-gate
|
|
86985
|
+
* is on.
|
|
86942
86986
|
*/
|
|
86943
86987
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesPortworxVolume {
|
|
86944
86988
|
/**
|
|
@@ -87261,7 +87305,8 @@ export declare namespace gateway {
|
|
|
87261
87305
|
path?: pulumi.Input<string>;
|
|
87262
87306
|
}
|
|
87263
87307
|
/**
|
|
87264
|
-
* quobyte represents a Quobyte mount on the host that shares a pod's lifetime
|
|
87308
|
+
* quobyte represents a Quobyte mount on the host that shares a pod's lifetime.
|
|
87309
|
+
* Deprecated: Quobyte is deprecated and the in-tree quobyte type is no longer supported.
|
|
87265
87310
|
*/
|
|
87266
87311
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesQuobyte {
|
|
87267
87312
|
/**
|
|
@@ -87297,6 +87342,7 @@ export declare namespace gateway {
|
|
|
87297
87342
|
}
|
|
87298
87343
|
/**
|
|
87299
87344
|
* rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.
|
|
87345
|
+
* Deprecated: RBD is deprecated and the in-tree rbd type is no longer supported.
|
|
87300
87346
|
* More info: https://examples.k8s.io/volumes/rbd/README.md
|
|
87301
87347
|
*/
|
|
87302
87348
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesRbd {
|
|
@@ -87361,6 +87407,7 @@ export declare namespace gateway {
|
|
|
87361
87407
|
}
|
|
87362
87408
|
/**
|
|
87363
87409
|
* scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
|
|
87410
|
+
* Deprecated: ScaleIO is deprecated and the in-tree scaleIO type is no longer supported.
|
|
87364
87411
|
*/
|
|
87365
87412
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesScaleIO {
|
|
87366
87413
|
/**
|
|
@@ -87483,6 +87530,7 @@ export declare namespace gateway {
|
|
|
87483
87530
|
}
|
|
87484
87531
|
/**
|
|
87485
87532
|
* storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.
|
|
87533
|
+
* Deprecated: StorageOS is deprecated and the in-tree storageos type is no longer supported.
|
|
87486
87534
|
*/
|
|
87487
87535
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesStorageos {
|
|
87488
87536
|
/**
|
|
@@ -87527,7 +87575,9 @@ export declare namespace gateway {
|
|
|
87527
87575
|
name?: pulumi.Input<string>;
|
|
87528
87576
|
}
|
|
87529
87577
|
/**
|
|
87530
|
-
* vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
|
|
87578
|
+
* vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine.
|
|
87579
|
+
* Deprecated: VsphereVolume is deprecated. All operations for the in-tree vsphereVolume type
|
|
87580
|
+
* are redirected to the csi.vsphere.vmware.com CSI driver.
|
|
87531
87581
|
*/
|
|
87532
87582
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesVsphereVolume {
|
|
87533
87583
|
/**
|
|
@@ -88374,7 +88424,7 @@ export declare namespace gateway {
|
|
|
88374
88424
|
tcpSocket?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePostStartTcpSocket>;
|
|
88375
88425
|
}
|
|
88376
88426
|
/**
|
|
88377
|
-
* Exec specifies
|
|
88427
|
+
* Exec specifies a command to execute in the container.
|
|
88378
88428
|
*/
|
|
88379
88429
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePostStartExec {
|
|
88380
88430
|
/**
|
|
@@ -88387,7 +88437,7 @@ export declare namespace gateway {
|
|
|
88387
88437
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
88388
88438
|
}
|
|
88389
88439
|
/**
|
|
88390
|
-
* HTTPGet specifies
|
|
88440
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
88391
88441
|
*/
|
|
88392
88442
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePostStartHttpGet {
|
|
88393
88443
|
/**
|
|
@@ -88430,7 +88480,7 @@ export declare namespace gateway {
|
|
|
88430
88480
|
value?: pulumi.Input<string>;
|
|
88431
88481
|
}
|
|
88432
88482
|
/**
|
|
88433
|
-
* Sleep represents
|
|
88483
|
+
* Sleep represents a duration that the container should sleep.
|
|
88434
88484
|
*/
|
|
88435
88485
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePostStartSleep {
|
|
88436
88486
|
/**
|
|
@@ -88440,8 +88490,8 @@ export declare namespace gateway {
|
|
|
88440
88490
|
}
|
|
88441
88491
|
/**
|
|
88442
88492
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
88443
|
-
* for
|
|
88444
|
-
* lifecycle hooks will fail
|
|
88493
|
+
* for backward compatibility. There is no validation of this field and
|
|
88494
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
88445
88495
|
*/
|
|
88446
88496
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePostStartTcpSocket {
|
|
88447
88497
|
/**
|
|
@@ -88473,7 +88523,7 @@ export declare namespace gateway {
|
|
|
88473
88523
|
tcpSocket?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePreStopTcpSocket>;
|
|
88474
88524
|
}
|
|
88475
88525
|
/**
|
|
88476
|
-
* Exec specifies
|
|
88526
|
+
* Exec specifies a command to execute in the container.
|
|
88477
88527
|
*/
|
|
88478
88528
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePreStopExec {
|
|
88479
88529
|
/**
|
|
@@ -88486,7 +88536,7 @@ export declare namespace gateway {
|
|
|
88486
88536
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
88487
88537
|
}
|
|
88488
88538
|
/**
|
|
88489
|
-
* HTTPGet specifies
|
|
88539
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
88490
88540
|
*/
|
|
88491
88541
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePreStopHttpGet {
|
|
88492
88542
|
/**
|
|
@@ -88529,7 +88579,7 @@ export declare namespace gateway {
|
|
|
88529
88579
|
value?: pulumi.Input<string>;
|
|
88530
88580
|
}
|
|
88531
88581
|
/**
|
|
88532
|
-
* Sleep represents
|
|
88582
|
+
* Sleep represents a duration that the container should sleep.
|
|
88533
88583
|
*/
|
|
88534
88584
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePreStopSleep {
|
|
88535
88585
|
/**
|
|
@@ -88539,8 +88589,8 @@ export declare namespace gateway {
|
|
|
88539
88589
|
}
|
|
88540
88590
|
/**
|
|
88541
88591
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
88542
|
-
* for
|
|
88543
|
-
* lifecycle hooks will fail
|
|
88592
|
+
* for backward compatibility. There is no validation of this field and
|
|
88593
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
88544
88594
|
*/
|
|
88545
88595
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePreStopTcpSocket {
|
|
88546
88596
|
/**
|
|
@@ -88606,7 +88656,7 @@ export declare namespace gateway {
|
|
|
88606
88656
|
timeoutSeconds?: pulumi.Input<number>;
|
|
88607
88657
|
}
|
|
88608
88658
|
/**
|
|
88609
|
-
* Exec specifies
|
|
88659
|
+
* Exec specifies a command to execute in the container.
|
|
88610
88660
|
*/
|
|
88611
88661
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLivenessProbeExec {
|
|
88612
88662
|
/**
|
|
@@ -88619,7 +88669,7 @@ export declare namespace gateway {
|
|
|
88619
88669
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
88620
88670
|
}
|
|
88621
88671
|
/**
|
|
88622
|
-
* GRPC specifies
|
|
88672
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
88623
88673
|
*/
|
|
88624
88674
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLivenessProbeGrpc {
|
|
88625
88675
|
/**
|
|
@@ -88635,7 +88685,7 @@ export declare namespace gateway {
|
|
|
88635
88685
|
service?: pulumi.Input<string>;
|
|
88636
88686
|
}
|
|
88637
88687
|
/**
|
|
88638
|
-
* HTTPGet specifies
|
|
88688
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
88639
88689
|
*/
|
|
88640
88690
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLivenessProbeHttpGet {
|
|
88641
88691
|
/**
|
|
@@ -88678,7 +88728,7 @@ export declare namespace gateway {
|
|
|
88678
88728
|
value?: pulumi.Input<string>;
|
|
88679
88729
|
}
|
|
88680
88730
|
/**
|
|
88681
|
-
* TCPSocket specifies
|
|
88731
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
88682
88732
|
*/
|
|
88683
88733
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLivenessProbeTcpSocket {
|
|
88684
88734
|
/**
|
|
@@ -88776,7 +88826,7 @@ export declare namespace gateway {
|
|
|
88776
88826
|
timeoutSeconds?: pulumi.Input<number>;
|
|
88777
88827
|
}
|
|
88778
88828
|
/**
|
|
88779
|
-
* Exec specifies
|
|
88829
|
+
* Exec specifies a command to execute in the container.
|
|
88780
88830
|
*/
|
|
88781
88831
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersReadinessProbeExec {
|
|
88782
88832
|
/**
|
|
@@ -88789,7 +88839,7 @@ export declare namespace gateway {
|
|
|
88789
88839
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
88790
88840
|
}
|
|
88791
88841
|
/**
|
|
88792
|
-
* GRPC specifies
|
|
88842
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
88793
88843
|
*/
|
|
88794
88844
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersReadinessProbeGrpc {
|
|
88795
88845
|
/**
|
|
@@ -88805,7 +88855,7 @@ export declare namespace gateway {
|
|
|
88805
88855
|
service?: pulumi.Input<string>;
|
|
88806
88856
|
}
|
|
88807
88857
|
/**
|
|
88808
|
-
* HTTPGet specifies
|
|
88858
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
88809
88859
|
*/
|
|
88810
88860
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersReadinessProbeHttpGet {
|
|
88811
88861
|
/**
|
|
@@ -88848,7 +88898,7 @@ export declare namespace gateway {
|
|
|
88848
88898
|
value?: pulumi.Input<string>;
|
|
88849
88899
|
}
|
|
88850
88900
|
/**
|
|
88851
|
-
* TCPSocket specifies
|
|
88901
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
88852
88902
|
*/
|
|
88853
88903
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersReadinessProbeTcpSocket {
|
|
88854
88904
|
/**
|
|
@@ -89168,7 +89218,7 @@ export declare namespace gateway {
|
|
|
89168
89218
|
timeoutSeconds?: pulumi.Input<number>;
|
|
89169
89219
|
}
|
|
89170
89220
|
/**
|
|
89171
|
-
* Exec specifies
|
|
89221
|
+
* Exec specifies a command to execute in the container.
|
|
89172
89222
|
*/
|
|
89173
89223
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersStartupProbeExec {
|
|
89174
89224
|
/**
|
|
@@ -89181,7 +89231,7 @@ export declare namespace gateway {
|
|
|
89181
89231
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
89182
89232
|
}
|
|
89183
89233
|
/**
|
|
89184
|
-
* GRPC specifies
|
|
89234
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
89185
89235
|
*/
|
|
89186
89236
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersStartupProbeGrpc {
|
|
89187
89237
|
/**
|
|
@@ -89197,7 +89247,7 @@ export declare namespace gateway {
|
|
|
89197
89247
|
service?: pulumi.Input<string>;
|
|
89198
89248
|
}
|
|
89199
89249
|
/**
|
|
89200
|
-
* HTTPGet specifies
|
|
89250
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
89201
89251
|
*/
|
|
89202
89252
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersStartupProbeHttpGet {
|
|
89203
89253
|
/**
|
|
@@ -89240,7 +89290,7 @@ export declare namespace gateway {
|
|
|
89240
89290
|
value?: pulumi.Input<string>;
|
|
89241
89291
|
}
|
|
89242
89292
|
/**
|
|
89243
|
-
* TCPSocket specifies
|
|
89293
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
89244
89294
|
*/
|
|
89245
89295
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersStartupProbeTcpSocket {
|
|
89246
89296
|
/**
|
|
@@ -90236,6 +90286,32 @@ export declare namespace gateway {
|
|
|
90236
90286
|
* Note that this field cannot be set when spec.os.name is windows.
|
|
90237
90287
|
*/
|
|
90238
90288
|
runAsUser?: pulumi.Input<number>;
|
|
90289
|
+
/**
|
|
90290
|
+
* seLinuxChangePolicy defines how the container's SELinux label is applied to all volumes used by the Pod.
|
|
90291
|
+
* It has no effect on nodes that do not support SELinux or to volumes does not support SELinux.
|
|
90292
|
+
* Valid values are "MountOption" and "Recursive".
|
|
90293
|
+
*
|
|
90294
|
+
* "Recursive" means relabeling of all files on all Pod volumes by the container runtime.
|
|
90295
|
+
* This may be slow for large volumes, but allows mixing privileged and unprivileged Pods sharing the same volume on the same node.
|
|
90296
|
+
*
|
|
90297
|
+
* "MountOption" mounts all eligible Pod volumes with `-o context` mount option.
|
|
90298
|
+
* This requires all Pods that share the same volume to use the same SELinux label.
|
|
90299
|
+
* It is not possible to share the same volume among privileged and unprivileged Pods.
|
|
90300
|
+
* Eligible volumes are in-tree FibreChannel and iSCSI volumes, and all CSI volumes
|
|
90301
|
+
* whose CSI driver announces SELinux support by setting spec.seLinuxMount: true in their
|
|
90302
|
+
* CSIDriver instance. Other volumes are always re-labelled recursively.
|
|
90303
|
+
* "MountOption" value is allowed only when SELinuxMount feature gate is enabled.
|
|
90304
|
+
*
|
|
90305
|
+
* If not specified and SELinuxMount feature gate is enabled, "MountOption" is used.
|
|
90306
|
+
* If not specified and SELinuxMount feature gate is disabled, "MountOption" is used for ReadWriteOncePod volumes
|
|
90307
|
+
* and "Recursive" for all other volumes.
|
|
90308
|
+
*
|
|
90309
|
+
* This field affects only Pods that have SELinux label set, either in PodSecurityContext or in SecurityContext of all containers.
|
|
90310
|
+
*
|
|
90311
|
+
* All Pods that use the same volume should use the same seLinuxChangePolicy, otherwise some pods can get stuck in ContainerCreating state.
|
|
90312
|
+
* Note that this field cannot be set when spec.os.name is windows.
|
|
90313
|
+
*/
|
|
90314
|
+
seLinuxChangePolicy?: pulumi.Input<string>;
|
|
90239
90315
|
seLinuxOptions?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodSecurityContextSeLinuxOptions>;
|
|
90240
90316
|
seccompProfile?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodSecurityContextSeccompProfile>;
|
|
90241
90317
|
/**
|
|
@@ -90616,6 +90692,8 @@ export declare namespace gateway {
|
|
|
90616
90692
|
/**
|
|
90617
90693
|
* awsElasticBlockStore represents an AWS Disk resource that is attached to a
|
|
90618
90694
|
* kubelet's host machine and then exposed to the pod.
|
|
90695
|
+
* Deprecated: AWSElasticBlockStore is deprecated. All operations for the in-tree
|
|
90696
|
+
* awsElasticBlockStore type are redirected to the ebs.csi.aws.com CSI driver.
|
|
90619
90697
|
* More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
|
|
90620
90698
|
*/
|
|
90621
90699
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesAwsElasticBlockStore {
|
|
@@ -90646,6 +90724,8 @@ export declare namespace gateway {
|
|
|
90646
90724
|
}
|
|
90647
90725
|
/**
|
|
90648
90726
|
* azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
|
90727
|
+
* Deprecated: AzureDisk is deprecated. All operations for the in-tree azureDisk type
|
|
90728
|
+
* are redirected to the disk.csi.azure.com CSI driver.
|
|
90649
90729
|
*/
|
|
90650
90730
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesAzureDisk {
|
|
90651
90731
|
/**
|
|
@@ -90678,6 +90758,8 @@ export declare namespace gateway {
|
|
|
90678
90758
|
}
|
|
90679
90759
|
/**
|
|
90680
90760
|
* azureFile represents an Azure File Service mount on the host and bind mount to the pod.
|
|
90761
|
+
* Deprecated: AzureFile is deprecated. All operations for the in-tree azureFile type
|
|
90762
|
+
* are redirected to the file.csi.azure.com CSI driver.
|
|
90681
90763
|
*/
|
|
90682
90764
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesAzureFile {
|
|
90683
90765
|
/**
|
|
@@ -90695,7 +90777,8 @@ export declare namespace gateway {
|
|
|
90695
90777
|
shareName?: pulumi.Input<string>;
|
|
90696
90778
|
}
|
|
90697
90779
|
/**
|
|
90698
|
-
* cephFS represents a Ceph FS mount on the host that shares a pod's lifetime
|
|
90780
|
+
* cephFS represents a Ceph FS mount on the host that shares a pod's lifetime.
|
|
90781
|
+
* Deprecated: CephFS is deprecated and the in-tree cephfs type is no longer supported.
|
|
90699
90782
|
*/
|
|
90700
90783
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesCephfs {
|
|
90701
90784
|
/**
|
|
@@ -90741,6 +90824,8 @@ export declare namespace gateway {
|
|
|
90741
90824
|
}
|
|
90742
90825
|
/**
|
|
90743
90826
|
* cinder represents a cinder volume attached and mounted on kubelets host machine.
|
|
90827
|
+
* Deprecated: Cinder is deprecated. All operations for the in-tree cinder type
|
|
90828
|
+
* are redirected to the cinder.csi.openstack.org CSI driver.
|
|
90744
90829
|
* More info: https://examples.k8s.io/mysql-cinder-pd/README.md
|
|
90745
90830
|
*/
|
|
90746
90831
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesCinder {
|
|
@@ -90841,7 +90926,7 @@ export declare namespace gateway {
|
|
|
90841
90926
|
path?: pulumi.Input<string>;
|
|
90842
90927
|
}
|
|
90843
90928
|
/**
|
|
90844
|
-
* csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers
|
|
90929
|
+
* csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers.
|
|
90845
90930
|
*/
|
|
90846
90931
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesCsi {
|
|
90847
90932
|
/**
|
|
@@ -91257,6 +91342,7 @@ export declare namespace gateway {
|
|
|
91257
91342
|
/**
|
|
91258
91343
|
* flexVolume represents a generic volume resource that is
|
|
91259
91344
|
* provisioned/attached using an exec based plugin.
|
|
91345
|
+
* Deprecated: FlexVolume is deprecated. Consider using a CSIDriver instead.
|
|
91260
91346
|
*/
|
|
91261
91347
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesFlexVolume {
|
|
91262
91348
|
/**
|
|
@@ -91300,7 +91386,8 @@ export declare namespace gateway {
|
|
|
91300
91386
|
name?: pulumi.Input<string>;
|
|
91301
91387
|
}
|
|
91302
91388
|
/**
|
|
91303
|
-
* flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running
|
|
91389
|
+
* flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running.
|
|
91390
|
+
* Deprecated: Flocker is deprecated and the in-tree flocker type is no longer supported.
|
|
91304
91391
|
*/
|
|
91305
91392
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesFlocker {
|
|
91306
91393
|
/**
|
|
@@ -91316,6 +91403,8 @@ export declare namespace gateway {
|
|
|
91316
91403
|
/**
|
|
91317
91404
|
* gcePersistentDisk represents a GCE Disk resource that is attached to a
|
|
91318
91405
|
* kubelet's host machine and then exposed to the pod.
|
|
91406
|
+
* Deprecated: GCEPersistentDisk is deprecated. All operations for the in-tree
|
|
91407
|
+
* gcePersistentDisk type are redirected to the pd.csi.storage.gke.io CSI driver.
|
|
91319
91408
|
* More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
|
|
91320
91409
|
*/
|
|
91321
91410
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesGcePersistentDisk {
|
|
@@ -91348,7 +91437,7 @@ export declare namespace gateway {
|
|
|
91348
91437
|
}
|
|
91349
91438
|
/**
|
|
91350
91439
|
* gitRepo represents a git repository at a particular revision.
|
|
91351
|
-
*
|
|
91440
|
+
* Deprecated: GitRepo is deprecated. To provision a container with a git repo, mount an
|
|
91352
91441
|
* EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir
|
|
91353
91442
|
* into the Pod's container.
|
|
91354
91443
|
*/
|
|
@@ -91371,6 +91460,7 @@ export declare namespace gateway {
|
|
|
91371
91460
|
}
|
|
91372
91461
|
/**
|
|
91373
91462
|
* glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.
|
|
91463
|
+
* Deprecated: Glusterfs is deprecated and the in-tree glusterfs type is no longer supported.
|
|
91374
91464
|
* More info: https://examples.k8s.io/volumes/glusterfs/README.md
|
|
91375
91465
|
*/
|
|
91376
91466
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesGlusterfs {
|
|
@@ -91557,7 +91647,8 @@ export declare namespace gateway {
|
|
|
91557
91647
|
readOnly?: pulumi.Input<boolean>;
|
|
91558
91648
|
}
|
|
91559
91649
|
/**
|
|
91560
|
-
* photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
|
91650
|
+
* photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine.
|
|
91651
|
+
* Deprecated: PhotonPersistentDisk is deprecated and the in-tree photonPersistentDisk type is no longer supported.
|
|
91561
91652
|
*/
|
|
91562
91653
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesPhotonPersistentDisk {
|
|
91563
91654
|
/**
|
|
@@ -91572,7 +91663,10 @@ export declare namespace gateway {
|
|
|
91572
91663
|
pdID?: pulumi.Input<string>;
|
|
91573
91664
|
}
|
|
91574
91665
|
/**
|
|
91575
|
-
* portworxVolume represents a portworx volume attached and mounted on kubelets host machine
|
|
91666
|
+
* portworxVolume represents a portworx volume attached and mounted on kubelets host machine.
|
|
91667
|
+
* Deprecated: PortworxVolume is deprecated. All operations for the in-tree portworxVolume type
|
|
91668
|
+
* are redirected to the pxd.portworx.com CSI driver when the CSIMigrationPortworx feature-gate
|
|
91669
|
+
* is on.
|
|
91576
91670
|
*/
|
|
91577
91671
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesPortworxVolume {
|
|
91578
91672
|
/**
|
|
@@ -91895,7 +91989,8 @@ export declare namespace gateway {
|
|
|
91895
91989
|
path?: pulumi.Input<string>;
|
|
91896
91990
|
}
|
|
91897
91991
|
/**
|
|
91898
|
-
* quobyte represents a Quobyte mount on the host that shares a pod's lifetime
|
|
91992
|
+
* quobyte represents a Quobyte mount on the host that shares a pod's lifetime.
|
|
91993
|
+
* Deprecated: Quobyte is deprecated and the in-tree quobyte type is no longer supported.
|
|
91899
91994
|
*/
|
|
91900
91995
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesQuobyte {
|
|
91901
91996
|
/**
|
|
@@ -91931,6 +92026,7 @@ export declare namespace gateway {
|
|
|
91931
92026
|
}
|
|
91932
92027
|
/**
|
|
91933
92028
|
* rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.
|
|
92029
|
+
* Deprecated: RBD is deprecated and the in-tree rbd type is no longer supported.
|
|
91934
92030
|
* More info: https://examples.k8s.io/volumes/rbd/README.md
|
|
91935
92031
|
*/
|
|
91936
92032
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesRbd {
|
|
@@ -91995,6 +92091,7 @@ export declare namespace gateway {
|
|
|
91995
92091
|
}
|
|
91996
92092
|
/**
|
|
91997
92093
|
* scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
|
|
92094
|
+
* Deprecated: ScaleIO is deprecated and the in-tree scaleIO type is no longer supported.
|
|
91998
92095
|
*/
|
|
91999
92096
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesScaleIO {
|
|
92000
92097
|
/**
|
|
@@ -92117,6 +92214,7 @@ export declare namespace gateway {
|
|
|
92117
92214
|
}
|
|
92118
92215
|
/**
|
|
92119
92216
|
* storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.
|
|
92217
|
+
* Deprecated: StorageOS is deprecated and the in-tree storageos type is no longer supported.
|
|
92120
92218
|
*/
|
|
92121
92219
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesStorageos {
|
|
92122
92220
|
/**
|
|
@@ -92161,7 +92259,9 @@ export declare namespace gateway {
|
|
|
92161
92259
|
name?: pulumi.Input<string>;
|
|
92162
92260
|
}
|
|
92163
92261
|
/**
|
|
92164
|
-
* vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
|
|
92262
|
+
* vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine.
|
|
92263
|
+
* Deprecated: VsphereVolume is deprecated. All operations for the in-tree vsphereVolume type
|
|
92264
|
+
* are redirected to the csi.vsphere.vmware.com CSI driver.
|
|
92165
92265
|
*/
|
|
92166
92266
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesVsphereVolume {
|
|
92167
92267
|
/**
|
|
@@ -92367,8 +92467,6 @@ export declare namespace gateway {
|
|
|
92367
92467
|
/**
|
|
92368
92468
|
* type is the type of metric source. It should be one of "ContainerResource", "External",
|
|
92369
92469
|
* "Object", "Pods" or "Resource", each mapping to a matching field in the object.
|
|
92370
|
-
* Note: "ContainerResource" type is available on when the feature-gate
|
|
92371
|
-
* HPAContainerMetrics is enabled
|
|
92372
92470
|
*/
|
|
92373
92471
|
type?: pulumi.Input<string>;
|
|
92374
92472
|
}
|
|
@@ -92378,7 +92476,6 @@ export declare namespace gateway {
|
|
|
92378
92476
|
* each pod of the current scale target (e.g. CPU or memory). Such metrics are
|
|
92379
92477
|
* built in to Kubernetes, and have special scaling options on top of those
|
|
92380
92478
|
* available to normal per-pod metrics using the "pods" source.
|
|
92381
|
-
* This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag.
|
|
92382
92479
|
*/
|
|
92383
92480
|
interface EnvoyProxySpecProviderKubernetesEnvoyHpaMetricsContainerResource {
|
|
92384
92481
|
/**
|
|
@@ -124628,7 +124725,7 @@ export declare namespace postgresql {
|
|
|
124628
124725
|
* not set, the implementation will apply its default routing strategy. If set
|
|
124629
124726
|
* to "PreferClose", implementations should prioritize endpoints that are
|
|
124630
124727
|
* topologically close (e.g., same zone).
|
|
124631
|
-
* This is
|
|
124728
|
+
* This is a beta field and requires enabling ServiceTrafficDistribution feature.
|
|
124632
124729
|
*/
|
|
124633
124730
|
trafficDistribution?: pulumi.Input<string>;
|
|
124634
124731
|
/**
|
|
@@ -124866,7 +124963,7 @@ export declare namespace postgresql {
|
|
|
124866
124963
|
* not set, the implementation will apply its default routing strategy. If set
|
|
124867
124964
|
* to "PreferClose", implementations should prioritize endpoints that are
|
|
124868
124965
|
* topologically close (e.g., same zone).
|
|
124869
|
-
* This is
|
|
124966
|
+
* This is a beta field and requires enabling ServiceTrafficDistribution feature.
|
|
124870
124967
|
*/
|
|
124871
124968
|
trafficDistribution?: pulumi.Input<string>;
|
|
124872
124969
|
/**
|
|
@@ -130266,7 +130363,7 @@ export declare namespace postgresql {
|
|
|
130266
130363
|
* not set, the implementation will apply its default routing strategy. If set
|
|
130267
130364
|
* to "PreferClose", implementations should prioritize endpoints that are
|
|
130268
130365
|
* topologically close (e.g., same zone).
|
|
130269
|
-
* This is
|
|
130366
|
+
* This is a beta field and requires enabling ServiceTrafficDistribution feature.
|
|
130270
130367
|
*/
|
|
130271
130368
|
trafficDistribution?: pulumi.Input<string>;
|
|
130272
130369
|
/**
|
|
@@ -130504,7 +130601,7 @@ export declare namespace postgresql {
|
|
|
130504
130601
|
* not set, the implementation will apply its default routing strategy. If set
|
|
130505
130602
|
* to "PreferClose", implementations should prioritize endpoints that are
|
|
130506
130603
|
* topologically close (e.g., same zone).
|
|
130507
|
-
* This is
|
|
130604
|
+
* This is a beta field and requires enabling ServiceTrafficDistribution feature.
|
|
130508
130605
|
*/
|
|
130509
130606
|
trafficDistribution?: pulumi.Input<string>;
|
|
130510
130607
|
/**
|
|
@@ -130934,6 +131031,7 @@ export declare namespace postgresql {
|
|
|
130934
131031
|
* This field is immutable.
|
|
130935
131032
|
*/
|
|
130936
131033
|
resourceClaims?: pulumi.Input<pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecResourceClaims>[]>;
|
|
131034
|
+
resources?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecResources>;
|
|
130937
131035
|
/**
|
|
130938
131036
|
* Restart policy for all containers within the pod.
|
|
130939
131037
|
* One of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted.
|
|
@@ -133051,7 +133149,7 @@ export declare namespace postgresql {
|
|
|
133051
133149
|
tcpSocket?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecContainersLifecyclePostStartTcpSocket>;
|
|
133052
133150
|
}
|
|
133053
133151
|
/**
|
|
133054
|
-
* Exec specifies
|
|
133152
|
+
* Exec specifies a command to execute in the container.
|
|
133055
133153
|
*/
|
|
133056
133154
|
interface PoolerSpecTemplateSpecContainersLifecyclePostStartExec {
|
|
133057
133155
|
/**
|
|
@@ -133064,7 +133162,7 @@ export declare namespace postgresql {
|
|
|
133064
133162
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
133065
133163
|
}
|
|
133066
133164
|
/**
|
|
133067
|
-
* Exec specifies
|
|
133165
|
+
* Exec specifies a command to execute in the container.
|
|
133068
133166
|
*/
|
|
133069
133167
|
interface PoolerSpecTemplateSpecContainersLifecyclePostStartExecPatch {
|
|
133070
133168
|
/**
|
|
@@ -133077,7 +133175,7 @@ export declare namespace postgresql {
|
|
|
133077
133175
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
133078
133176
|
}
|
|
133079
133177
|
/**
|
|
133080
|
-
* HTTPGet specifies
|
|
133178
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
133081
133179
|
*/
|
|
133082
133180
|
interface PoolerSpecTemplateSpecContainersLifecyclePostStartHttpGet {
|
|
133083
133181
|
/**
|
|
@@ -133134,7 +133232,7 @@ export declare namespace postgresql {
|
|
|
133134
133232
|
value?: pulumi.Input<string>;
|
|
133135
133233
|
}
|
|
133136
133234
|
/**
|
|
133137
|
-
* HTTPGet specifies
|
|
133235
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
133138
133236
|
*/
|
|
133139
133237
|
interface PoolerSpecTemplateSpecContainersLifecyclePostStartHttpGetPatch {
|
|
133140
133238
|
/**
|
|
@@ -133175,7 +133273,7 @@ export declare namespace postgresql {
|
|
|
133175
133273
|
tcpSocket?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecContainersLifecyclePostStartTcpSocketPatch>;
|
|
133176
133274
|
}
|
|
133177
133275
|
/**
|
|
133178
|
-
* Sleep represents
|
|
133276
|
+
* Sleep represents a duration that the container should sleep.
|
|
133179
133277
|
*/
|
|
133180
133278
|
interface PoolerSpecTemplateSpecContainersLifecyclePostStartSleep {
|
|
133181
133279
|
/**
|
|
@@ -133184,7 +133282,7 @@ export declare namespace postgresql {
|
|
|
133184
133282
|
seconds?: pulumi.Input<number>;
|
|
133185
133283
|
}
|
|
133186
133284
|
/**
|
|
133187
|
-
* Sleep represents
|
|
133285
|
+
* Sleep represents a duration that the container should sleep.
|
|
133188
133286
|
*/
|
|
133189
133287
|
interface PoolerSpecTemplateSpecContainersLifecyclePostStartSleepPatch {
|
|
133190
133288
|
/**
|
|
@@ -133194,8 +133292,8 @@ export declare namespace postgresql {
|
|
|
133194
133292
|
}
|
|
133195
133293
|
/**
|
|
133196
133294
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
133197
|
-
* for
|
|
133198
|
-
* lifecycle hooks will fail
|
|
133295
|
+
* for backward compatibility. There is no validation of this field and
|
|
133296
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
133199
133297
|
*/
|
|
133200
133298
|
interface PoolerSpecTemplateSpecContainersLifecyclePostStartTcpSocket {
|
|
133201
133299
|
/**
|
|
@@ -133211,8 +133309,8 @@ export declare namespace postgresql {
|
|
|
133211
133309
|
}
|
|
133212
133310
|
/**
|
|
133213
133311
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
133214
|
-
* for
|
|
133215
|
-
* lifecycle hooks will fail
|
|
133312
|
+
* for backward compatibility. There is no validation of this field and
|
|
133313
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
133216
133314
|
*/
|
|
133217
133315
|
interface PoolerSpecTemplateSpecContainersLifecyclePostStartTcpSocketPatch {
|
|
133218
133316
|
/**
|
|
@@ -133244,7 +133342,7 @@ export declare namespace postgresql {
|
|
|
133244
133342
|
tcpSocket?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecContainersLifecyclePreStopTcpSocket>;
|
|
133245
133343
|
}
|
|
133246
133344
|
/**
|
|
133247
|
-
* Exec specifies
|
|
133345
|
+
* Exec specifies a command to execute in the container.
|
|
133248
133346
|
*/
|
|
133249
133347
|
interface PoolerSpecTemplateSpecContainersLifecyclePreStopExec {
|
|
133250
133348
|
/**
|
|
@@ -133257,7 +133355,7 @@ export declare namespace postgresql {
|
|
|
133257
133355
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
133258
133356
|
}
|
|
133259
133357
|
/**
|
|
133260
|
-
* Exec specifies
|
|
133358
|
+
* Exec specifies a command to execute in the container.
|
|
133261
133359
|
*/
|
|
133262
133360
|
interface PoolerSpecTemplateSpecContainersLifecyclePreStopExecPatch {
|
|
133263
133361
|
/**
|
|
@@ -133270,7 +133368,7 @@ export declare namespace postgresql {
|
|
|
133270
133368
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
133271
133369
|
}
|
|
133272
133370
|
/**
|
|
133273
|
-
* HTTPGet specifies
|
|
133371
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
133274
133372
|
*/
|
|
133275
133373
|
interface PoolerSpecTemplateSpecContainersLifecyclePreStopHttpGet {
|
|
133276
133374
|
/**
|
|
@@ -133327,7 +133425,7 @@ export declare namespace postgresql {
|
|
|
133327
133425
|
value?: pulumi.Input<string>;
|
|
133328
133426
|
}
|
|
133329
133427
|
/**
|
|
133330
|
-
* HTTPGet specifies
|
|
133428
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
133331
133429
|
*/
|
|
133332
133430
|
interface PoolerSpecTemplateSpecContainersLifecyclePreStopHttpGetPatch {
|
|
133333
133431
|
/**
|
|
@@ -133373,7 +133471,7 @@ export declare namespace postgresql {
|
|
|
133373
133471
|
tcpSocket?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecContainersLifecyclePreStopTcpSocketPatch>;
|
|
133374
133472
|
}
|
|
133375
133473
|
/**
|
|
133376
|
-
* Sleep represents
|
|
133474
|
+
* Sleep represents a duration that the container should sleep.
|
|
133377
133475
|
*/
|
|
133378
133476
|
interface PoolerSpecTemplateSpecContainersLifecyclePreStopSleep {
|
|
133379
133477
|
/**
|
|
@@ -133382,7 +133480,7 @@ export declare namespace postgresql {
|
|
|
133382
133480
|
seconds?: pulumi.Input<number>;
|
|
133383
133481
|
}
|
|
133384
133482
|
/**
|
|
133385
|
-
* Sleep represents
|
|
133483
|
+
* Sleep represents a duration that the container should sleep.
|
|
133386
133484
|
*/
|
|
133387
133485
|
interface PoolerSpecTemplateSpecContainersLifecyclePreStopSleepPatch {
|
|
133388
133486
|
/**
|
|
@@ -133392,8 +133490,8 @@ export declare namespace postgresql {
|
|
|
133392
133490
|
}
|
|
133393
133491
|
/**
|
|
133394
133492
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
133395
|
-
* for
|
|
133396
|
-
* lifecycle hooks will fail
|
|
133493
|
+
* for backward compatibility. There is no validation of this field and
|
|
133494
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
133397
133495
|
*/
|
|
133398
133496
|
interface PoolerSpecTemplateSpecContainersLifecyclePreStopTcpSocket {
|
|
133399
133497
|
/**
|
|
@@ -133409,8 +133507,8 @@ export declare namespace postgresql {
|
|
|
133409
133507
|
}
|
|
133410
133508
|
/**
|
|
133411
133509
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
133412
|
-
* for
|
|
133413
|
-
* lifecycle hooks will fail
|
|
133510
|
+
* for backward compatibility. There is no validation of this field and
|
|
133511
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
133414
133512
|
*/
|
|
133415
133513
|
interface PoolerSpecTemplateSpecContainersLifecyclePreStopTcpSocketPatch {
|
|
133416
133514
|
/**
|
|
@@ -133476,7 +133574,7 @@ export declare namespace postgresql {
|
|
|
133476
133574
|
timeoutSeconds?: pulumi.Input<number>;
|
|
133477
133575
|
}
|
|
133478
133576
|
/**
|
|
133479
|
-
* Exec specifies
|
|
133577
|
+
* Exec specifies a command to execute in the container.
|
|
133480
133578
|
*/
|
|
133481
133579
|
interface PoolerSpecTemplateSpecContainersLivenessProbeExec {
|
|
133482
133580
|
/**
|
|
@@ -133489,7 +133587,7 @@ export declare namespace postgresql {
|
|
|
133489
133587
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
133490
133588
|
}
|
|
133491
133589
|
/**
|
|
133492
|
-
* Exec specifies
|
|
133590
|
+
* Exec specifies a command to execute in the container.
|
|
133493
133591
|
*/
|
|
133494
133592
|
interface PoolerSpecTemplateSpecContainersLivenessProbeExecPatch {
|
|
133495
133593
|
/**
|
|
@@ -133502,7 +133600,7 @@ export declare namespace postgresql {
|
|
|
133502
133600
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
133503
133601
|
}
|
|
133504
133602
|
/**
|
|
133505
|
-
* GRPC specifies
|
|
133603
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
133506
133604
|
*/
|
|
133507
133605
|
interface PoolerSpecTemplateSpecContainersLivenessProbeGrpc {
|
|
133508
133606
|
/**
|
|
@@ -133518,7 +133616,7 @@ export declare namespace postgresql {
|
|
|
133518
133616
|
service?: pulumi.Input<string>;
|
|
133519
133617
|
}
|
|
133520
133618
|
/**
|
|
133521
|
-
* GRPC specifies
|
|
133619
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
133522
133620
|
*/
|
|
133523
133621
|
interface PoolerSpecTemplateSpecContainersLivenessProbeGrpcPatch {
|
|
133524
133622
|
/**
|
|
@@ -133534,7 +133632,7 @@ export declare namespace postgresql {
|
|
|
133534
133632
|
service?: pulumi.Input<string>;
|
|
133535
133633
|
}
|
|
133536
133634
|
/**
|
|
133537
|
-
* HTTPGet specifies
|
|
133635
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
133538
133636
|
*/
|
|
133539
133637
|
interface PoolerSpecTemplateSpecContainersLivenessProbeHttpGet {
|
|
133540
133638
|
/**
|
|
@@ -133591,7 +133689,7 @@ export declare namespace postgresql {
|
|
|
133591
133689
|
value?: pulumi.Input<string>;
|
|
133592
133690
|
}
|
|
133593
133691
|
/**
|
|
133594
|
-
* HTTPGet specifies
|
|
133692
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
133595
133693
|
*/
|
|
133596
133694
|
interface PoolerSpecTemplateSpecContainersLivenessProbeHttpGetPatch {
|
|
133597
133695
|
/**
|
|
@@ -133671,7 +133769,7 @@ export declare namespace postgresql {
|
|
|
133671
133769
|
timeoutSeconds?: pulumi.Input<number>;
|
|
133672
133770
|
}
|
|
133673
133771
|
/**
|
|
133674
|
-
* TCPSocket specifies
|
|
133772
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
133675
133773
|
*/
|
|
133676
133774
|
interface PoolerSpecTemplateSpecContainersLivenessProbeTcpSocket {
|
|
133677
133775
|
/**
|
|
@@ -133686,7 +133784,7 @@ export declare namespace postgresql {
|
|
|
133686
133784
|
port?: pulumi.Input<number | string>;
|
|
133687
133785
|
}
|
|
133688
133786
|
/**
|
|
133689
|
-
* TCPSocket specifies
|
|
133787
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
133690
133788
|
*/
|
|
133691
133789
|
interface PoolerSpecTemplateSpecContainersLivenessProbeTcpSocketPatch {
|
|
133692
133790
|
/**
|
|
@@ -133973,7 +134071,7 @@ export declare namespace postgresql {
|
|
|
133973
134071
|
timeoutSeconds?: pulumi.Input<number>;
|
|
133974
134072
|
}
|
|
133975
134073
|
/**
|
|
133976
|
-
* Exec specifies
|
|
134074
|
+
* Exec specifies a command to execute in the container.
|
|
133977
134075
|
*/
|
|
133978
134076
|
interface PoolerSpecTemplateSpecContainersReadinessProbeExec {
|
|
133979
134077
|
/**
|
|
@@ -133986,7 +134084,7 @@ export declare namespace postgresql {
|
|
|
133986
134084
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
133987
134085
|
}
|
|
133988
134086
|
/**
|
|
133989
|
-
* Exec specifies
|
|
134087
|
+
* Exec specifies a command to execute in the container.
|
|
133990
134088
|
*/
|
|
133991
134089
|
interface PoolerSpecTemplateSpecContainersReadinessProbeExecPatch {
|
|
133992
134090
|
/**
|
|
@@ -133999,7 +134097,7 @@ export declare namespace postgresql {
|
|
|
133999
134097
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
134000
134098
|
}
|
|
134001
134099
|
/**
|
|
134002
|
-
* GRPC specifies
|
|
134100
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
134003
134101
|
*/
|
|
134004
134102
|
interface PoolerSpecTemplateSpecContainersReadinessProbeGrpc {
|
|
134005
134103
|
/**
|
|
@@ -134015,7 +134113,7 @@ export declare namespace postgresql {
|
|
|
134015
134113
|
service?: pulumi.Input<string>;
|
|
134016
134114
|
}
|
|
134017
134115
|
/**
|
|
134018
|
-
* GRPC specifies
|
|
134116
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
134019
134117
|
*/
|
|
134020
134118
|
interface PoolerSpecTemplateSpecContainersReadinessProbeGrpcPatch {
|
|
134021
134119
|
/**
|
|
@@ -134031,7 +134129,7 @@ export declare namespace postgresql {
|
|
|
134031
134129
|
service?: pulumi.Input<string>;
|
|
134032
134130
|
}
|
|
134033
134131
|
/**
|
|
134034
|
-
* HTTPGet specifies
|
|
134132
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
134035
134133
|
*/
|
|
134036
134134
|
interface PoolerSpecTemplateSpecContainersReadinessProbeHttpGet {
|
|
134037
134135
|
/**
|
|
@@ -134088,7 +134186,7 @@ export declare namespace postgresql {
|
|
|
134088
134186
|
value?: pulumi.Input<string>;
|
|
134089
134187
|
}
|
|
134090
134188
|
/**
|
|
134091
|
-
* HTTPGet specifies
|
|
134189
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
134092
134190
|
*/
|
|
134093
134191
|
interface PoolerSpecTemplateSpecContainersReadinessProbeHttpGetPatch {
|
|
134094
134192
|
/**
|
|
@@ -134168,7 +134266,7 @@ export declare namespace postgresql {
|
|
|
134168
134266
|
timeoutSeconds?: pulumi.Input<number>;
|
|
134169
134267
|
}
|
|
134170
134268
|
/**
|
|
134171
|
-
* TCPSocket specifies
|
|
134269
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
134172
134270
|
*/
|
|
134173
134271
|
interface PoolerSpecTemplateSpecContainersReadinessProbeTcpSocket {
|
|
134174
134272
|
/**
|
|
@@ -134183,7 +134281,7 @@ export declare namespace postgresql {
|
|
|
134183
134281
|
port?: pulumi.Input<number | string>;
|
|
134184
134282
|
}
|
|
134185
134283
|
/**
|
|
134186
|
-
* TCPSocket specifies
|
|
134284
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
134187
134285
|
*/
|
|
134188
134286
|
interface PoolerSpecTemplateSpecContainersReadinessProbeTcpSocketPatch {
|
|
134189
134287
|
/**
|
|
@@ -134754,7 +134852,7 @@ export declare namespace postgresql {
|
|
|
134754
134852
|
timeoutSeconds?: pulumi.Input<number>;
|
|
134755
134853
|
}
|
|
134756
134854
|
/**
|
|
134757
|
-
* Exec specifies
|
|
134855
|
+
* Exec specifies a command to execute in the container.
|
|
134758
134856
|
*/
|
|
134759
134857
|
interface PoolerSpecTemplateSpecContainersStartupProbeExec {
|
|
134760
134858
|
/**
|
|
@@ -134767,7 +134865,7 @@ export declare namespace postgresql {
|
|
|
134767
134865
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
134768
134866
|
}
|
|
134769
134867
|
/**
|
|
134770
|
-
* Exec specifies
|
|
134868
|
+
* Exec specifies a command to execute in the container.
|
|
134771
134869
|
*/
|
|
134772
134870
|
interface PoolerSpecTemplateSpecContainersStartupProbeExecPatch {
|
|
134773
134871
|
/**
|
|
@@ -134780,7 +134878,7 @@ export declare namespace postgresql {
|
|
|
134780
134878
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
134781
134879
|
}
|
|
134782
134880
|
/**
|
|
134783
|
-
* GRPC specifies
|
|
134881
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
134784
134882
|
*/
|
|
134785
134883
|
interface PoolerSpecTemplateSpecContainersStartupProbeGrpc {
|
|
134786
134884
|
/**
|
|
@@ -134796,7 +134894,7 @@ export declare namespace postgresql {
|
|
|
134796
134894
|
service?: pulumi.Input<string>;
|
|
134797
134895
|
}
|
|
134798
134896
|
/**
|
|
134799
|
-
* GRPC specifies
|
|
134897
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
134800
134898
|
*/
|
|
134801
134899
|
interface PoolerSpecTemplateSpecContainersStartupProbeGrpcPatch {
|
|
134802
134900
|
/**
|
|
@@ -134812,7 +134910,7 @@ export declare namespace postgresql {
|
|
|
134812
134910
|
service?: pulumi.Input<string>;
|
|
134813
134911
|
}
|
|
134814
134912
|
/**
|
|
134815
|
-
* HTTPGet specifies
|
|
134913
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
134816
134914
|
*/
|
|
134817
134915
|
interface PoolerSpecTemplateSpecContainersStartupProbeHttpGet {
|
|
134818
134916
|
/**
|
|
@@ -134869,7 +134967,7 @@ export declare namespace postgresql {
|
|
|
134869
134967
|
value?: pulumi.Input<string>;
|
|
134870
134968
|
}
|
|
134871
134969
|
/**
|
|
134872
|
-
* HTTPGet specifies
|
|
134970
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
134873
134971
|
*/
|
|
134874
134972
|
interface PoolerSpecTemplateSpecContainersStartupProbeHttpGetPatch {
|
|
134875
134973
|
/**
|
|
@@ -134952,7 +135050,7 @@ export declare namespace postgresql {
|
|
|
134952
135050
|
timeoutSeconds?: pulumi.Input<number>;
|
|
134953
135051
|
}
|
|
134954
135052
|
/**
|
|
134955
|
-
* TCPSocket specifies
|
|
135053
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
134956
135054
|
*/
|
|
134957
135055
|
interface PoolerSpecTemplateSpecContainersStartupProbeTcpSocket {
|
|
134958
135056
|
/**
|
|
@@ -134967,7 +135065,7 @@ export declare namespace postgresql {
|
|
|
134967
135065
|
port?: pulumi.Input<number | string>;
|
|
134968
135066
|
}
|
|
134969
135067
|
/**
|
|
134970
|
-
* TCPSocket specifies
|
|
135068
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
134971
135069
|
*/
|
|
134972
135070
|
interface PoolerSpecTemplateSpecContainersStartupProbeTcpSocketPatch {
|
|
134973
135071
|
/**
|
|
@@ -135156,9 +135254,13 @@ export declare namespace postgresql {
|
|
|
135156
135254
|
*/
|
|
135157
135255
|
interface PoolerSpecTemplateSpecDnsConfigOptions {
|
|
135158
135256
|
/**
|
|
135257
|
+
* Name is this DNS resolver option's name.
|
|
135159
135258
|
* Required.
|
|
135160
135259
|
*/
|
|
135161
135260
|
name?: pulumi.Input<string>;
|
|
135261
|
+
/**
|
|
135262
|
+
* Value is this DNS resolver option's value.
|
|
135263
|
+
*/
|
|
135162
135264
|
value?: pulumi.Input<string>;
|
|
135163
135265
|
}
|
|
135164
135266
|
/**
|
|
@@ -135166,9 +135268,13 @@ export declare namespace postgresql {
|
|
|
135166
135268
|
*/
|
|
135167
135269
|
interface PoolerSpecTemplateSpecDnsConfigOptionsPatch {
|
|
135168
135270
|
/**
|
|
135271
|
+
* Name is this DNS resolver option's name.
|
|
135169
135272
|
* Required.
|
|
135170
135273
|
*/
|
|
135171
135274
|
name?: pulumi.Input<string>;
|
|
135275
|
+
/**
|
|
135276
|
+
* Value is this DNS resolver option's value.
|
|
135277
|
+
*/
|
|
135172
135278
|
value?: pulumi.Input<string>;
|
|
135173
135279
|
}
|
|
135174
135280
|
/**
|
|
@@ -135677,7 +135783,7 @@ export declare namespace postgresql {
|
|
|
135677
135783
|
tcpSocket?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartTcpSocket>;
|
|
135678
135784
|
}
|
|
135679
135785
|
/**
|
|
135680
|
-
* Exec specifies
|
|
135786
|
+
* Exec specifies a command to execute in the container.
|
|
135681
135787
|
*/
|
|
135682
135788
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartExec {
|
|
135683
135789
|
/**
|
|
@@ -135690,7 +135796,7 @@ export declare namespace postgresql {
|
|
|
135690
135796
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
135691
135797
|
}
|
|
135692
135798
|
/**
|
|
135693
|
-
* Exec specifies
|
|
135799
|
+
* Exec specifies a command to execute in the container.
|
|
135694
135800
|
*/
|
|
135695
135801
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartExecPatch {
|
|
135696
135802
|
/**
|
|
@@ -135703,7 +135809,7 @@ export declare namespace postgresql {
|
|
|
135703
135809
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
135704
135810
|
}
|
|
135705
135811
|
/**
|
|
135706
|
-
* HTTPGet specifies
|
|
135812
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
135707
135813
|
*/
|
|
135708
135814
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartHttpGet {
|
|
135709
135815
|
/**
|
|
@@ -135760,7 +135866,7 @@ export declare namespace postgresql {
|
|
|
135760
135866
|
value?: pulumi.Input<string>;
|
|
135761
135867
|
}
|
|
135762
135868
|
/**
|
|
135763
|
-
* HTTPGet specifies
|
|
135869
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
135764
135870
|
*/
|
|
135765
135871
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartHttpGetPatch {
|
|
135766
135872
|
/**
|
|
@@ -135801,7 +135907,7 @@ export declare namespace postgresql {
|
|
|
135801
135907
|
tcpSocket?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartTcpSocketPatch>;
|
|
135802
135908
|
}
|
|
135803
135909
|
/**
|
|
135804
|
-
* Sleep represents
|
|
135910
|
+
* Sleep represents a duration that the container should sleep.
|
|
135805
135911
|
*/
|
|
135806
135912
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartSleep {
|
|
135807
135913
|
/**
|
|
@@ -135810,7 +135916,7 @@ export declare namespace postgresql {
|
|
|
135810
135916
|
seconds?: pulumi.Input<number>;
|
|
135811
135917
|
}
|
|
135812
135918
|
/**
|
|
135813
|
-
* Sleep represents
|
|
135919
|
+
* Sleep represents a duration that the container should sleep.
|
|
135814
135920
|
*/
|
|
135815
135921
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartSleepPatch {
|
|
135816
135922
|
/**
|
|
@@ -135820,8 +135926,8 @@ export declare namespace postgresql {
|
|
|
135820
135926
|
}
|
|
135821
135927
|
/**
|
|
135822
135928
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
135823
|
-
* for
|
|
135824
|
-
* lifecycle hooks will fail
|
|
135929
|
+
* for backward compatibility. There is no validation of this field and
|
|
135930
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
135825
135931
|
*/
|
|
135826
135932
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartTcpSocket {
|
|
135827
135933
|
/**
|
|
@@ -135837,8 +135943,8 @@ export declare namespace postgresql {
|
|
|
135837
135943
|
}
|
|
135838
135944
|
/**
|
|
135839
135945
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
135840
|
-
* for
|
|
135841
|
-
* lifecycle hooks will fail
|
|
135946
|
+
* for backward compatibility. There is no validation of this field and
|
|
135947
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
135842
135948
|
*/
|
|
135843
135949
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartTcpSocketPatch {
|
|
135844
135950
|
/**
|
|
@@ -135870,7 +135976,7 @@ export declare namespace postgresql {
|
|
|
135870
135976
|
tcpSocket?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopTcpSocket>;
|
|
135871
135977
|
}
|
|
135872
135978
|
/**
|
|
135873
|
-
* Exec specifies
|
|
135979
|
+
* Exec specifies a command to execute in the container.
|
|
135874
135980
|
*/
|
|
135875
135981
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopExec {
|
|
135876
135982
|
/**
|
|
@@ -135883,7 +135989,7 @@ export declare namespace postgresql {
|
|
|
135883
135989
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
135884
135990
|
}
|
|
135885
135991
|
/**
|
|
135886
|
-
* Exec specifies
|
|
135992
|
+
* Exec specifies a command to execute in the container.
|
|
135887
135993
|
*/
|
|
135888
135994
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopExecPatch {
|
|
135889
135995
|
/**
|
|
@@ -135896,7 +136002,7 @@ export declare namespace postgresql {
|
|
|
135896
136002
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
135897
136003
|
}
|
|
135898
136004
|
/**
|
|
135899
|
-
* HTTPGet specifies
|
|
136005
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
135900
136006
|
*/
|
|
135901
136007
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopHttpGet {
|
|
135902
136008
|
/**
|
|
@@ -135953,7 +136059,7 @@ export declare namespace postgresql {
|
|
|
135953
136059
|
value?: pulumi.Input<string>;
|
|
135954
136060
|
}
|
|
135955
136061
|
/**
|
|
135956
|
-
* HTTPGet specifies
|
|
136062
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
135957
136063
|
*/
|
|
135958
136064
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopHttpGetPatch {
|
|
135959
136065
|
/**
|
|
@@ -135999,7 +136105,7 @@ export declare namespace postgresql {
|
|
|
135999
136105
|
tcpSocket?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopTcpSocketPatch>;
|
|
136000
136106
|
}
|
|
136001
136107
|
/**
|
|
136002
|
-
* Sleep represents
|
|
136108
|
+
* Sleep represents a duration that the container should sleep.
|
|
136003
136109
|
*/
|
|
136004
136110
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopSleep {
|
|
136005
136111
|
/**
|
|
@@ -136008,7 +136114,7 @@ export declare namespace postgresql {
|
|
|
136008
136114
|
seconds?: pulumi.Input<number>;
|
|
136009
136115
|
}
|
|
136010
136116
|
/**
|
|
136011
|
-
* Sleep represents
|
|
136117
|
+
* Sleep represents a duration that the container should sleep.
|
|
136012
136118
|
*/
|
|
136013
136119
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopSleepPatch {
|
|
136014
136120
|
/**
|
|
@@ -136018,8 +136124,8 @@ export declare namespace postgresql {
|
|
|
136018
136124
|
}
|
|
136019
136125
|
/**
|
|
136020
136126
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
136021
|
-
* for
|
|
136022
|
-
* lifecycle hooks will fail
|
|
136127
|
+
* for backward compatibility. There is no validation of this field and
|
|
136128
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
136023
136129
|
*/
|
|
136024
136130
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopTcpSocket {
|
|
136025
136131
|
/**
|
|
@@ -136035,8 +136141,8 @@ export declare namespace postgresql {
|
|
|
136035
136141
|
}
|
|
136036
136142
|
/**
|
|
136037
136143
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
136038
|
-
* for
|
|
136039
|
-
* lifecycle hooks will fail
|
|
136144
|
+
* for backward compatibility. There is no validation of this field and
|
|
136145
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
136040
136146
|
*/
|
|
136041
136147
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopTcpSocketPatch {
|
|
136042
136148
|
/**
|
|
@@ -136099,7 +136205,7 @@ export declare namespace postgresql {
|
|
|
136099
136205
|
timeoutSeconds?: pulumi.Input<number>;
|
|
136100
136206
|
}
|
|
136101
136207
|
/**
|
|
136102
|
-
* Exec specifies
|
|
136208
|
+
* Exec specifies a command to execute in the container.
|
|
136103
136209
|
*/
|
|
136104
136210
|
interface PoolerSpecTemplateSpecEphemeralContainersLivenessProbeExec {
|
|
136105
136211
|
/**
|
|
@@ -136112,7 +136218,7 @@ export declare namespace postgresql {
|
|
|
136112
136218
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
136113
136219
|
}
|
|
136114
136220
|
/**
|
|
136115
|
-
* Exec specifies
|
|
136221
|
+
* Exec specifies a command to execute in the container.
|
|
136116
136222
|
*/
|
|
136117
136223
|
interface PoolerSpecTemplateSpecEphemeralContainersLivenessProbeExecPatch {
|
|
136118
136224
|
/**
|
|
@@ -136125,7 +136231,7 @@ export declare namespace postgresql {
|
|
|
136125
136231
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
136126
136232
|
}
|
|
136127
136233
|
/**
|
|
136128
|
-
* GRPC specifies
|
|
136234
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
136129
136235
|
*/
|
|
136130
136236
|
interface PoolerSpecTemplateSpecEphemeralContainersLivenessProbeGrpc {
|
|
136131
136237
|
/**
|
|
@@ -136141,7 +136247,7 @@ export declare namespace postgresql {
|
|
|
136141
136247
|
service?: pulumi.Input<string>;
|
|
136142
136248
|
}
|
|
136143
136249
|
/**
|
|
136144
|
-
* GRPC specifies
|
|
136250
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
136145
136251
|
*/
|
|
136146
136252
|
interface PoolerSpecTemplateSpecEphemeralContainersLivenessProbeGrpcPatch {
|
|
136147
136253
|
/**
|
|
@@ -136157,7 +136263,7 @@ export declare namespace postgresql {
|
|
|
136157
136263
|
service?: pulumi.Input<string>;
|
|
136158
136264
|
}
|
|
136159
136265
|
/**
|
|
136160
|
-
* HTTPGet specifies
|
|
136266
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
136161
136267
|
*/
|
|
136162
136268
|
interface PoolerSpecTemplateSpecEphemeralContainersLivenessProbeHttpGet {
|
|
136163
136269
|
/**
|
|
@@ -136214,7 +136320,7 @@ export declare namespace postgresql {
|
|
|
136214
136320
|
value?: pulumi.Input<string>;
|
|
136215
136321
|
}
|
|
136216
136322
|
/**
|
|
136217
|
-
* HTTPGet specifies
|
|
136323
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
136218
136324
|
*/
|
|
136219
136325
|
interface PoolerSpecTemplateSpecEphemeralContainersLivenessProbeHttpGetPatch {
|
|
136220
136326
|
/**
|
|
@@ -136291,7 +136397,7 @@ export declare namespace postgresql {
|
|
|
136291
136397
|
timeoutSeconds?: pulumi.Input<number>;
|
|
136292
136398
|
}
|
|
136293
136399
|
/**
|
|
136294
|
-
* TCPSocket specifies
|
|
136400
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
136295
136401
|
*/
|
|
136296
136402
|
interface PoolerSpecTemplateSpecEphemeralContainersLivenessProbeTcpSocket {
|
|
136297
136403
|
/**
|
|
@@ -136306,7 +136412,7 @@ export declare namespace postgresql {
|
|
|
136306
136412
|
port?: pulumi.Input<number | string>;
|
|
136307
136413
|
}
|
|
136308
136414
|
/**
|
|
136309
|
-
* TCPSocket specifies
|
|
136415
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
136310
136416
|
*/
|
|
136311
136417
|
interface PoolerSpecTemplateSpecEphemeralContainersLivenessProbeTcpSocketPatch {
|
|
136312
136418
|
/**
|
|
@@ -136586,7 +136692,7 @@ export declare namespace postgresql {
|
|
|
136586
136692
|
timeoutSeconds?: pulumi.Input<number>;
|
|
136587
136693
|
}
|
|
136588
136694
|
/**
|
|
136589
|
-
* Exec specifies
|
|
136695
|
+
* Exec specifies a command to execute in the container.
|
|
136590
136696
|
*/
|
|
136591
136697
|
interface PoolerSpecTemplateSpecEphemeralContainersReadinessProbeExec {
|
|
136592
136698
|
/**
|
|
@@ -136599,7 +136705,7 @@ export declare namespace postgresql {
|
|
|
136599
136705
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
136600
136706
|
}
|
|
136601
136707
|
/**
|
|
136602
|
-
* Exec specifies
|
|
136708
|
+
* Exec specifies a command to execute in the container.
|
|
136603
136709
|
*/
|
|
136604
136710
|
interface PoolerSpecTemplateSpecEphemeralContainersReadinessProbeExecPatch {
|
|
136605
136711
|
/**
|
|
@@ -136612,7 +136718,7 @@ export declare namespace postgresql {
|
|
|
136612
136718
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
136613
136719
|
}
|
|
136614
136720
|
/**
|
|
136615
|
-
* GRPC specifies
|
|
136721
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
136616
136722
|
*/
|
|
136617
136723
|
interface PoolerSpecTemplateSpecEphemeralContainersReadinessProbeGrpc {
|
|
136618
136724
|
/**
|
|
@@ -136628,7 +136734,7 @@ export declare namespace postgresql {
|
|
|
136628
136734
|
service?: pulumi.Input<string>;
|
|
136629
136735
|
}
|
|
136630
136736
|
/**
|
|
136631
|
-
* GRPC specifies
|
|
136737
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
136632
136738
|
*/
|
|
136633
136739
|
interface PoolerSpecTemplateSpecEphemeralContainersReadinessProbeGrpcPatch {
|
|
136634
136740
|
/**
|
|
@@ -136644,7 +136750,7 @@ export declare namespace postgresql {
|
|
|
136644
136750
|
service?: pulumi.Input<string>;
|
|
136645
136751
|
}
|
|
136646
136752
|
/**
|
|
136647
|
-
* HTTPGet specifies
|
|
136753
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
136648
136754
|
*/
|
|
136649
136755
|
interface PoolerSpecTemplateSpecEphemeralContainersReadinessProbeHttpGet {
|
|
136650
136756
|
/**
|
|
@@ -136701,7 +136807,7 @@ export declare namespace postgresql {
|
|
|
136701
136807
|
value?: pulumi.Input<string>;
|
|
136702
136808
|
}
|
|
136703
136809
|
/**
|
|
136704
|
-
* HTTPGet specifies
|
|
136810
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
136705
136811
|
*/
|
|
136706
136812
|
interface PoolerSpecTemplateSpecEphemeralContainersReadinessProbeHttpGetPatch {
|
|
136707
136813
|
/**
|
|
@@ -136778,7 +136884,7 @@ export declare namespace postgresql {
|
|
|
136778
136884
|
timeoutSeconds?: pulumi.Input<number>;
|
|
136779
136885
|
}
|
|
136780
136886
|
/**
|
|
136781
|
-
* TCPSocket specifies
|
|
136887
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
136782
136888
|
*/
|
|
136783
136889
|
interface PoolerSpecTemplateSpecEphemeralContainersReadinessProbeTcpSocket {
|
|
136784
136890
|
/**
|
|
@@ -136793,7 +136899,7 @@ export declare namespace postgresql {
|
|
|
136793
136899
|
port?: pulumi.Input<number | string>;
|
|
136794
136900
|
}
|
|
136795
136901
|
/**
|
|
136796
|
-
* TCPSocket specifies
|
|
136902
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
136797
136903
|
*/
|
|
136798
136904
|
interface PoolerSpecTemplateSpecEphemeralContainersReadinessProbeTcpSocketPatch {
|
|
136799
136905
|
/**
|
|
@@ -137354,7 +137460,7 @@ export declare namespace postgresql {
|
|
|
137354
137460
|
timeoutSeconds?: pulumi.Input<number>;
|
|
137355
137461
|
}
|
|
137356
137462
|
/**
|
|
137357
|
-
* Exec specifies
|
|
137463
|
+
* Exec specifies a command to execute in the container.
|
|
137358
137464
|
*/
|
|
137359
137465
|
interface PoolerSpecTemplateSpecEphemeralContainersStartupProbeExec {
|
|
137360
137466
|
/**
|
|
@@ -137367,7 +137473,7 @@ export declare namespace postgresql {
|
|
|
137367
137473
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
137368
137474
|
}
|
|
137369
137475
|
/**
|
|
137370
|
-
* Exec specifies
|
|
137476
|
+
* Exec specifies a command to execute in the container.
|
|
137371
137477
|
*/
|
|
137372
137478
|
interface PoolerSpecTemplateSpecEphemeralContainersStartupProbeExecPatch {
|
|
137373
137479
|
/**
|
|
@@ -137380,7 +137486,7 @@ export declare namespace postgresql {
|
|
|
137380
137486
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
137381
137487
|
}
|
|
137382
137488
|
/**
|
|
137383
|
-
* GRPC specifies
|
|
137489
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
137384
137490
|
*/
|
|
137385
137491
|
interface PoolerSpecTemplateSpecEphemeralContainersStartupProbeGrpc {
|
|
137386
137492
|
/**
|
|
@@ -137396,7 +137502,7 @@ export declare namespace postgresql {
|
|
|
137396
137502
|
service?: pulumi.Input<string>;
|
|
137397
137503
|
}
|
|
137398
137504
|
/**
|
|
137399
|
-
* GRPC specifies
|
|
137505
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
137400
137506
|
*/
|
|
137401
137507
|
interface PoolerSpecTemplateSpecEphemeralContainersStartupProbeGrpcPatch {
|
|
137402
137508
|
/**
|
|
@@ -137412,7 +137518,7 @@ export declare namespace postgresql {
|
|
|
137412
137518
|
service?: pulumi.Input<string>;
|
|
137413
137519
|
}
|
|
137414
137520
|
/**
|
|
137415
|
-
* HTTPGet specifies
|
|
137521
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
137416
137522
|
*/
|
|
137417
137523
|
interface PoolerSpecTemplateSpecEphemeralContainersStartupProbeHttpGet {
|
|
137418
137524
|
/**
|
|
@@ -137469,7 +137575,7 @@ export declare namespace postgresql {
|
|
|
137469
137575
|
value?: pulumi.Input<string>;
|
|
137470
137576
|
}
|
|
137471
137577
|
/**
|
|
137472
|
-
* HTTPGet specifies
|
|
137578
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
137473
137579
|
*/
|
|
137474
137580
|
interface PoolerSpecTemplateSpecEphemeralContainersStartupProbeHttpGetPatch {
|
|
137475
137581
|
/**
|
|
@@ -137546,7 +137652,7 @@ export declare namespace postgresql {
|
|
|
137546
137652
|
timeoutSeconds?: pulumi.Input<number>;
|
|
137547
137653
|
}
|
|
137548
137654
|
/**
|
|
137549
|
-
* TCPSocket specifies
|
|
137655
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
137550
137656
|
*/
|
|
137551
137657
|
interface PoolerSpecTemplateSpecEphemeralContainersStartupProbeTcpSocket {
|
|
137552
137658
|
/**
|
|
@@ -137561,7 +137667,7 @@ export declare namespace postgresql {
|
|
|
137561
137667
|
port?: pulumi.Input<number | string>;
|
|
137562
137668
|
}
|
|
137563
137669
|
/**
|
|
137564
|
-
* TCPSocket specifies
|
|
137670
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
137565
137671
|
*/
|
|
137566
137672
|
interface PoolerSpecTemplateSpecEphemeralContainersStartupProbeTcpSocketPatch {
|
|
137567
137673
|
/**
|
|
@@ -138261,7 +138367,7 @@ export declare namespace postgresql {
|
|
|
138261
138367
|
tcpSocket?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecInitContainersLifecyclePostStartTcpSocket>;
|
|
138262
138368
|
}
|
|
138263
138369
|
/**
|
|
138264
|
-
* Exec specifies
|
|
138370
|
+
* Exec specifies a command to execute in the container.
|
|
138265
138371
|
*/
|
|
138266
138372
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePostStartExec {
|
|
138267
138373
|
/**
|
|
@@ -138274,7 +138380,7 @@ export declare namespace postgresql {
|
|
|
138274
138380
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
138275
138381
|
}
|
|
138276
138382
|
/**
|
|
138277
|
-
* Exec specifies
|
|
138383
|
+
* Exec specifies a command to execute in the container.
|
|
138278
138384
|
*/
|
|
138279
138385
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePostStartExecPatch {
|
|
138280
138386
|
/**
|
|
@@ -138287,7 +138393,7 @@ export declare namespace postgresql {
|
|
|
138287
138393
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
138288
138394
|
}
|
|
138289
138395
|
/**
|
|
138290
|
-
* HTTPGet specifies
|
|
138396
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
138291
138397
|
*/
|
|
138292
138398
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePostStartHttpGet {
|
|
138293
138399
|
/**
|
|
@@ -138344,7 +138450,7 @@ export declare namespace postgresql {
|
|
|
138344
138450
|
value?: pulumi.Input<string>;
|
|
138345
138451
|
}
|
|
138346
138452
|
/**
|
|
138347
|
-
* HTTPGet specifies
|
|
138453
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
138348
138454
|
*/
|
|
138349
138455
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePostStartHttpGetPatch {
|
|
138350
138456
|
/**
|
|
@@ -138385,7 +138491,7 @@ export declare namespace postgresql {
|
|
|
138385
138491
|
tcpSocket?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecInitContainersLifecyclePostStartTcpSocketPatch>;
|
|
138386
138492
|
}
|
|
138387
138493
|
/**
|
|
138388
|
-
* Sleep represents
|
|
138494
|
+
* Sleep represents a duration that the container should sleep.
|
|
138389
138495
|
*/
|
|
138390
138496
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePostStartSleep {
|
|
138391
138497
|
/**
|
|
@@ -138394,7 +138500,7 @@ export declare namespace postgresql {
|
|
|
138394
138500
|
seconds?: pulumi.Input<number>;
|
|
138395
138501
|
}
|
|
138396
138502
|
/**
|
|
138397
|
-
* Sleep represents
|
|
138503
|
+
* Sleep represents a duration that the container should sleep.
|
|
138398
138504
|
*/
|
|
138399
138505
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePostStartSleepPatch {
|
|
138400
138506
|
/**
|
|
@@ -138404,8 +138510,8 @@ export declare namespace postgresql {
|
|
|
138404
138510
|
}
|
|
138405
138511
|
/**
|
|
138406
138512
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
138407
|
-
* for
|
|
138408
|
-
* lifecycle hooks will fail
|
|
138513
|
+
* for backward compatibility. There is no validation of this field and
|
|
138514
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
138409
138515
|
*/
|
|
138410
138516
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePostStartTcpSocket {
|
|
138411
138517
|
/**
|
|
@@ -138421,8 +138527,8 @@ export declare namespace postgresql {
|
|
|
138421
138527
|
}
|
|
138422
138528
|
/**
|
|
138423
138529
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
138424
|
-
* for
|
|
138425
|
-
* lifecycle hooks will fail
|
|
138530
|
+
* for backward compatibility. There is no validation of this field and
|
|
138531
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
138426
138532
|
*/
|
|
138427
138533
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePostStartTcpSocketPatch {
|
|
138428
138534
|
/**
|
|
@@ -138454,7 +138560,7 @@ export declare namespace postgresql {
|
|
|
138454
138560
|
tcpSocket?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecInitContainersLifecyclePreStopTcpSocket>;
|
|
138455
138561
|
}
|
|
138456
138562
|
/**
|
|
138457
|
-
* Exec specifies
|
|
138563
|
+
* Exec specifies a command to execute in the container.
|
|
138458
138564
|
*/
|
|
138459
138565
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePreStopExec {
|
|
138460
138566
|
/**
|
|
@@ -138467,7 +138573,7 @@ export declare namespace postgresql {
|
|
|
138467
138573
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
138468
138574
|
}
|
|
138469
138575
|
/**
|
|
138470
|
-
* Exec specifies
|
|
138576
|
+
* Exec specifies a command to execute in the container.
|
|
138471
138577
|
*/
|
|
138472
138578
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePreStopExecPatch {
|
|
138473
138579
|
/**
|
|
@@ -138480,7 +138586,7 @@ export declare namespace postgresql {
|
|
|
138480
138586
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
138481
138587
|
}
|
|
138482
138588
|
/**
|
|
138483
|
-
* HTTPGet specifies
|
|
138589
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
138484
138590
|
*/
|
|
138485
138591
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePreStopHttpGet {
|
|
138486
138592
|
/**
|
|
@@ -138537,7 +138643,7 @@ export declare namespace postgresql {
|
|
|
138537
138643
|
value?: pulumi.Input<string>;
|
|
138538
138644
|
}
|
|
138539
138645
|
/**
|
|
138540
|
-
* HTTPGet specifies
|
|
138646
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
138541
138647
|
*/
|
|
138542
138648
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePreStopHttpGetPatch {
|
|
138543
138649
|
/**
|
|
@@ -138583,7 +138689,7 @@ export declare namespace postgresql {
|
|
|
138583
138689
|
tcpSocket?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecInitContainersLifecyclePreStopTcpSocketPatch>;
|
|
138584
138690
|
}
|
|
138585
138691
|
/**
|
|
138586
|
-
* Sleep represents
|
|
138692
|
+
* Sleep represents a duration that the container should sleep.
|
|
138587
138693
|
*/
|
|
138588
138694
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePreStopSleep {
|
|
138589
138695
|
/**
|
|
@@ -138592,7 +138698,7 @@ export declare namespace postgresql {
|
|
|
138592
138698
|
seconds?: pulumi.Input<number>;
|
|
138593
138699
|
}
|
|
138594
138700
|
/**
|
|
138595
|
-
* Sleep represents
|
|
138701
|
+
* Sleep represents a duration that the container should sleep.
|
|
138596
138702
|
*/
|
|
138597
138703
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePreStopSleepPatch {
|
|
138598
138704
|
/**
|
|
@@ -138602,8 +138708,8 @@ export declare namespace postgresql {
|
|
|
138602
138708
|
}
|
|
138603
138709
|
/**
|
|
138604
138710
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
138605
|
-
* for
|
|
138606
|
-
* lifecycle hooks will fail
|
|
138711
|
+
* for backward compatibility. There is no validation of this field and
|
|
138712
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
138607
138713
|
*/
|
|
138608
138714
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePreStopTcpSocket {
|
|
138609
138715
|
/**
|
|
@@ -138619,8 +138725,8 @@ export declare namespace postgresql {
|
|
|
138619
138725
|
}
|
|
138620
138726
|
/**
|
|
138621
138727
|
* Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
|
|
138622
|
-
* for
|
|
138623
|
-
* lifecycle hooks will fail
|
|
138728
|
+
* for backward compatibility. There is no validation of this field and
|
|
138729
|
+
* lifecycle hooks will fail at runtime when it is specified.
|
|
138624
138730
|
*/
|
|
138625
138731
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePreStopTcpSocketPatch {
|
|
138626
138732
|
/**
|
|
@@ -138686,7 +138792,7 @@ export declare namespace postgresql {
|
|
|
138686
138792
|
timeoutSeconds?: pulumi.Input<number>;
|
|
138687
138793
|
}
|
|
138688
138794
|
/**
|
|
138689
|
-
* Exec specifies
|
|
138795
|
+
* Exec specifies a command to execute in the container.
|
|
138690
138796
|
*/
|
|
138691
138797
|
interface PoolerSpecTemplateSpecInitContainersLivenessProbeExec {
|
|
138692
138798
|
/**
|
|
@@ -138699,7 +138805,7 @@ export declare namespace postgresql {
|
|
|
138699
138805
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
138700
138806
|
}
|
|
138701
138807
|
/**
|
|
138702
|
-
* Exec specifies
|
|
138808
|
+
* Exec specifies a command to execute in the container.
|
|
138703
138809
|
*/
|
|
138704
138810
|
interface PoolerSpecTemplateSpecInitContainersLivenessProbeExecPatch {
|
|
138705
138811
|
/**
|
|
@@ -138712,7 +138818,7 @@ export declare namespace postgresql {
|
|
|
138712
138818
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
138713
138819
|
}
|
|
138714
138820
|
/**
|
|
138715
|
-
* GRPC specifies
|
|
138821
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
138716
138822
|
*/
|
|
138717
138823
|
interface PoolerSpecTemplateSpecInitContainersLivenessProbeGrpc {
|
|
138718
138824
|
/**
|
|
@@ -138728,7 +138834,7 @@ export declare namespace postgresql {
|
|
|
138728
138834
|
service?: pulumi.Input<string>;
|
|
138729
138835
|
}
|
|
138730
138836
|
/**
|
|
138731
|
-
* GRPC specifies
|
|
138837
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
138732
138838
|
*/
|
|
138733
138839
|
interface PoolerSpecTemplateSpecInitContainersLivenessProbeGrpcPatch {
|
|
138734
138840
|
/**
|
|
@@ -138744,7 +138850,7 @@ export declare namespace postgresql {
|
|
|
138744
138850
|
service?: pulumi.Input<string>;
|
|
138745
138851
|
}
|
|
138746
138852
|
/**
|
|
138747
|
-
* HTTPGet specifies
|
|
138853
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
138748
138854
|
*/
|
|
138749
138855
|
interface PoolerSpecTemplateSpecInitContainersLivenessProbeHttpGet {
|
|
138750
138856
|
/**
|
|
@@ -138801,7 +138907,7 @@ export declare namespace postgresql {
|
|
|
138801
138907
|
value?: pulumi.Input<string>;
|
|
138802
138908
|
}
|
|
138803
138909
|
/**
|
|
138804
|
-
* HTTPGet specifies
|
|
138910
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
138805
138911
|
*/
|
|
138806
138912
|
interface PoolerSpecTemplateSpecInitContainersLivenessProbeHttpGetPatch {
|
|
138807
138913
|
/**
|
|
@@ -138881,7 +138987,7 @@ export declare namespace postgresql {
|
|
|
138881
138987
|
timeoutSeconds?: pulumi.Input<number>;
|
|
138882
138988
|
}
|
|
138883
138989
|
/**
|
|
138884
|
-
* TCPSocket specifies
|
|
138990
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
138885
138991
|
*/
|
|
138886
138992
|
interface PoolerSpecTemplateSpecInitContainersLivenessProbeTcpSocket {
|
|
138887
138993
|
/**
|
|
@@ -138896,7 +139002,7 @@ export declare namespace postgresql {
|
|
|
138896
139002
|
port?: pulumi.Input<number | string>;
|
|
138897
139003
|
}
|
|
138898
139004
|
/**
|
|
138899
|
-
* TCPSocket specifies
|
|
139005
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
138900
139006
|
*/
|
|
138901
139007
|
interface PoolerSpecTemplateSpecInitContainersLivenessProbeTcpSocketPatch {
|
|
138902
139008
|
/**
|
|
@@ -139183,7 +139289,7 @@ export declare namespace postgresql {
|
|
|
139183
139289
|
timeoutSeconds?: pulumi.Input<number>;
|
|
139184
139290
|
}
|
|
139185
139291
|
/**
|
|
139186
|
-
* Exec specifies
|
|
139292
|
+
* Exec specifies a command to execute in the container.
|
|
139187
139293
|
*/
|
|
139188
139294
|
interface PoolerSpecTemplateSpecInitContainersReadinessProbeExec {
|
|
139189
139295
|
/**
|
|
@@ -139196,7 +139302,7 @@ export declare namespace postgresql {
|
|
|
139196
139302
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
139197
139303
|
}
|
|
139198
139304
|
/**
|
|
139199
|
-
* Exec specifies
|
|
139305
|
+
* Exec specifies a command to execute in the container.
|
|
139200
139306
|
*/
|
|
139201
139307
|
interface PoolerSpecTemplateSpecInitContainersReadinessProbeExecPatch {
|
|
139202
139308
|
/**
|
|
@@ -139209,7 +139315,7 @@ export declare namespace postgresql {
|
|
|
139209
139315
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
139210
139316
|
}
|
|
139211
139317
|
/**
|
|
139212
|
-
* GRPC specifies
|
|
139318
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
139213
139319
|
*/
|
|
139214
139320
|
interface PoolerSpecTemplateSpecInitContainersReadinessProbeGrpc {
|
|
139215
139321
|
/**
|
|
@@ -139225,7 +139331,7 @@ export declare namespace postgresql {
|
|
|
139225
139331
|
service?: pulumi.Input<string>;
|
|
139226
139332
|
}
|
|
139227
139333
|
/**
|
|
139228
|
-
* GRPC specifies
|
|
139334
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
139229
139335
|
*/
|
|
139230
139336
|
interface PoolerSpecTemplateSpecInitContainersReadinessProbeGrpcPatch {
|
|
139231
139337
|
/**
|
|
@@ -139241,7 +139347,7 @@ export declare namespace postgresql {
|
|
|
139241
139347
|
service?: pulumi.Input<string>;
|
|
139242
139348
|
}
|
|
139243
139349
|
/**
|
|
139244
|
-
* HTTPGet specifies
|
|
139350
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
139245
139351
|
*/
|
|
139246
139352
|
interface PoolerSpecTemplateSpecInitContainersReadinessProbeHttpGet {
|
|
139247
139353
|
/**
|
|
@@ -139298,7 +139404,7 @@ export declare namespace postgresql {
|
|
|
139298
139404
|
value?: pulumi.Input<string>;
|
|
139299
139405
|
}
|
|
139300
139406
|
/**
|
|
139301
|
-
* HTTPGet specifies
|
|
139407
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
139302
139408
|
*/
|
|
139303
139409
|
interface PoolerSpecTemplateSpecInitContainersReadinessProbeHttpGetPatch {
|
|
139304
139410
|
/**
|
|
@@ -139378,7 +139484,7 @@ export declare namespace postgresql {
|
|
|
139378
139484
|
timeoutSeconds?: pulumi.Input<number>;
|
|
139379
139485
|
}
|
|
139380
139486
|
/**
|
|
139381
|
-
* TCPSocket specifies
|
|
139487
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
139382
139488
|
*/
|
|
139383
139489
|
interface PoolerSpecTemplateSpecInitContainersReadinessProbeTcpSocket {
|
|
139384
139490
|
/**
|
|
@@ -139393,7 +139499,7 @@ export declare namespace postgresql {
|
|
|
139393
139499
|
port?: pulumi.Input<number | string>;
|
|
139394
139500
|
}
|
|
139395
139501
|
/**
|
|
139396
|
-
* TCPSocket specifies
|
|
139502
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
139397
139503
|
*/
|
|
139398
139504
|
interface PoolerSpecTemplateSpecInitContainersReadinessProbeTcpSocketPatch {
|
|
139399
139505
|
/**
|
|
@@ -139964,7 +140070,7 @@ export declare namespace postgresql {
|
|
|
139964
140070
|
timeoutSeconds?: pulumi.Input<number>;
|
|
139965
140071
|
}
|
|
139966
140072
|
/**
|
|
139967
|
-
* Exec specifies
|
|
140073
|
+
* Exec specifies a command to execute in the container.
|
|
139968
140074
|
*/
|
|
139969
140075
|
interface PoolerSpecTemplateSpecInitContainersStartupProbeExec {
|
|
139970
140076
|
/**
|
|
@@ -139977,7 +140083,7 @@ export declare namespace postgresql {
|
|
|
139977
140083
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
139978
140084
|
}
|
|
139979
140085
|
/**
|
|
139980
|
-
* Exec specifies
|
|
140086
|
+
* Exec specifies a command to execute in the container.
|
|
139981
140087
|
*/
|
|
139982
140088
|
interface PoolerSpecTemplateSpecInitContainersStartupProbeExecPatch {
|
|
139983
140089
|
/**
|
|
@@ -139990,7 +140096,7 @@ export declare namespace postgresql {
|
|
|
139990
140096
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
139991
140097
|
}
|
|
139992
140098
|
/**
|
|
139993
|
-
* GRPC specifies
|
|
140099
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
139994
140100
|
*/
|
|
139995
140101
|
interface PoolerSpecTemplateSpecInitContainersStartupProbeGrpc {
|
|
139996
140102
|
/**
|
|
@@ -140006,7 +140112,7 @@ export declare namespace postgresql {
|
|
|
140006
140112
|
service?: pulumi.Input<string>;
|
|
140007
140113
|
}
|
|
140008
140114
|
/**
|
|
140009
|
-
* GRPC specifies
|
|
140115
|
+
* GRPC specifies a GRPC HealthCheckRequest.
|
|
140010
140116
|
*/
|
|
140011
140117
|
interface PoolerSpecTemplateSpecInitContainersStartupProbeGrpcPatch {
|
|
140012
140118
|
/**
|
|
@@ -140022,7 +140128,7 @@ export declare namespace postgresql {
|
|
|
140022
140128
|
service?: pulumi.Input<string>;
|
|
140023
140129
|
}
|
|
140024
140130
|
/**
|
|
140025
|
-
* HTTPGet specifies
|
|
140131
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
140026
140132
|
*/
|
|
140027
140133
|
interface PoolerSpecTemplateSpecInitContainersStartupProbeHttpGet {
|
|
140028
140134
|
/**
|
|
@@ -140079,7 +140185,7 @@ export declare namespace postgresql {
|
|
|
140079
140185
|
value?: pulumi.Input<string>;
|
|
140080
140186
|
}
|
|
140081
140187
|
/**
|
|
140082
|
-
* HTTPGet specifies
|
|
140188
|
+
* HTTPGet specifies an HTTP GET request to perform.
|
|
140083
140189
|
*/
|
|
140084
140190
|
interface PoolerSpecTemplateSpecInitContainersStartupProbeHttpGetPatch {
|
|
140085
140191
|
/**
|
|
@@ -140162,7 +140268,7 @@ export declare namespace postgresql {
|
|
|
140162
140268
|
timeoutSeconds?: pulumi.Input<number>;
|
|
140163
140269
|
}
|
|
140164
140270
|
/**
|
|
140165
|
-
* TCPSocket specifies
|
|
140271
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
140166
140272
|
*/
|
|
140167
140273
|
interface PoolerSpecTemplateSpecInitContainersStartupProbeTcpSocket {
|
|
140168
140274
|
/**
|
|
@@ -140177,7 +140283,7 @@ export declare namespace postgresql {
|
|
|
140177
140283
|
port?: pulumi.Input<number | string>;
|
|
140178
140284
|
}
|
|
140179
140285
|
/**
|
|
140180
|
-
* TCPSocket specifies
|
|
140286
|
+
* TCPSocket specifies a connection to a TCP port.
|
|
140181
140287
|
*/
|
|
140182
140288
|
interface PoolerSpecTemplateSpecInitContainersStartupProbeTcpSocketPatch {
|
|
140183
140289
|
/**
|
|
@@ -140596,6 +140702,7 @@ export declare namespace postgresql {
|
|
|
140596
140702
|
* This field is immutable.
|
|
140597
140703
|
*/
|
|
140598
140704
|
resourceClaims?: pulumi.Input<pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecResourceClaimsPatch>[]>;
|
|
140705
|
+
resources?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecResourcesPatch>;
|
|
140599
140706
|
/**
|
|
140600
140707
|
* Restart policy for all containers within the pod.
|
|
140601
140708
|
* One of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted.
|
|
@@ -140783,6 +140890,118 @@ export declare namespace postgresql {
|
|
|
140783
140890
|
*/
|
|
140784
140891
|
resourceClaimTemplateName?: pulumi.Input<string>;
|
|
140785
140892
|
}
|
|
140893
|
+
/**
|
|
140894
|
+
* Resources is the total amount of CPU and Memory resources required by all
|
|
140895
|
+
* containers in the pod. It supports specifying Requests and Limits for
|
|
140896
|
+
* "cpu" and "memory" resource names only. ResourceClaims are not supported.
|
|
140897
|
+
*
|
|
140898
|
+
* This field enables fine-grained control over resource allocation for the
|
|
140899
|
+
* entire pod, allowing resource sharing among containers in a pod.
|
|
140900
|
+
*
|
|
140901
|
+
* This is an alpha field and requires enabling the PodLevelResources feature
|
|
140902
|
+
* gate.
|
|
140903
|
+
*/
|
|
140904
|
+
interface PoolerSpecTemplateSpecResources {
|
|
140905
|
+
/**
|
|
140906
|
+
* Claims lists the names of resources, defined in spec.resourceClaims,
|
|
140907
|
+
* that are used by this container.
|
|
140908
|
+
*
|
|
140909
|
+
* This is an alpha field and requires enabling the
|
|
140910
|
+
* DynamicResourceAllocation feature gate.
|
|
140911
|
+
*
|
|
140912
|
+
* This field is immutable. It can only be set for containers.
|
|
140913
|
+
*/
|
|
140914
|
+
claims?: pulumi.Input<pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecResourcesClaims>[]>;
|
|
140915
|
+
/**
|
|
140916
|
+
* Limits describes the maximum amount of compute resources allowed.
|
|
140917
|
+
* More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
|
|
140918
|
+
*/
|
|
140919
|
+
limits?: pulumi.Input<{
|
|
140920
|
+
[key: string]: pulumi.Input<number | string>;
|
|
140921
|
+
}>;
|
|
140922
|
+
/**
|
|
140923
|
+
* Requests describes the minimum amount of compute resources required.
|
|
140924
|
+
* If Requests is omitted for a container, it defaults to Limits if that is explicitly specified,
|
|
140925
|
+
* otherwise to an implementation-defined value. Requests cannot exceed Limits.
|
|
140926
|
+
* More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
|
|
140927
|
+
*/
|
|
140928
|
+
requests?: pulumi.Input<{
|
|
140929
|
+
[key: string]: pulumi.Input<number | string>;
|
|
140930
|
+
}>;
|
|
140931
|
+
}
|
|
140932
|
+
/**
|
|
140933
|
+
* ResourceClaim references one entry in PodSpec.ResourceClaims.
|
|
140934
|
+
*/
|
|
140935
|
+
interface PoolerSpecTemplateSpecResourcesClaims {
|
|
140936
|
+
/**
|
|
140937
|
+
* Name must match the name of one entry in pod.spec.resourceClaims of
|
|
140938
|
+
* the Pod where this field is used. It makes that resource available
|
|
140939
|
+
* inside a container.
|
|
140940
|
+
*/
|
|
140941
|
+
name?: pulumi.Input<string>;
|
|
140942
|
+
/**
|
|
140943
|
+
* Request is the name chosen for a request in the referenced claim.
|
|
140944
|
+
* If empty, everything from the claim is made available, otherwise
|
|
140945
|
+
* only the result of this request.
|
|
140946
|
+
*/
|
|
140947
|
+
request?: pulumi.Input<string>;
|
|
140948
|
+
}
|
|
140949
|
+
/**
|
|
140950
|
+
* ResourceClaim references one entry in PodSpec.ResourceClaims.
|
|
140951
|
+
*/
|
|
140952
|
+
interface PoolerSpecTemplateSpecResourcesClaimsPatch {
|
|
140953
|
+
/**
|
|
140954
|
+
* Name must match the name of one entry in pod.spec.resourceClaims of
|
|
140955
|
+
* the Pod where this field is used. It makes that resource available
|
|
140956
|
+
* inside a container.
|
|
140957
|
+
*/
|
|
140958
|
+
name?: pulumi.Input<string>;
|
|
140959
|
+
/**
|
|
140960
|
+
* Request is the name chosen for a request in the referenced claim.
|
|
140961
|
+
* If empty, everything from the claim is made available, otherwise
|
|
140962
|
+
* only the result of this request.
|
|
140963
|
+
*/
|
|
140964
|
+
request?: pulumi.Input<string>;
|
|
140965
|
+
}
|
|
140966
|
+
/**
|
|
140967
|
+
* Resources is the total amount of CPU and Memory resources required by all
|
|
140968
|
+
* containers in the pod. It supports specifying Requests and Limits for
|
|
140969
|
+
* "cpu" and "memory" resource names only. ResourceClaims are not supported.
|
|
140970
|
+
*
|
|
140971
|
+
* This field enables fine-grained control over resource allocation for the
|
|
140972
|
+
* entire pod, allowing resource sharing among containers in a pod.
|
|
140973
|
+
*
|
|
140974
|
+
* This is an alpha field and requires enabling the PodLevelResources feature
|
|
140975
|
+
* gate.
|
|
140976
|
+
*/
|
|
140977
|
+
interface PoolerSpecTemplateSpecResourcesPatch {
|
|
140978
|
+
/**
|
|
140979
|
+
* Claims lists the names of resources, defined in spec.resourceClaims,
|
|
140980
|
+
* that are used by this container.
|
|
140981
|
+
*
|
|
140982
|
+
* This is an alpha field and requires enabling the
|
|
140983
|
+
* DynamicResourceAllocation feature gate.
|
|
140984
|
+
*
|
|
140985
|
+
* This field is immutable. It can only be set for containers.
|
|
140986
|
+
*/
|
|
140987
|
+
claims?: pulumi.Input<pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecResourcesClaimsPatch>[]>;
|
|
140988
|
+
/**
|
|
140989
|
+
* Limits describes the maximum amount of compute resources allowed.
|
|
140990
|
+
* More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
|
|
140991
|
+
*/
|
|
140992
|
+
limits?: pulumi.Input<{
|
|
140993
|
+
[key: string]: pulumi.Input<number | string>;
|
|
140994
|
+
}>;
|
|
140995
|
+
/**
|
|
140996
|
+
* Requests describes the minimum amount of compute resources required.
|
|
140997
|
+
* If Requests is omitted for a container, it defaults to Limits if that is explicitly specified,
|
|
140998
|
+
* otherwise to an implementation-defined value. Requests cannot exceed Limits.
|
|
140999
|
+
* More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
|
|
141000
|
+
*/
|
|
141001
|
+
requests?: pulumi.Input<{
|
|
141002
|
+
[key: string]: pulumi.Input<number | string>;
|
|
141003
|
+
}>;
|
|
141004
|
+
}
|
|
140786
141005
|
/**
|
|
140787
141006
|
* PodSchedulingGate is associated to a Pod to guard its scheduling.
|
|
140788
141007
|
*/
|
|
@@ -140859,6 +141078,32 @@ export declare namespace postgresql {
|
|
|
140859
141078
|
* Note that this field cannot be set when spec.os.name is windows.
|
|
140860
141079
|
*/
|
|
140861
141080
|
runAsUser?: pulumi.Input<number>;
|
|
141081
|
+
/**
|
|
141082
|
+
* seLinuxChangePolicy defines how the container's SELinux label is applied to all volumes used by the Pod.
|
|
141083
|
+
* It has no effect on nodes that do not support SELinux or to volumes does not support SELinux.
|
|
141084
|
+
* Valid values are "MountOption" and "Recursive".
|
|
141085
|
+
*
|
|
141086
|
+
* "Recursive" means relabeling of all files on all Pod volumes by the container runtime.
|
|
141087
|
+
* This may be slow for large volumes, but allows mixing privileged and unprivileged Pods sharing the same volume on the same node.
|
|
141088
|
+
*
|
|
141089
|
+
* "MountOption" mounts all eligible Pod volumes with `-o context` mount option.
|
|
141090
|
+
* This requires all Pods that share the same volume to use the same SELinux label.
|
|
141091
|
+
* It is not possible to share the same volume among privileged and unprivileged Pods.
|
|
141092
|
+
* Eligible volumes are in-tree FibreChannel and iSCSI volumes, and all CSI volumes
|
|
141093
|
+
* whose CSI driver announces SELinux support by setting spec.seLinuxMount: true in their
|
|
141094
|
+
* CSIDriver instance. Other volumes are always re-labelled recursively.
|
|
141095
|
+
* "MountOption" value is allowed only when SELinuxMount feature gate is enabled.
|
|
141096
|
+
*
|
|
141097
|
+
* If not specified and SELinuxMount feature gate is enabled, "MountOption" is used.
|
|
141098
|
+
* If not specified and SELinuxMount feature gate is disabled, "MountOption" is used for ReadWriteOncePod volumes
|
|
141099
|
+
* and "Recursive" for all other volumes.
|
|
141100
|
+
*
|
|
141101
|
+
* This field affects only Pods that have SELinux label set, either in PodSecurityContext or in SecurityContext of all containers.
|
|
141102
|
+
*
|
|
141103
|
+
* All Pods that use the same volume should use the same seLinuxChangePolicy, otherwise some pods can get stuck in ContainerCreating state.
|
|
141104
|
+
* Note that this field cannot be set when spec.os.name is windows.
|
|
141105
|
+
*/
|
|
141106
|
+
seLinuxChangePolicy?: pulumi.Input<string>;
|
|
140862
141107
|
seLinuxOptions?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecSecurityContextSeLinuxOptions>;
|
|
140863
141108
|
seccompProfile?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecSecurityContextSeccompProfile>;
|
|
140864
141109
|
/**
|
|
@@ -140987,6 +141232,32 @@ export declare namespace postgresql {
|
|
|
140987
141232
|
* Note that this field cannot be set when spec.os.name is windows.
|
|
140988
141233
|
*/
|
|
140989
141234
|
runAsUser?: pulumi.Input<number>;
|
|
141235
|
+
/**
|
|
141236
|
+
* seLinuxChangePolicy defines how the container's SELinux label is applied to all volumes used by the Pod.
|
|
141237
|
+
* It has no effect on nodes that do not support SELinux or to volumes does not support SELinux.
|
|
141238
|
+
* Valid values are "MountOption" and "Recursive".
|
|
141239
|
+
*
|
|
141240
|
+
* "Recursive" means relabeling of all files on all Pod volumes by the container runtime.
|
|
141241
|
+
* This may be slow for large volumes, but allows mixing privileged and unprivileged Pods sharing the same volume on the same node.
|
|
141242
|
+
*
|
|
141243
|
+
* "MountOption" mounts all eligible Pod volumes with `-o context` mount option.
|
|
141244
|
+
* This requires all Pods that share the same volume to use the same SELinux label.
|
|
141245
|
+
* It is not possible to share the same volume among privileged and unprivileged Pods.
|
|
141246
|
+
* Eligible volumes are in-tree FibreChannel and iSCSI volumes, and all CSI volumes
|
|
141247
|
+
* whose CSI driver announces SELinux support by setting spec.seLinuxMount: true in their
|
|
141248
|
+
* CSIDriver instance. Other volumes are always re-labelled recursively.
|
|
141249
|
+
* "MountOption" value is allowed only when SELinuxMount feature gate is enabled.
|
|
141250
|
+
*
|
|
141251
|
+
* If not specified and SELinuxMount feature gate is enabled, "MountOption" is used.
|
|
141252
|
+
* If not specified and SELinuxMount feature gate is disabled, "MountOption" is used for ReadWriteOncePod volumes
|
|
141253
|
+
* and "Recursive" for all other volumes.
|
|
141254
|
+
*
|
|
141255
|
+
* This field affects only Pods that have SELinux label set, either in PodSecurityContext or in SecurityContext of all containers.
|
|
141256
|
+
*
|
|
141257
|
+
* All Pods that use the same volume should use the same seLinuxChangePolicy, otherwise some pods can get stuck in ContainerCreating state.
|
|
141258
|
+
* Note that this field cannot be set when spec.os.name is windows.
|
|
141259
|
+
*/
|
|
141260
|
+
seLinuxChangePolicy?: pulumi.Input<string>;
|
|
140990
141261
|
seLinuxOptions?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecSecurityContextSeLinuxOptionsPatch>;
|
|
140991
141262
|
seccompProfile?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecSecurityContextSeccompProfilePatch>;
|
|
140992
141263
|
/**
|
|
@@ -141631,6 +141902,8 @@ export declare namespace postgresql {
|
|
|
141631
141902
|
/**
|
|
141632
141903
|
* awsElasticBlockStore represents an AWS Disk resource that is attached to a
|
|
141633
141904
|
* kubelet's host machine and then exposed to the pod.
|
|
141905
|
+
* Deprecated: AWSElasticBlockStore is deprecated. All operations for the in-tree
|
|
141906
|
+
* awsElasticBlockStore type are redirected to the ebs.csi.aws.com CSI driver.
|
|
141634
141907
|
* More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
|
|
141635
141908
|
*/
|
|
141636
141909
|
interface PoolerSpecTemplateSpecVolumesAwsElasticBlockStore {
|
|
@@ -141662,6 +141935,8 @@ export declare namespace postgresql {
|
|
|
141662
141935
|
/**
|
|
141663
141936
|
* awsElasticBlockStore represents an AWS Disk resource that is attached to a
|
|
141664
141937
|
* kubelet's host machine and then exposed to the pod.
|
|
141938
|
+
* Deprecated: AWSElasticBlockStore is deprecated. All operations for the in-tree
|
|
141939
|
+
* awsElasticBlockStore type are redirected to the ebs.csi.aws.com CSI driver.
|
|
141665
141940
|
* More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
|
|
141666
141941
|
*/
|
|
141667
141942
|
interface PoolerSpecTemplateSpecVolumesAwsElasticBlockStorePatch {
|
|
@@ -141692,6 +141967,8 @@ export declare namespace postgresql {
|
|
|
141692
141967
|
}
|
|
141693
141968
|
/**
|
|
141694
141969
|
* azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
|
141970
|
+
* Deprecated: AzureDisk is deprecated. All operations for the in-tree azureDisk type
|
|
141971
|
+
* are redirected to the disk.csi.azure.com CSI driver.
|
|
141695
141972
|
*/
|
|
141696
141973
|
interface PoolerSpecTemplateSpecVolumesAzureDisk {
|
|
141697
141974
|
/**
|
|
@@ -141724,6 +142001,8 @@ export declare namespace postgresql {
|
|
|
141724
142001
|
}
|
|
141725
142002
|
/**
|
|
141726
142003
|
* azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
|
142004
|
+
* Deprecated: AzureDisk is deprecated. All operations for the in-tree azureDisk type
|
|
142005
|
+
* are redirected to the disk.csi.azure.com CSI driver.
|
|
141727
142006
|
*/
|
|
141728
142007
|
interface PoolerSpecTemplateSpecVolumesAzureDiskPatch {
|
|
141729
142008
|
/**
|
|
@@ -141756,6 +142035,8 @@ export declare namespace postgresql {
|
|
|
141756
142035
|
}
|
|
141757
142036
|
/**
|
|
141758
142037
|
* azureFile represents an Azure File Service mount on the host and bind mount to the pod.
|
|
142038
|
+
* Deprecated: AzureFile is deprecated. All operations for the in-tree azureFile type
|
|
142039
|
+
* are redirected to the file.csi.azure.com CSI driver.
|
|
141759
142040
|
*/
|
|
141760
142041
|
interface PoolerSpecTemplateSpecVolumesAzureFile {
|
|
141761
142042
|
/**
|
|
@@ -141774,6 +142055,8 @@ export declare namespace postgresql {
|
|
|
141774
142055
|
}
|
|
141775
142056
|
/**
|
|
141776
142057
|
* azureFile represents an Azure File Service mount on the host and bind mount to the pod.
|
|
142058
|
+
* Deprecated: AzureFile is deprecated. All operations for the in-tree azureFile type
|
|
142059
|
+
* are redirected to the file.csi.azure.com CSI driver.
|
|
141777
142060
|
*/
|
|
141778
142061
|
interface PoolerSpecTemplateSpecVolumesAzureFilePatch {
|
|
141779
142062
|
/**
|
|
@@ -141791,7 +142074,8 @@ export declare namespace postgresql {
|
|
|
141791
142074
|
shareName?: pulumi.Input<string>;
|
|
141792
142075
|
}
|
|
141793
142076
|
/**
|
|
141794
|
-
* cephFS represents a Ceph FS mount on the host that shares a pod's lifetime
|
|
142077
|
+
* cephFS represents a Ceph FS mount on the host that shares a pod's lifetime.
|
|
142078
|
+
* Deprecated: CephFS is deprecated and the in-tree cephfs type is no longer supported.
|
|
141795
142079
|
*/
|
|
141796
142080
|
interface PoolerSpecTemplateSpecVolumesCephfs {
|
|
141797
142081
|
/**
|
|
@@ -141822,7 +142106,8 @@ export declare namespace postgresql {
|
|
|
141822
142106
|
user?: pulumi.Input<string>;
|
|
141823
142107
|
}
|
|
141824
142108
|
/**
|
|
141825
|
-
* cephFS represents a Ceph FS mount on the host that shares a pod's lifetime
|
|
142109
|
+
* cephFS represents a Ceph FS mount on the host that shares a pod's lifetime.
|
|
142110
|
+
* Deprecated: CephFS is deprecated and the in-tree cephfs type is no longer supported.
|
|
141826
142111
|
*/
|
|
141827
142112
|
interface PoolerSpecTemplateSpecVolumesCephfsPatch {
|
|
141828
142113
|
/**
|
|
@@ -141882,6 +142167,8 @@ export declare namespace postgresql {
|
|
|
141882
142167
|
}
|
|
141883
142168
|
/**
|
|
141884
142169
|
* cinder represents a cinder volume attached and mounted on kubelets host machine.
|
|
142170
|
+
* Deprecated: Cinder is deprecated. All operations for the in-tree cinder type
|
|
142171
|
+
* are redirected to the cinder.csi.openstack.org CSI driver.
|
|
141885
142172
|
* More info: https://examples.k8s.io/mysql-cinder-pd/README.md
|
|
141886
142173
|
*/
|
|
141887
142174
|
interface PoolerSpecTemplateSpecVolumesCinder {
|
|
@@ -141907,6 +142194,8 @@ export declare namespace postgresql {
|
|
|
141907
142194
|
}
|
|
141908
142195
|
/**
|
|
141909
142196
|
* cinder represents a cinder volume attached and mounted on kubelets host machine.
|
|
142197
|
+
* Deprecated: Cinder is deprecated. All operations for the in-tree cinder type
|
|
142198
|
+
* are redirected to the cinder.csi.openstack.org CSI driver.
|
|
141910
142199
|
* More info: https://examples.k8s.io/mysql-cinder-pd/README.md
|
|
141911
142200
|
*/
|
|
141912
142201
|
interface PoolerSpecTemplateSpecVolumesCinderPatch {
|
|
@@ -142083,7 +142372,7 @@ export declare namespace postgresql {
|
|
|
142083
142372
|
optional?: pulumi.Input<boolean>;
|
|
142084
142373
|
}
|
|
142085
142374
|
/**
|
|
142086
|
-
* csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers
|
|
142375
|
+
* csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers.
|
|
142087
142376
|
*/
|
|
142088
142377
|
interface PoolerSpecTemplateSpecVolumesCsi {
|
|
142089
142378
|
/**
|
|
@@ -142146,7 +142435,7 @@ export declare namespace postgresql {
|
|
|
142146
142435
|
name?: pulumi.Input<string>;
|
|
142147
142436
|
}
|
|
142148
142437
|
/**
|
|
142149
|
-
* csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers
|
|
142438
|
+
* csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers.
|
|
142150
142439
|
*/
|
|
142151
142440
|
interface PoolerSpecTemplateSpecVolumesCsiPatch {
|
|
142152
142441
|
/**
|
|
@@ -142913,6 +143202,7 @@ export declare namespace postgresql {
|
|
|
142913
143202
|
/**
|
|
142914
143203
|
* flexVolume represents a generic volume resource that is
|
|
142915
143204
|
* provisioned/attached using an exec based plugin.
|
|
143205
|
+
* Deprecated: FlexVolume is deprecated. Consider using a CSIDriver instead.
|
|
142916
143206
|
*/
|
|
142917
143207
|
interface PoolerSpecTemplateSpecVolumesFlexVolume {
|
|
142918
143208
|
/**
|
|
@@ -142941,6 +143231,7 @@ export declare namespace postgresql {
|
|
|
142941
143231
|
/**
|
|
142942
143232
|
* flexVolume represents a generic volume resource that is
|
|
142943
143233
|
* provisioned/attached using an exec based plugin.
|
|
143234
|
+
* Deprecated: FlexVolume is deprecated. Consider using a CSIDriver instead.
|
|
142944
143235
|
*/
|
|
142945
143236
|
interface PoolerSpecTemplateSpecVolumesFlexVolumePatch {
|
|
142946
143237
|
/**
|
|
@@ -143001,7 +143292,8 @@ export declare namespace postgresql {
|
|
|
143001
143292
|
name?: pulumi.Input<string>;
|
|
143002
143293
|
}
|
|
143003
143294
|
/**
|
|
143004
|
-
* flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running
|
|
143295
|
+
* flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running.
|
|
143296
|
+
* Deprecated: Flocker is deprecated and the in-tree flocker type is no longer supported.
|
|
143005
143297
|
*/
|
|
143006
143298
|
interface PoolerSpecTemplateSpecVolumesFlocker {
|
|
143007
143299
|
/**
|
|
@@ -143015,7 +143307,8 @@ export declare namespace postgresql {
|
|
|
143015
143307
|
datasetUUID?: pulumi.Input<string>;
|
|
143016
143308
|
}
|
|
143017
143309
|
/**
|
|
143018
|
-
* flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running
|
|
143310
|
+
* flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running.
|
|
143311
|
+
* Deprecated: Flocker is deprecated and the in-tree flocker type is no longer supported.
|
|
143019
143312
|
*/
|
|
143020
143313
|
interface PoolerSpecTemplateSpecVolumesFlockerPatch {
|
|
143021
143314
|
/**
|
|
@@ -143031,6 +143324,8 @@ export declare namespace postgresql {
|
|
|
143031
143324
|
/**
|
|
143032
143325
|
* gcePersistentDisk represents a GCE Disk resource that is attached to a
|
|
143033
143326
|
* kubelet's host machine and then exposed to the pod.
|
|
143327
|
+
* Deprecated: GCEPersistentDisk is deprecated. All operations for the in-tree
|
|
143328
|
+
* gcePersistentDisk type are redirected to the pd.csi.storage.gke.io CSI driver.
|
|
143034
143329
|
* More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
|
|
143035
143330
|
*/
|
|
143036
143331
|
interface PoolerSpecTemplateSpecVolumesGcePersistentDisk {
|
|
@@ -143064,6 +143359,8 @@ export declare namespace postgresql {
|
|
|
143064
143359
|
/**
|
|
143065
143360
|
* gcePersistentDisk represents a GCE Disk resource that is attached to a
|
|
143066
143361
|
* kubelet's host machine and then exposed to the pod.
|
|
143362
|
+
* Deprecated: GCEPersistentDisk is deprecated. All operations for the in-tree
|
|
143363
|
+
* gcePersistentDisk type are redirected to the pd.csi.storage.gke.io CSI driver.
|
|
143067
143364
|
* More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
|
|
143068
143365
|
*/
|
|
143069
143366
|
interface PoolerSpecTemplateSpecVolumesGcePersistentDiskPatch {
|
|
@@ -143096,7 +143393,7 @@ export declare namespace postgresql {
|
|
|
143096
143393
|
}
|
|
143097
143394
|
/**
|
|
143098
143395
|
* gitRepo represents a git repository at a particular revision.
|
|
143099
|
-
*
|
|
143396
|
+
* Deprecated: GitRepo is deprecated. To provision a container with a git repo, mount an
|
|
143100
143397
|
* EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir
|
|
143101
143398
|
* into the Pod's container.
|
|
143102
143399
|
*/
|
|
@@ -143119,7 +143416,7 @@ export declare namespace postgresql {
|
|
|
143119
143416
|
}
|
|
143120
143417
|
/**
|
|
143121
143418
|
* gitRepo represents a git repository at a particular revision.
|
|
143122
|
-
*
|
|
143419
|
+
* Deprecated: GitRepo is deprecated. To provision a container with a git repo, mount an
|
|
143123
143420
|
* EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir
|
|
143124
143421
|
* into the Pod's container.
|
|
143125
143422
|
*/
|
|
@@ -143142,6 +143439,7 @@ export declare namespace postgresql {
|
|
|
143142
143439
|
}
|
|
143143
143440
|
/**
|
|
143144
143441
|
* glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.
|
|
143442
|
+
* Deprecated: Glusterfs is deprecated and the in-tree glusterfs type is no longer supported.
|
|
143145
143443
|
* More info: https://examples.k8s.io/volumes/glusterfs/README.md
|
|
143146
143444
|
*/
|
|
143147
143445
|
interface PoolerSpecTemplateSpecVolumesGlusterfs {
|
|
@@ -143164,6 +143462,7 @@ export declare namespace postgresql {
|
|
|
143164
143462
|
}
|
|
143165
143463
|
/**
|
|
143166
143464
|
* glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.
|
|
143465
|
+
* Deprecated: Glusterfs is deprecated and the in-tree glusterfs type is no longer supported.
|
|
143167
143466
|
* More info: https://examples.k8s.io/volumes/glusterfs/README.md
|
|
143168
143467
|
*/
|
|
143169
143468
|
interface PoolerSpecTemplateSpecVolumesGlusterfsPatch {
|
|
@@ -143556,7 +143855,8 @@ export declare namespace postgresql {
|
|
|
143556
143855
|
readOnly?: pulumi.Input<boolean>;
|
|
143557
143856
|
}
|
|
143558
143857
|
/**
|
|
143559
|
-
* photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
|
143858
|
+
* photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine.
|
|
143859
|
+
* Deprecated: PhotonPersistentDisk is deprecated and the in-tree photonPersistentDisk type is no longer supported.
|
|
143560
143860
|
*/
|
|
143561
143861
|
interface PoolerSpecTemplateSpecVolumesPhotonPersistentDisk {
|
|
143562
143862
|
/**
|
|
@@ -143571,7 +143871,8 @@ export declare namespace postgresql {
|
|
|
143571
143871
|
pdID?: pulumi.Input<string>;
|
|
143572
143872
|
}
|
|
143573
143873
|
/**
|
|
143574
|
-
* photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
|
143874
|
+
* photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine.
|
|
143875
|
+
* Deprecated: PhotonPersistentDisk is deprecated and the in-tree photonPersistentDisk type is no longer supported.
|
|
143575
143876
|
*/
|
|
143576
143877
|
interface PoolerSpecTemplateSpecVolumesPhotonPersistentDiskPatch {
|
|
143577
143878
|
/**
|
|
@@ -143586,7 +143887,10 @@ export declare namespace postgresql {
|
|
|
143586
143887
|
pdID?: pulumi.Input<string>;
|
|
143587
143888
|
}
|
|
143588
143889
|
/**
|
|
143589
|
-
* portworxVolume represents a portworx volume attached and mounted on kubelets host machine
|
|
143890
|
+
* portworxVolume represents a portworx volume attached and mounted on kubelets host machine.
|
|
143891
|
+
* Deprecated: PortworxVolume is deprecated. All operations for the in-tree portworxVolume type
|
|
143892
|
+
* are redirected to the pxd.portworx.com CSI driver when the CSIMigrationPortworx feature-gate
|
|
143893
|
+
* is on.
|
|
143590
143894
|
*/
|
|
143591
143895
|
interface PoolerSpecTemplateSpecVolumesPortworxVolume {
|
|
143592
143896
|
/**
|
|
@@ -143606,7 +143910,10 @@ export declare namespace postgresql {
|
|
|
143606
143910
|
volumeID?: pulumi.Input<string>;
|
|
143607
143911
|
}
|
|
143608
143912
|
/**
|
|
143609
|
-
* portworxVolume represents a portworx volume attached and mounted on kubelets host machine
|
|
143913
|
+
* portworxVolume represents a portworx volume attached and mounted on kubelets host machine.
|
|
143914
|
+
* Deprecated: PortworxVolume is deprecated. All operations for the in-tree portworxVolume type
|
|
143915
|
+
* are redirected to the pxd.portworx.com CSI driver when the CSIMigrationPortworx feature-gate
|
|
143916
|
+
* is on.
|
|
143610
143917
|
*/
|
|
143611
143918
|
interface PoolerSpecTemplateSpecVolumesPortworxVolumePatch {
|
|
143612
143919
|
/**
|
|
@@ -144232,7 +144539,8 @@ export declare namespace postgresql {
|
|
|
144232
144539
|
path?: pulumi.Input<string>;
|
|
144233
144540
|
}
|
|
144234
144541
|
/**
|
|
144235
|
-
* quobyte represents a Quobyte mount on the host that shares a pod's lifetime
|
|
144542
|
+
* quobyte represents a Quobyte mount on the host that shares a pod's lifetime.
|
|
144543
|
+
* Deprecated: Quobyte is deprecated and the in-tree quobyte type is no longer supported.
|
|
144236
144544
|
*/
|
|
144237
144545
|
interface PoolerSpecTemplateSpecVolumesQuobyte {
|
|
144238
144546
|
/**
|
|
@@ -144267,7 +144575,8 @@ export declare namespace postgresql {
|
|
|
144267
144575
|
volume?: pulumi.Input<string>;
|
|
144268
144576
|
}
|
|
144269
144577
|
/**
|
|
144270
|
-
* quobyte represents a Quobyte mount on the host that shares a pod's lifetime
|
|
144578
|
+
* quobyte represents a Quobyte mount on the host that shares a pod's lifetime.
|
|
144579
|
+
* Deprecated: Quobyte is deprecated and the in-tree quobyte type is no longer supported.
|
|
144271
144580
|
*/
|
|
144272
144581
|
interface PoolerSpecTemplateSpecVolumesQuobytePatch {
|
|
144273
144582
|
/**
|
|
@@ -144303,6 +144612,7 @@ export declare namespace postgresql {
|
|
|
144303
144612
|
}
|
|
144304
144613
|
/**
|
|
144305
144614
|
* rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.
|
|
144615
|
+
* Deprecated: RBD is deprecated and the in-tree rbd type is no longer supported.
|
|
144306
144616
|
* More info: https://examples.k8s.io/volumes/rbd/README.md
|
|
144307
144617
|
*/
|
|
144308
144618
|
interface PoolerSpecTemplateSpecVolumesRbd {
|
|
@@ -144351,6 +144661,7 @@ export declare namespace postgresql {
|
|
|
144351
144661
|
}
|
|
144352
144662
|
/**
|
|
144353
144663
|
* rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.
|
|
144664
|
+
* Deprecated: RBD is deprecated and the in-tree rbd type is no longer supported.
|
|
144354
144665
|
* More info: https://examples.k8s.io/volumes/rbd/README.md
|
|
144355
144666
|
*/
|
|
144356
144667
|
interface PoolerSpecTemplateSpecVolumesRbdPatch {
|
|
@@ -144431,6 +144742,7 @@ export declare namespace postgresql {
|
|
|
144431
144742
|
}
|
|
144432
144743
|
/**
|
|
144433
144744
|
* scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
|
|
144745
|
+
* Deprecated: ScaleIO is deprecated and the in-tree scaleIO type is no longer supported.
|
|
144434
144746
|
*/
|
|
144435
144747
|
interface PoolerSpecTemplateSpecVolumesScaleIO {
|
|
144436
144748
|
/**
|
|
@@ -144479,6 +144791,7 @@ export declare namespace postgresql {
|
|
|
144479
144791
|
}
|
|
144480
144792
|
/**
|
|
144481
144793
|
* scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
|
|
144794
|
+
* Deprecated: ScaleIO is deprecated and the in-tree scaleIO type is no longer supported.
|
|
144482
144795
|
*/
|
|
144483
144796
|
interface PoolerSpecTemplateSpecVolumesScaleIOPatch {
|
|
144484
144797
|
/**
|
|
@@ -144675,6 +144988,7 @@ export declare namespace postgresql {
|
|
|
144675
144988
|
}
|
|
144676
144989
|
/**
|
|
144677
144990
|
* storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.
|
|
144991
|
+
* Deprecated: StorageOS is deprecated and the in-tree storageos type is no longer supported.
|
|
144678
144992
|
*/
|
|
144679
144993
|
interface PoolerSpecTemplateSpecVolumesStorageos {
|
|
144680
144994
|
/**
|
|
@@ -144706,6 +145020,7 @@ export declare namespace postgresql {
|
|
|
144706
145020
|
}
|
|
144707
145021
|
/**
|
|
144708
145022
|
* storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.
|
|
145023
|
+
* Deprecated: StorageOS is deprecated and the in-tree storageos type is no longer supported.
|
|
144709
145024
|
*/
|
|
144710
145025
|
interface PoolerSpecTemplateSpecVolumesStorageosPatch {
|
|
144711
145026
|
/**
|
|
@@ -144764,7 +145079,9 @@ export declare namespace postgresql {
|
|
|
144764
145079
|
name?: pulumi.Input<string>;
|
|
144765
145080
|
}
|
|
144766
145081
|
/**
|
|
144767
|
-
* vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
|
|
145082
|
+
* vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine.
|
|
145083
|
+
* Deprecated: VsphereVolume is deprecated. All operations for the in-tree vsphereVolume type
|
|
145084
|
+
* are redirected to the csi.vsphere.vmware.com CSI driver.
|
|
144768
145085
|
*/
|
|
144769
145086
|
interface PoolerSpecTemplateSpecVolumesVsphereVolume {
|
|
144770
145087
|
/**
|
|
@@ -144787,7 +145104,9 @@ export declare namespace postgresql {
|
|
|
144787
145104
|
volumePath?: pulumi.Input<string>;
|
|
144788
145105
|
}
|
|
144789
145106
|
/**
|
|
144790
|
-
* vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
|
|
145107
|
+
* vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine.
|
|
145108
|
+
* Deprecated: VsphereVolume is deprecated. All operations for the in-tree vsphereVolume type
|
|
145109
|
+
* are redirected to the csi.vsphere.vmware.com CSI driver.
|
|
144791
145110
|
*/
|
|
144792
145111
|
interface PoolerSpecTemplateSpecVolumesVsphereVolumePatch {
|
|
144793
145112
|
/**
|
|
@@ -145325,7 +145644,7 @@ export declare namespace velero {
|
|
|
145325
145644
|
*/
|
|
145326
145645
|
interface BackupRepositoryStatus {
|
|
145327
145646
|
/**
|
|
145328
|
-
* LastMaintenanceTime is the last time maintenance
|
|
145647
|
+
* LastMaintenanceTime is the last time repo maintenance succeeded.
|
|
145329
145648
|
*/
|
|
145330
145649
|
lastMaintenanceTime?: pulumi.Input<string>;
|
|
145331
145650
|
/**
|
|
@@ -145336,6 +145655,28 @@ export declare namespace velero {
|
|
|
145336
145655
|
* Phase is the current state of the BackupRepository.
|
|
145337
145656
|
*/
|
|
145338
145657
|
phase?: pulumi.Input<string>;
|
|
145658
|
+
/**
|
|
145659
|
+
* RecentMaintenance is status of the recent repo maintenance.
|
|
145660
|
+
*/
|
|
145661
|
+
recentMaintenance?: pulumi.Input<pulumi.Input<inputs.velero.v1.BackupRepositoryStatusRecentMaintenance>[]>;
|
|
145662
|
+
}
|
|
145663
|
+
interface BackupRepositoryStatusRecentMaintenance {
|
|
145664
|
+
/**
|
|
145665
|
+
* CompleteTimestamp is the completion time of the repo maintenance.
|
|
145666
|
+
*/
|
|
145667
|
+
completeTimestamp?: pulumi.Input<string>;
|
|
145668
|
+
/**
|
|
145669
|
+
* Message is a message about the current status of the repo maintenance.
|
|
145670
|
+
*/
|
|
145671
|
+
message?: pulumi.Input<string>;
|
|
145672
|
+
/**
|
|
145673
|
+
* Result is the result of the repo maintenance.
|
|
145674
|
+
*/
|
|
145675
|
+
result?: pulumi.Input<string>;
|
|
145676
|
+
/**
|
|
145677
|
+
* StartTimestamp is the start time of the repo maintenance.
|
|
145678
|
+
*/
|
|
145679
|
+
startTimestamp?: pulumi.Input<string>;
|
|
145339
145680
|
}
|
|
145340
145681
|
/**
|
|
145341
145682
|
* BackupSpec defines the specification for a Velero backup.
|