You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: config/crd/bases/postgres-operator.crunchydata.com_pgadmins.yaml
+12-5Lines changed: 12 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2620,7 +2620,9 @@ spec:
2620
2620
type: array
2621
2621
x-kubernetes-list-type: set
2622
2622
image:
2623
-
description: Details for adding an image volume
2623
+
description: |-
2624
+
Reference to an image or OCI artifact.
2625
+
More info: https://kubernetes.io/docs/concepts/storage/volumes#image
2624
2626
properties:
2625
2627
pullPolicy:
2626
2628
description: |-
@@ -2629,6 +2631,11 @@ spec:
2629
2631
Never: the kubelet never pulls the reference and only uses a local image or artifact. Container creation will fail if the reference isn't present.
2630
2632
IfNotPresent: the kubelet pulls if the reference isn't already present on disk. Container creation will fail if the reference isn't present and the pull fails.
2631
2633
Defaults to Always if :latest tag is specified, or IfNotPresent otherwise.
2634
+
enum:
2635
+
- Always
2636
+
- Never
2637
+
- IfNotPresent
2638
+
maxLength: 12
2632
2639
type: string
2633
2640
reference:
2634
2641
description: |-
@@ -2638,7 +2645,10 @@ spec:
2638
2645
More info: https://kubernetes.io/docs/concepts/containers/images
2639
2646
This field is optional to allow higher level config management to default or override
2640
2647
container images in workload controllers like Deployments and StatefulSets.
2648
+
minLength: 1
2641
2649
type: string
2650
+
required:
2651
+
- reference
2642
2652
type: object
2643
2653
name:
2644
2654
description: |-
@@ -2659,11 +2669,8 @@ spec:
2659
2669
x-kubernetes-validations:
2660
2670
- message: you must set only one of image or claimName
2661
2671
rule: has(self.claimName) != has(self.image)
2662
-
- message: readOnly cannot be set false when using an ImageVolumeSource
0 commit comments