@@ -285,6 +285,7 @@ func newSrcClusterWithPlugin(namespace string) *cloudnativepgv1.Cluster {
285
285
Spec : cloudnativepgv1.ClusterSpec {
286
286
Instances : 2 ,
287
287
ImagePullPolicy : corev1 .PullAlways ,
288
+ ImageName : "postgres:17-bookworm" ,
288
289
Plugins : []cloudnativepgv1.PluginConfiguration {
289
290
{
290
291
Name : "barman-cloud.cloudnative-pg.io" ,
@@ -298,6 +299,8 @@ func newSrcClusterWithPlugin(namespace string) *cloudnativepgv1.Cluster {
298
299
"log_min_messages" : "DEBUG4" ,
299
300
},
300
301
},
302
+ PostgresUID : 999 ,
303
+ PostgresGID : 999 ,
301
304
StorageConfiguration : cloudnativepgv1.StorageConfiguration {
302
305
Size : size ,
303
306
},
@@ -320,6 +323,7 @@ func newDstClusterWithPlugin(namespace string) *cloudnativepgv1.Cluster {
320
323
Spec : cloudnativepgv1.ClusterSpec {
321
324
Instances : 2 ,
322
325
ImagePullPolicy : corev1 .PullAlways ,
326
+ ImageName : "postgres:17-bookworm" ,
323
327
Bootstrap : & cloudnativepgv1.BootstrapConfiguration {
324
328
Recovery : & cloudnativepgv1.BootstrapRecovery {
325
329
Source : "source" ,
@@ -338,6 +342,8 @@ func newDstClusterWithPlugin(namespace string) *cloudnativepgv1.Cluster {
338
342
"log_min_messages" : "DEBUG4" ,
339
343
},
340
344
},
345
+ PostgresUID : 999 ,
346
+ PostgresGID : 999 ,
341
347
ExternalClusters : []cloudnativepgv1.ExternalCluster {
342
348
{
343
349
Name : "source" ,
@@ -372,6 +378,7 @@ func newSrcClusterInTreeS3(namespace string) *cloudnativepgv1.Cluster {
372
378
Spec : cloudnativepgv1.ClusterSpec {
373
379
Instances : 2 ,
374
380
ImagePullPolicy : corev1 .PullAlways ,
381
+ ImageName : "ghcr.io/cloudnative-pg/postgresql:17-bookworm" ,
375
382
StorageConfiguration : cloudnativepgv1.StorageConfiguration {
376
383
Size : size ,
377
384
},
@@ -421,6 +428,7 @@ func newDstClusterInTreeS3(namespace string) *cloudnativepgv1.Cluster {
421
428
Spec : cloudnativepgv1.ClusterSpec {
422
429
Instances : 2 ,
423
430
ImagePullPolicy : corev1 .PullAlways ,
431
+ ImageName : "ghcr.io/cloudnative-pg/postgresql:17-bookworm" ,
424
432
Bootstrap : & cloudnativepgv1.BootstrapConfiguration {
425
433
Recovery : & cloudnativepgv1.BootstrapRecovery {
426
434
Source : "source" ,
@@ -486,6 +494,7 @@ func newSrcClusterInTreeAzure(namespace string) *cloudnativepgv1.Cluster {
486
494
Spec : cloudnativepgv1.ClusterSpec {
487
495
Instances : 2 ,
488
496
ImagePullPolicy : corev1 .PullAlways ,
497
+ ImageName : "ghcr.io/cloudnative-pg/postgresql:17-bookworm" ,
489
498
StorageConfiguration : cloudnativepgv1.StorageConfiguration {
490
499
Size : size ,
491
500
},
@@ -523,6 +532,7 @@ func newDstClusterInTreeAzure(namespace string) *cloudnativepgv1.Cluster {
523
532
Spec : cloudnativepgv1.ClusterSpec {
524
533
Instances : 2 ,
525
534
ImagePullPolicy : corev1 .PullAlways ,
535
+ ImageName : "ghcr.io/cloudnative-pg/postgresql:17-bookworm" ,
526
536
Bootstrap : & cloudnativepgv1.BootstrapConfiguration {
527
537
Recovery : & cloudnativepgv1.BootstrapRecovery {
528
538
Source : "source" ,
@@ -576,6 +586,7 @@ func newSrcClusterInTreeGCS(namespace string) *cloudnativepgv1.Cluster {
576
586
Spec : cloudnativepgv1.ClusterSpec {
577
587
Instances : 2 ,
578
588
ImagePullPolicy : corev1 .PullAlways ,
589
+ ImageName : "ghcr.io/cloudnative-pg/postgresql:17-bookworm" ,
579
590
StorageConfiguration : cloudnativepgv1.StorageConfiguration {
580
591
Size : size ,
581
592
},
@@ -619,6 +630,7 @@ func newDstClusterInTreeGCS(namespace string) *cloudnativepgv1.Cluster {
619
630
Spec : cloudnativepgv1.ClusterSpec {
620
631
Instances : 2 ,
621
632
ImagePullPolicy : corev1 .PullAlways ,
633
+ ImageName : "ghcr.io/cloudnative-pg/postgresql:17-bookworm" ,
622
634
Bootstrap : & cloudnativepgv1.BootstrapConfiguration {
623
635
Recovery : & cloudnativepgv1.BootstrapRecovery {
624
636
Source : "source" ,
0 commit comments